/* ========== JOGAL ACADEMY - PLAYFUL CSS ========== */
:root {
  --primary: #FF6B35;
  --secondary: #2D9CDB;
  --accent: #4ECDC4;
  --yellow: #FFE66D;
  --purple: #C8B6FF;
  --pink: #FF8FAB;
  --green: #7EC8A4;
  --dark: #1A1A2E;
  --text: #3D3D5C;
  --text-light: #6B7280;
  --white: #ffffff;
  --light-bg: #F7F8FF;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --transition: all .3s cubic-bezier(.34,1.56,.64,1);
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONFETTI BG ===== */
.confetti-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.dot { position: absolute; border-radius: 50%; opacity: .12; animation: floatDot 8s ease-in-out infinite; }
.dot-1  { width:80px;height:80px;background:var(--primary);top:10%;left:5%;animation-delay:0s; }
.dot-2  { width:50px;height:50px;background:var(--secondary);top:20%;right:8%;animation-delay:1s; }
.dot-3  { width:120px;height:120px;background:var(--accent);bottom:30%;left:2%;animation-delay:2s; }
.dot-4  { width:60px;height:60px;background:var(--yellow);top:60%;right:3%;animation-delay:3s; }
.dot-5  { width:40px;height:40px;background:var(--purple);top:40%;left:90%;animation-delay:1.5s; }
.dot-6  { width:90px;height:90px;background:var(--pink);bottom:10%;right:10%;animation-delay:4s; }
.dot-7  { width:35px;height:35px;background:var(--green);top:80%;left:20%;animation-delay:2.5s; }
.dot-8  { width:70px;height:70px;background:var(--primary);top:5%;left:50%;animation-delay:.5s; }
.dot-9  { width:45px;height:45px;background:var(--yellow);bottom:50%;left:15%;animation-delay:3.5s; }
.dot-10 { width:55px;height:55px;background:var(--secondary);top:70%;right:20%;animation-delay:5s; }
.dot-11 { width:100px;height:100px;background:var(--accent);top:35%;left:45%;animation-delay:6s; }
.dot-12 { width:30px;height:30px;background:var(--pink);bottom:20%;left:60%;animation-delay:7s; }
@keyframes floatDot { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-30px) scale(1.1);} }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text-wrap { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 2em; }
.logo-text { font-family: var(--font-display); font-size: 1.5em; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-menu { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-menu a { padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: .95em; color: var(--text); transition: var(--transition); }
.nav-menu a:hover, .nav-menu a.active { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-weight: 700; font-size: .9em; color: var(--secondary); white-space: nowrap; }
.btn-demo { background: var(--primary); color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 800; font-size: .9em; transition: var(--transition); box-shadow: 0 4px 16px rgba(255,107,53,.35); white-space: nowrap; }
.btn-demo:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 24px rgba(255,107,53,.5); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 10px; transition: .3s; display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
  background: var(--purple);
  background: linear-gradient(135deg, var(--purple) 0%, #E8D5FF 40%, #C8F0FF 100%);
}
.hero::before {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content {}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: .9em; color: var(--primary); box-shadow: var(--shadow); margin-bottom: 24px; animation: bounceIn .6s ease; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5em, 5vw, 4em); line-height: 1.1; color: var(--dark); margin-bottom: 16px; }
.hero-title .big-word { font-size: 1.5em; background: linear-gradient(135deg, var(--primary), #FF4500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.hero-sub { font-size: 1.15em; color: var(--text); margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: flex; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-display); font-size: 2em; color: var(--dark); display: block; }
.hero-stat .lbl { font-size: .8em; color: var(--text-light); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 1em; transition: var(--transition); box-shadow: 0 6px 20px rgba(255,107,53,.4); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 30px rgba(255,107,53,.5); }
.btn-outline { background: transparent; color: var(--dark); padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 1em; border: 3px solid var(--dark); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-4px); }
.btn-secondary { background: var(--secondary); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 1em; transition: var(--transition); box-shadow: 0 6px 20px rgba(45,156,219,.4); }
.btn-secondary:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(45,156,219,.5); }
.btn-outline-sm { display: inline-block; border: 2px solid currentColor; padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: .85em; transition: var(--transition); }

.hero-image { position: relative; }
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.hero-float-card { position: absolute; background: var(--white); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 4s ease-in-out infinite; }
.hero-float-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 40px; right: -20px; animation-delay: 1s; }
.hero-float-card .card-icon { font-size: 2em; }
.hero-float-card .card-text { font-weight: 800; font-size: .9em; color: var(--dark); }
.hero-float-card .card-sub { font-size: .75em; color: var(--text-light); }
.hero-emoji-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 8em; opacity: .15; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); font-size: 6em; }

@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@keyframes bounceIn { 0%{opacity:0;transform:scale(.6);} 80%{transform:scale(1.05);} 100%{opacity:1;transform:scale(1);} }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--yellow)); color: var(--white); padding: 6px 20px; border-radius: 50px; font-weight: 800; font-size: .85em; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(2em, 4vw, 3em); color: var(--dark); margin-bottom: 16px; }
.section-sub { font-size: 1.05em; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 20px 24px; text-align: center; box-shadow: var(--shadow); }
.about-img-badge .big { font-family: var(--font-display); font-size: 2.5em; display: block; }
.about-img-badge .sm { font-size: .8em; font-weight: 700; }
.about-big-word { font-family: var(--font-display); font-size: clamp(3em,6vw,5em); color: var(--dark); opacity: .08; line-height: 1; margin-bottom: -20px; display: block; }
.about-title { font-family: var(--font-display); font-size: clamp(1.8em,3vw,2.5em); color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.about-text { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }
.highlight-chip { display: flex; align-items: center; gap: 8px; background: var(--light-bg); padding: 10px 18px; border-radius: 50px; font-weight: 700; font-size: .9em; color: var(--text); }

/* ===== PROGRAMS ===== */
.programs-section { background: var(--light-bg); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.program-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
  border: 3px solid transparent; border-bottom: 6px solid;
}
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: currentColor; opacity: .2; }
.program-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.program-icon { font-size: 3em; margin-bottom: 16px; display: block; }
.program-title { font-family: var(--font-display); font-size: 1.4em; color: var(--dark); margin-bottom: 10px; }
.program-desc { font-size: .9em; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.program-grade { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: .8em; padding: 5px 14px; border-radius: 50px; }
.program-features { margin-top: 16px; }
.program-features li { font-size: .85em; color: var(--text-light); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.program-features li::before { content: '✓'; font-weight: 800; color: var(--accent); }

/* ===== SKILLS SECTION ===== */
.skills-section { background: #EEF9F8; }
.skills-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.skills-icons { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.skill-chip {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow);
}
.skill-chip:hover { transform: translateY(-6px) rotate(2deg); }
.skill-chip .ic { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7em; margin: 0 auto 10px; }
.skill-chip .sk-name { font-weight: 800; font-size: .9em; color: var(--dark); }

/* ===== STATS ===== */
.stats-section { background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%); padding: 60px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 3em; display: block; background: linear-gradient(135deg, var(--yellow), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .9em; opacity: .7; font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 22px; border-radius: 50px; font-weight: 700; font-size: .9em; cursor: pointer; border: 2px solid var(--primary); color: var(--primary); background: var(--white); transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); transform: scale(1.05); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(26,26,46,.8)); opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-weight: 700; font-size: .9em; }
.gallery-item.gallery-large { grid-column: span 2; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--light-bg); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); padding: 10px 24px; border-radius: 50px; box-shadow: var(--shadow); margin-bottom: 36px; font-weight: 700; }
.google-badge img { height: 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
  transition: var(--transition); border-top: 4px solid var(--yellow);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1.2em; flex-shrink: 0; overflow: hidden; }
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 800; color: var(--dark); }
.reviewer-source { font-size: .8em; color: var(--text-light); }
.review-stars { color: #FFC107; font-size: 1.1em; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text-light); font-size: .95em; line-height: 1.7; font-style: italic; }
.review-text::before { content: '"'; font-size: 2em; color: var(--primary); opacity: .3; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }

/* ===== PHOTO REVIEWS ===== */
.photo-reviews-section { background: #FFF5F7; }
.photo-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.photo-review-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.photo-review-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.photo-review-img { aspect-ratio: 1; overflow: hidden; }
.photo-review-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-review-card:hover .photo-review-img img { transform: scale(1.05); }
.photo-review-info { padding: 16px; }
.photo-review-name { font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.photo-review-program { font-size: .8em; color: var(--primary); font-weight: 700; }
.photo-review-caption { font-size: .85em; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8em; color: var(--dark); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 1.4em; flex-shrink: 0; }
.contact-item h4 { font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: .95em; }
.contact-form { background: var(--light-bg); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.6em; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 700; display: block; margin-bottom: 8px; color: var(--dark); font-size: .9em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 18px; border: 2px solid #E5E7EB; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95em; color: var(--text);
  background: var(--white); transition: border-color .3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 700; font-size: .9em; }
.alert-success { background: #E8F5E9; color: #2E7D32; border: 2px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: #C62828; border: 2px solid #FFCDD2; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #FF4500 100%);
  text-align: center; padding: 80px 24px; position: relative; overflow: hidden;
}
.cta-section::before { content: '🎓'; position: absolute; font-size: 12em; top: -20px; left: -30px; opacity: .08; }
.cta-section::after { content: '⭐'; position: absolute; font-size: 10em; bottom: -20px; right: -20px; opacity: .08; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2em,4vw,3em); color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1em; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--primary); padding: 14px 36px; border-radius: 50px; font-weight: 800; font-size: 1em; transition: var(--transition); box-shadow: 0 6px 20px rgba(0,0,0,.2); display: inline-block; }
.btn-white:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 30px rgba(0,0,0,.3); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 60px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.8em; color: var(--white); display: flex; align-items: center; gap: 8px; }
.footer-about p { margin-top: 16px; font-size: .9em; line-height: 1.8; opacity: .7; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2em; transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1em; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9em; opacity: .7; transition: .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { opacity: 1; color: var(--yellow); padding-left: 6px; }
.footer-contact p { font-size: .9em; opacity: .7; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.footer-contact a { color: inherit; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px; text-align: center; font-size: .85em; opacity: .5; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 24px 14px 18px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  font-weight: 800; font-size: .9em;
  transition: var(--transition);
}
.whatsapp-float span:first-child { font-size: 1.4em; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 32px rgba(37,211,102,.5); }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: var(--white); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2em; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 1.2em; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--purple), #E8D5FF); padding: 120px 24px 60px; text-align: center; margin-top: 72px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5em,5vw,4em); color: var(--dark); margin-bottom: 16px; }
.page-hero p { font-size: 1.1em; color: var(--text-light); max-width: 500px; margin: 0 auto; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; font-size: .9em; color: var(--text-light); }
.breadcrumbs a { color: var(--primary); font-weight: 700; }
.breadcrumbs span { opacity: .5; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-container { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 4px; box-shadow: var(--shadow-lg); border-top: 2px solid var(--light-bg); }
  .nav-menu.open { display: flex; }
  .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .about-grid, .skills-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-img-badge { position: static; margin-top: 16px; display: inline-block; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .wa-text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
}
