/* ===============================
   FONTS LOCAIS — PERFORMANCE
   =============================== */

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/montserrat-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --purple-dark: #2D1B4E;
    --purple-medium: #4A2F6E;
    --purple-light: #6B4E9B;
    --gold: #D4AF37;
    --gold-light: #E8C766;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --ice: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray-medium: #ADB5BD;
    --gray-dark: #495057;
    
    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.1);
    --shadow-md: 0 4px 16px rgba(45, 27, 78, 0.15);
    --shadow-lg: 0 8px 32px rgba(45, 27, 78, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}


/* ========================================
   HERO
   ======================================== */
.hero {
    margin-top: 0;
}

.hero-simple {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.5);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: left;
    padding: var(--spacing-lg) var(--spacing-md);
    padding-left: calc(var(--spacing-md) + 2rem);
    animation: heroFadeIn 1s ease-out;
    margin-right: auto;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--purple-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content h1 {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--ice);
    display: inline-block;
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.hero-description {
    font-size: 0.85rem;
    color: var(--ice);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-date svg {
    stroke: var(--gold);
}

/* ========================================
   HERO MOBILE (CARD) — PRIMEIRA DOBRA
   ======================================== */

@media (max-width: 640px){
  /* hero vira "card" igual o layout de referência */
  .hero-simple{
    background: linear-gradient(180deg, rgba(45,27,78,.96) 0%, rgba(74,47,110,.98) 55%, rgba(45,27,78,.98) 100%);
    
    padding: 10px 0 0px;
    justify-content: center;
  }

  /* esconde o hero desktop no mobile */
  .hero-bg,
  .hero-overlay,
  .hero-content{
    display:none !important;
  }

  

  .hero-mobile-media{
    width: 82%;
  }
  .hero-mobile-media img{
    width: 100%;
    height: 28rem;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 3;
  }

  .hero-mobile-body{
    padding: 18px 18px 20px;
    text-align:center;
  }

  .hero-mobile-kicker{
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    margin: 3px 0 3px;
  }

  .hero-mobile-title{
    font-family: var(--font-heading);
    font-size: 0.5rem;
    line-height: 1.05;
    letter-spacing: .2px;
    color: var(--gold-light);
    margin: 0 0 10px;
  }

  .hero-mobile-date{
    font-size: 1.88rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    margin: 0 0 14px;
  }

  .hero-mobile-cta{
    border-radius: 17px;
    letter-spacing: .8px;
  }
  .hero-mobile-cta svg{
    transform: translateX(1px);
  }

  .hero-mobile-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212,175,55,.18);
    border: 1px solid rgba(212,175,55,.28);
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .85rem;
  }
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple-dark);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
    animation: brilhoPassando 1.2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 167, 70, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
}

/* ========================================
   BOTÃO CONFIRMAR — DOURADO + ROXO + BRILHO
   ======================================== */
.btn-confirmar {
  width: 100%;
  padding: 1.1rem 1.25rem;

  background: #D4AF37;              /* dourado */
  color: #2D1B4E;                   /* roxo escuro */

  border: none;
  border-radius: 10px;

  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: transform .2s ease, box-shadow .2s ease;
}

/* seta */
.btn-confirmar .arrow {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D1B4E;
  transition: transform .2s ease;
}

/* BRILHO */
.btn-confirmar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );
  animation: brilhoPassando 1.2s ease-in-out infinite;
}

/* hover */
.btn-confirmar:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.btn-confirmar:hover .arrow {
  transform: translateX(3px);
}

/* animação */
@keyframes brilhoPassando {
  0% {
    left: -120%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* mobile: conforto de toque */
@media (max-width: 768px) {
  .btn-confirmar {
    min-height: 52px;
    font-size: 0.9rem;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    color: var(--white);
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 1.50rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-dark .section-label {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.0;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.80rem;
    color: var(--gold-dark);
    line-height: 1.4;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   PILARES (Metodologia)
   ======================================== */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.pillar-card {
    background: var(--gold-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--gold);
    box-shadow: var(--shadow-md);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 1rem;
}

.pillar-description {
    color: var(--gray-dark);
    line-height: 1.8;
}

.pillar-result {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-top: var(--spacing-md);
}

.pillar-result p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold);
}

.pillar-result strong {
    color: var(--gold);
    font-weight: 700;
}

/* ========================================
   TÓPICOS (Conteúdo)
   ======================================== */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.topic-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.topic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    border-radius: 12px;
    transition: var(--transition-normal);
}

.topic-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
}

.topic-item:hover::before {
    opacity: 1;
}

.topic-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.topic-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.topic-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ========================================
   GALERIA (Resultados)
   ======================================== */
.gallery-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 50%;
    color: var(--purple-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
    z-index: 10;
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

/* ========================================
   SOBRE (Expert)
   ======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    text-align: center;
    max-width: 200px;
}

.about-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-content strong {
    color: var(--gold-light);
}

.about-bullets {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.about-bullet {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.about-bullet svg {
    flex-shrink: 0;
    stroke: var(--gold);
}

.about-bullet span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--purple-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.faq-question svg {
    flex-shrink: 0;
    stroke: var(--gold);
    transition: var(--transition-fast);
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: var(--spacing-md);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(45, 27, 78, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--purple-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--purple-dark);
    color: var(--white);
}

.modal-content {
    padding: 3rem;
}

.modal-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

/* ========================================
   FORMULÁRIO
   ======================================== */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-dark);
}

.form-group input,
.form-group select {
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-dark);
    background: var(--ice);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-feedback {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-feedback.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--purple-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--gold);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-md) 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   CTA WHATSAPP APÓS FAQ (IGUAL AO PRINT)
   ======================================== */
.faq-whatsapp-cta {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-whatsapp-text {
  font-size: 0.95rem;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* BOTÃO */
.btn-faq-whatsapp {
  background: #E6C25E; /* dourado do print */
  color: #2D1B4E;      /* roxo */

  padding: 0.85rem 2.4rem;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 6px 18px rgba(230, 194, 94, 0.45);
  transition: all 0.25s ease;
}

/* hover suave */
.btn-faq-whatsapp:hover {
  background: #F0D47A;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(230, 194, 94, 0.55);
}

/* mobile */
@media (max-width: 640px) {
  .btn-faq-whatsapp {
    width: 100%;
    max-width: 320px;
  }
}



/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding-left: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-bg {
        object-position: 55% center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-badge {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 300px;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-simple {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding-left: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-bg {
        object-position: 50% center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero__bg {
    top: -80px;
    object-position: center top;
  }
}

/* ===============================
   HERO MOBILE IMAGE – DRA ADRIANA
   =============================== */

.hero-mobile-image {
  display: none;
}



/* ========================================
   HERO MOBILE: botão 'Saiba mais' (mesmas cores do pill)
   ======================================== */
@media (max-width: 640px){
  .hero-mobile-more{
    cursor: pointer;
    text-decoration: none;
  }
  .hero-mobile-more:active{
    transform: translateY(1px);
  }
}

/* =========================================================
   FIX PACK — HERO MOBILE + Overflow + Desktop bug
   Cole NO FINAL do CSS
   ========================================================= */

/* 0) Anti-faixa branca / overflow */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: clip; /* se seu Chrome não suportar, troque por hidden */
  background: var(--purple-dark);
}

*{
  box-sizing: border-box;
}

/* 1) Desktop: NÃO pode aparecer o hero mobile */
.hero-mobile-media,
.hero-mobile-body{
  display: none !important;
}

/* 2) Mobile: vira card centralizado e robusto */
@media (max-width: 640px){

  /* O hero vira um “palco” central */
  .hero-simple{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding: 18px 0 24px;
    background: linear-gradient(
      180deg,
      rgba(45,27,78,.96) 0%,
      rgba(74,47,110,.98) 55%,
      rgba(45,27,78,.98) 100%
    );

    overflow: hidden; /* garante que nada vaze */
  }

  /* Esconde completamente o HERO DESKTOP no mobile */
  .hero-bg,
  .hero-overlay,
  .hero-content{
    display: none !important;
  }

  /* Agora sim: mostra o bloco mobile */
  .hero-mobile-media{
    display: block !important;

    width: min(420px, calc(100% - 28px));
    margin: 0 auto;

    border-radius: 18px;
    overflow: hidden;

    background: rgba(255,255,255,0.06);
    
  }

  /* Imagem do card */
  .hero-mobile-media img{
    display: block;          /* IMPORTANTÍSSIMO: nada de display: Flex */
    width: 100%;
    max-width: 100%;
    height: 320px;           /* ajuste se quiser mais alto */
    object-fit: cover;
    object-position: center top;
  }

  /* Corpo do card (textos + botões) */
  .hero-mobile-kicker,
  .hero-mobile-title,
  .hero-mobile-date,
  .hero-mobile-cta,
  .hero-mobile-pill{
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-mobile-kicker{
    margin-top: 14px;
    font-size: 0.90rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
  }

  .hero-mobile-title{
    margin-top: 6px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.06;
    color: var(--gold-light);
  }

  .hero-mobile-date{
    margin-bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255,255,255,.90);
}

  /* CTA full dentro do card */
  .hero-mobile-cta{
    width: calc(100% - 32px);
    margin: 10px 16px 10px;
    border-radius: 14px;
  }

  /* “Saiba mais” como pill alinhado e sem vazar */
  .hero-mobile-pill{
    display: inline-flex;
    width: calc(100% - 32px);
    margin: 0 16px 16px;

    align-items: center;
    justify-content: center;

    padding: 10px 14px;
    border-radius: 999px;

    background: rgba(212,175,55,.18);
    border: 1px solid rgba(212,175,55,.28);

    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    font-size: .82rem;

    text-decoration: none;
  }
}

/* 3) Segurança extra: qualquer coisa que tente estourar, trava */
img, svg, button, a{
  max-width: 100%;
}

/* =========================================================
   OVERRIDE FINAL — HERO MOBILE FULL IMAGE (SEM CARD)
   Cole NO FINAL do CSS, abaixo do "FIX PACK"
   ========================================================= */

@media (max-width: 640px){

  /* HERO sem 100vh (tira o buraco roxo) */
  .hero-simple{
    min-height: auto !important;
    padding: 38px 0 14px !important;  /* 38px = altura da tarja fixa */
    justify-content: flex-start !important;
    align-items: stretch !important;
    overflow: visible !important;
    background: var(--purple-dark) !important;
  }

  /* TRANSFORMA O "CARD" EM FULL-BLEED (sem borda/sombra/raio) */
  .hero-mobile-media{
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* IMAGEM OCUPA O TOPO TODO */
  .hero-mobile-media img{
    width: 100% !important;
    height: 46vh !important;          /* ajuste fino: 42~55vh */
    min-height: 320px !important;
    max-height: 520px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 0 !important;
  }

  /* CONTEÚDO ABAIXO COM PADDING BONITO */
  .hero-mobile-body{
    padding: 18px 18px 10px !important;
    text-align: left !important;
  }

  .hero-mobile-kicker,
  .hero-mobile-title,
  .hero-mobile-date,
  .hero-mobile-cta,
  .hero-mobile-pill{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-mobile-title{
    font-size: 1.38rem !important;
    line-height: 1.06 !important;
  }

  .hero-mobile-cta{
    width: 100% !important;
    margin: 12px 0 10px !important;
  }

  .hero-mobile-pill{
    width: 100% !important;
    margin: 0 0 6px !important;
  }

  /* Remove respiro exagerado antes da próxima seção */
  #metodologia.section{
    padding-top: 28px !important;
  }
}

/* =========================================
   MOBILE — REMOVER FORMATO DE CARD NO HERO
   (override no final do CSS)
   ========================================= */
@media (max-width: 640px){

  /* hero vira full-bleed, sem “palco de card” */
  .hero-simple{
    min-height: auto !important;                 /* tira o "tela inteira" do card */
    padding: 36px 0 0 !important;                /* mantém espaço da topbar */
    align-items: stretch !important;
  }

  /* container do hero mobile deixa de ser card */
  .hero-mobile-media{
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* imagem sem borda arredondada, ocupando mais largura */
  .hero-mobile-media > img{
    width: 100% !important;
    height: 46vh !important;                     /* ajuste fino: 42–55vh */
    max-height: 520px;
    border-radius: 0 !important;
    object-position: center top !important;
  }

  /* garante que textos e botões não fiquem “colados na lateral” */
  .hero-mobile-title,
  .hero-mobile-date,
  .pill-live,
  .hero-mobile-cta,
  .hero-mobile-pill{
    margin-left: auto !important;
    margin-right: auto !important;
    width: min(520px, calc(100% - 28px));
    text-align: center !important;
  }

}
/* ========================================
   TOP BAR ANNOUNCEMENT (MARQUEE)
   ======================================== */
.top-bar-announcement {
    background: var(--gold); /* Usando a variável de dourado do seu projeto */
    color: var(--purple-dark); /* Texto em roxo escuro para contraste */
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px; /* Altura da barra */
    display: flex;
    align-items: center;
    z-index: 2001; /* Acima do header e do modal */
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.marquee-content {
    display: inline-block;
    animation: marquee-loop 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 0;
}

@keyframes marquee-loop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Ajuste global: removemos o padding extra do body */
body {
    padding-top: 35px; /* Apenas a altura da barra */
}

@media (max-width: 640px) {
    /* Removemos o espaço que empurra a imagem para baixo no mobile */
    .hero-simple {
        padding-top: 0 !important; 
        margin-top: 0 !important;
    }

    /* Forçamos a imagem a encostar no topo da seção */
    .hero-mobile-media > img {
        margin-top: 0 !important;
    }
}

.final-cta-title {
    font-family: var(--font-body);
    font-size: 1.30rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

/* ========================================
   SECTION — PARA QUEM É / NÃO É
   ======================================== */
.section-para-quem {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-para-quem::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--purple-dark), var(--gold), var(--purple-medium));
}

/* título com itálico especial */
.pq-title em {
    font-style: italic;
    color: var(--gold-dark);
}

/* GRID: duas colunas lado a lado */
.pq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0;
}

/* COLUNAS */
.pq-col {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.pq-yes {
    background: linear-gradient(160deg, #f9f6ff 0%, #f0eaff 100%);
    border: 2px solid rgba(107, 78, 155, 0.18);
    box-shadow: 0 8px 32px rgba(45,27,78,0.08);
}

.pq-no {
    background: linear-gradient(160deg, #fff9f0 0%, #fff3e0 100%);
    border: 2px solid rgba(212,175,55,0.22);
    box-shadow: 0 8px 32px rgba(184,148,31,0.08);
}

/* CABEÇALHO DA COLUNA */
.pq-col-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(45,27,78,0.08);
}

.pq-col-header h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--purple-dark);
}

.pq-col-header h3 span {
    color: var(--gold-dark);
}

.pq-no .pq-col-header h3 span {
    color: #c0392b;
}

/* ÍCONE */
.pq-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pq-icon-yes {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(45,27,78,0.25);
}

.pq-icon-no {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    box-shadow: 0 4px 16px rgba(192,57,43,0.25);
}

/* LISTA */
.pq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.pq-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.97rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.pq-item strong {
    color: var(--purple-dark);
}

.pq-item-no strong {
    color: #8B2018;
}

/* BOLINHA CHECK */
.pq-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(45,27,78,0.2);
}

.pq-check svg {
    stroke: var(--gold);
}

/* BOLINHA X */
.pq-x {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(192,57,43,0.2);
}

.pq-x svg {
    stroke: #fff;
}

/* CTA INFERIOR */
.pq-cta-wrap {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.pq-cta-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.pq-cta-text strong {
    color: var(--purple-dark);
}

/* MOBILE */
@media (max-width: 768px) {
    .pq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pq-col {
        padding: 1.75rem 1.25rem;
    }

    .pq-col-header h3 {
        font-size: 1.3rem;
    }

    .section-para-quem {
        padding: var(--spacing-lg) 0;
    }
}
