/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
  --gold: #e0b20d;
  --gold-light: #E2C97E;
  --gold-dark: #A88A32;
  --navy: #0A1628;
  --navy-light: #11213D;
  --navy-mid: #162B50;
  --white: #FFFFFF;
  --gray-100: #F4F4F6;
  --gray-200: #E2E3E8;
  --gray-400: #9498A4;
  --gray-600: #5A5E6B;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --max-w: 1200px;
  --section-py: clamp(60px, 8vw, 120px);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* ========================================
   SECTION TITLES
======================================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-400);
  max-width: 700px;
  line-height: 1.7;
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
  border-radius: 2px;
}

.text-gold {
  color: var(--gold);
}

/* ========================================
   HEADER / HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url('../img/bg-hero.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 22, 40, 0.93) 0%, rgba(10, 22, 40, 0.82) 45%, rgba(10, 22, 40, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 70px;
  width: auto;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 70%;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 70%;
}

.hero-text h1 .highlight {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--gray-400);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 70%;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-radius: calc(var(--radius) + 8px);
  pointer-events: none;
}

/* ========================================
   CERTIFICATION SECTION
======================================== */
.certification {
  padding: var(--section-py) 0;
  background: #ffffff;
  position: relative;
}

.certification::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.cert-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #11213D;
}

.cert-text p {
  color: #11213D;
  margin-bottom: 16px;
  line-height: 1.8;
}

.cert-partner {
  margin-top: 32px;
  padding: 28px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
}

.cert-partner strong {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cert-partner p {
  font-size: 0.92rem;
  color: #11213D;
}

.cert-partner img {
  max-height: 60px;
  margin-top: 16px;
}

.cert-image img {
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ========================================
   DIFERENCIAIS
======================================== */
.diferenciais {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 60px;
}

.diferenciais-header .gold-line {
  margin: 0 auto 20px;
}

.diferenciais-header .section-subtitle {
  margin: 0 auto;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diff-card {
  padding: 36px 28px;
  background: linear-gradient(160deg, var(--navy-light), rgba(22, 43, 80, 0.4));
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.diff-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.diff-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.diff-card p {
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================================
   PROGRAMA / CURRICULUM
======================================== */
.programa {
  padding: var(--section-py) 0;
  background: var(--navy-light);
}

.programa-header {
  text-align: center;
  margin-bottom: 40px;
}

.programa-header .gold-line {
  margin: 0 auto 20px;
}

.programa-header .section-subtitle {
  margin: 0 auto;
}

.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--gray-400);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-image img {
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.tab-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tab-info ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--gray-400);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tab-info ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 14px;
}

/* ========================================
   MESTRADO
======================================== */
.mestrado {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
}

.mestrado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mestrado-image img {
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.mestrado-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}

.mestrado-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.mestrado-text p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mestrado-text em {
  color: var(--gold-light);
  font-style: italic;
}

/* ========================================
   INDICADA PARA
======================================== */
.indicada {
  padding: var(--section-py) 0;
  background: var(--navy-light);
}

.indicada-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.indicada-list h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.indicada-list ul li {
  padding: 14px 0 14px 32px;
  position: relative;
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.6;
}

.indicada-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--gold);
}

.indicada-list ul li strong {
  color: var(--gold-light);
}

.indicada-image img {
  border-radius: var(--radius);
}

/* ========================================
   FUNDADOR
======================================== */
.fundador {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
}

.fundador::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.fundador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fundador-text .overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.fundador-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 28px;
}

.fundador-text ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

.fundador-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.fundador-image img {
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* ========================================
   PROFESSORES
======================================== */
.professores {
  padding: var(--section-py) 0;
  background: var(--navy-light);
}

.professores-header {
  text-align: center;
  margin-bottom: 60px;
}

.professores-header .gold-line {
  margin: 0 auto 20px;
}

.professores-header .section-subtitle {
  margin: 0 auto;
}

.prof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prof-card {
  text-align: center;
  padding: 24px 16px;
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}

.prof-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.prof-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.prof-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.prof-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.depoimentos {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 48px;
}

.depoimentos-header .gold-line {
  margin: 0 auto 20px;
}

.depoimentos-header .section-subtitle {
  margin: 0 auto;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* aspect-ratio 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.depoimento-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.depoimento-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* ========================================
   CENTRO DE EVENTOS / GALERIA
======================================== */
.centro {
  padding: var(--section-py) 0;
  background: var(--navy-light);
}

.centro-header {
  text-align: center;
  margin-bottom: 48px;
}

.centro-header .gold-line {
  margin: 0 auto 20px;
}

.centro-header .section-subtitle {
  margin: 12px auto 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galeria-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.galeria-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ========================================
   FAQ
======================================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header .gold-line {
  margin: 0 auto 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 40px 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   VALOR / CTA SECTION
======================================== */
#valor {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy));
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--gray-400);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 48px 0 32px;
  background: #060E1A;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  margin: 0 auto 24px;
}

.footer-social-handles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-handle-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.footer-handle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.footer-handle-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-handle-item:hover {
  color: var(--gold);
}

.footer p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2.2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  60%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {

  .hero-grid,
  .cert-grid,
  .mestrado-grid,
  .indicada-grid,
  .fundador-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tab-content.active {
    grid-template-columns: 1fr;
  }

  .prof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-cta.btn {
    display: none !important;
  }

  .btn-gold {
    font-size: 0.72rem;
    padding: 14px 22px;
    white-space: nowrap;
  }

  .navbar .container {
    justify-content: center;
  }

  /* Centralização global mobile */
  .container {
    text-align: center;
  }

  .hero-buttons,
  .btn-wrap,
  [style*="text-align:center"] {
    display: flex;
    justify-content: center;
  }

  .btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero */
  .hero-grid {
    margin: 0 auto;
  }

  .hero-text h1,
  .hero-text p,
  .hero-text .lead {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .badge-item {
    justify-content: center;
  }

  /* Grids em coluna única */
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .prof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  /* Textos internos alinhados ao centro */
  .cert-text,
  .mestrado-text,
  .indicada-list,
  .fundador-text {
    text-align: center;
  }

  .cert-partner {
    text-align: center;
  }

  .cert-partner img,
  .fundador-image img,
  .mestrado-image img,
  .indicada-image img {
    margin: 0 auto;
  }

  .indicada-list ul li,
  .fundador-text ul li {
    text-align: left;
  }

  /* Tabs */
  .tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .tab-info {
    text-align: left;
  }

  .fundador-grid {
    direction: ltr;
  }

  /* Footer */
  .footer-handle-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .prof-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   MODAL LEAD
======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--navy-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.modal-subtitle {
  color: var(--navy-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
  opacity: 0.7;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: #f4f6f9;
  border: 1px solid #d0d5e0;
  border-radius: 8px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input::placeholder {
  color: #9498A4;
}

.form-group input:focus {
  border-color: var(--navy-mid);
}

.form-group.has-error input {
  border-color: #e05555;
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 6px;
}

.form-group.has-error .field-error {
  display: block;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.modal-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--navy-light);
  opacity: 0.5;
  margin-top: 16px;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 28px 20px;
  }

  .modal-title {
    font-size: 1.35rem;
  }
}