/* ==========================================================================
   SR CONTADOR - LANDING PAGE STYLESHEET
   Design System & Theme: Dark Luxury Gold / Warm Copper
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #120f0e;
  --bg-dark-secondary: #191411;
  --bg-card: rgba(28, 22, 18, 0.9);
  --bg-card-border: rgba(218, 159, 98, 0.25);
  
  --gold-primary: #da9f62;
  --gold-light: #f0c290;
  --gold-dark: #b87c42;
  --gold-gradient: linear-gradient(135deg, #ebd1b1 0%, #da9f62 50%, #b87c42 100%);
  --gold-glow: rgba(218, 159, 98, 0.4);
  
  --copper-banner-bg: #c88e56;
  --copper-banner-text: #17110c;
  
  --text-main: #f5ebe0;
  --text-muted: #bdaea0;
  --text-dark: #120f0e;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

.gold-highlight {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 25px rgba(218, 159, 98, 0.3);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(218, 159, 98, 0.5);
  background: linear-gradient(135deg, #f2dbbf 0%, #e5a769 50%, #c48549 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  background: var(--copper-banner-bg);
  color: var(--copper-banner-text);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 6px 20px rgba(200, 142, 86, 0.3);
}

.btn-secondary:hover {
  background: #db9c62;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 142, 86, 0.5);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
  position: relative;
  z-index: 50;
  background: rgba(18, 15, 14, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(218, 159, 98, 0.15);
  padding: 1.2rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-main);
  opacity: 0.75;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(218, 159, 98, 0.12);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--gold-glow);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 2px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(218, 159, 98, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-live i {
  color: #ef4444;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 30%, rgba(218, 159, 98, 0.15) 0%, rgba(18, 15, 14, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(184, 124, 66, 0.1) 0%, rgba(18, 15, 14, 0) 50%),
              var(--bg-dark);
  padding-top: 3.5rem;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 4rem;
}

.hero-badge span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 3px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-subdescription {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* Lead Form Card */
.lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.form-group {
  position: relative;
  margin-bottom: 1.1rem;
}

.input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(18, 15, 14, 0.7);
  border: 1px solid rgba(218, 159, 98, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  appearance: none;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(218, 159, 98, 0.25);
  background: rgba(18, 15, 14, 0.9);
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.form-disclaimer i {
  color: var(--gold-primary);
  margin-top: 2px;
}

.form-success-message {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.form-success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.hidden {
  display: none !important;
}

/* Hero Right Image Frame */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(218, 159, 98, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  top: -5%;
  left: -5%;
  z-index: 1;
  pointer-events: none;
}

.image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  max-width: 440px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover .hero-img {
  transform: scale(1.03);
}

.hero-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(18, 15, 14, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bg-card-border);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-main);
}

.badge-info span {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

/* Event Banner Strip (Copper Tan) */
.event-banner-strip {
  background: var(--copper-banner-bg);
  color: var(--copper-banner-text);
  padding: 2.2rem 0;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
  position: relative;
  z-index: 10;
}

.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-text p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--copper-banner-text);
  max-width: 650px;
}

.banner-text strong {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.3);
}

.banner-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.timer-box {
  background: #17110c;
  color: var(--gold-primary);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  text-align: center;
  min-width: 54px;
}

.timer-box span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.timer-box small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #bdaea0;
  margin-top: 2px;
}

.timer-colon {
  font-weight: 900;
  font-size: 1.3rem;
  color: #17110c;
}

/* ==========================================================================
   SECTION 2: É PARA VOCÊ QUE
   ========================================================================== */
.target-section {
  padding: 5rem 0;
  background: var(--bg-dark-secondary);
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title.left-aligned {
  text-align: left;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0.75rem auto 0;
}

.gold-divider.left-aligned {
  margin-left: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.target-card {
  position: relative;
  height: 580px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-smooth);
}

.target-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(218, 159, 98, 0.25);
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s ease;
}

.target-card:hover .card-bg-image {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 15, 14, 0.2) 0%, rgba(18, 15, 14, 0.7) 50%, rgba(18, 15, 14, 0.98) 100%);
}

.card-content {
  position: relative;
  z-index: 5;
  padding: 2rem 1.5rem;
  text-align: center;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

.center-cta {
  text-align: center;
}

/* ==========================================================================
   SECTION 3: QUEM SERÁ O SEU MENTOR
   ========================================================================== */
.mentor-section {
  padding: 5rem 0 0;
  background: var(--bg-dark);
  position: relative;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 5rem;
}

.mentor-image-col {
  display: flex;
  justify-content: center;
}

.mentor-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  max-width: 450px;
  width: 100%;
}

.mentor-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mentor-info-col {
  display: flex;
  flex-direction: column;
}

.mentor-name {
  font-size: 2.6rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.mentor-role {
  font-size: 1rem;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mentor-bio p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.mentor-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.mentor-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.mentor-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 130px;
  line-height: 1.4;
}

/* Action Banner Strip (Bottom of Mentor Section) */
.action-banner-strip {
  background: var(--copper-banner-bg);
  color: var(--copper-banner-text);
  padding: 2.5rem 0;
}

.action-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.action-headline h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--copper-banner-text);
  max-width: 480px;
  line-height: 1.2;
}

.action-meta {
  display: flex;
  flex-direction: column;
}

.meta-date {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.meta-sub {
  font-size: 0.95rem;
  opacity: 0.9;
}

.btn-action {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  background: #17110c;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-action:hover {
  background: #000;
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   SECTION 4: THANK YOU & FOOTER
   ========================================================================== */
.thankyou-section {
  padding: 4.5rem 0 3rem;
  background: var(--bg-dark-secondary);
}

.thankyou-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  font-size: 1.3rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(218, 159, 98, 0.1);
  border: 1px solid var(--bg-card-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

.footer-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(218, 159, 98, 0.15);
  margin: 0 auto 2rem;
}

.site-footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer p {
  margin-bottom: 0.3rem;
}

.mentor-credit {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .header-container {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--bg-card-border);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(218, 159, 98, 0.12);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section { padding-top: 2rem; }
  .hero-grid { padding-bottom: 2.5rem; }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .target-card {
    height: 460px;
  }

  .mentor-section { padding-top: 3.5rem; }
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3.5rem;
  }

  .mentor-frame { max-width: 340px; margin: 0 auto; }

  .mentor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: left;
  }
  .mentor-stat-label { max-width: none; font-size: 0.7rem; }

  .banner-flex,
  .action-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .banner-countdown {
    align-items: center;
  }

  .action-headline h2 {
    max-width: 100%;
    font-size: 1.5rem;
  }

  /* Seções: respiro menor no mobile */
  .beneficios, .areas, .dif, .depoimentos, .processo,
  .localizacao, .formulario, .faq, .cta-final, .quote-band,
  .target-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { padding: 1.8rem 1.3rem; }

  .cta-final .btn-outline { width: 100%; }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description, .hero-subdescription { font-size: 1rem; }

  .hero-badge span { letter-spacing: 0.1em; font-size: 0.72rem; }
  .section-eyebrow { letter-spacing: 0.12em; font-size: 0.72rem; }

  .lead-form-card {
    padding: 1.5rem;
  }

  .event-banner-strip .btn-secondary,
  .center-cta .btn-secondary {
    width: 100%;
  }

  .banner-flex .btn-secondary span,
  .center-cta .btn-secondary span {
    white-space: normal;
  }

  .hero-img-badge {
    padding: 0.65rem 0.85rem;
    gap: 0.7rem;
  }
  .badge-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .badge-info strong { font-size: 0.88rem; }
  .badge-info span { font-size: 0.68rem; }

  .section-title {
    font-size: 1.8rem;
  }

  .mentor-name {
    font-size: 2rem;
  }

  .mentor-stats { grid-template-columns: 1fr 1fr; }
  .mentor-stats .mentor-stat:last-child { grid-column: 1 / -1; }

  .dif-grid, .steps { grid-template-columns: 1fr; }

  .action-headline h2 { font-size: 1.3rem; }
  .action-btn-wrapper .btn-action { width: 100%; text-align: center; }

  .loc-info .btn-outline { width: 100%; text-align: center; }

  .thankyou-title {
    font-size: 2.5rem;
  }

  .social-links { gap: 0.9rem; }
  .social-icon { width: 44px; height: 44px; }
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.5);
  transition: transform 200ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   SEÇÕES ADICIONAIS
   ========================================================================== */

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
}

.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header.text-center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header .section-title { margin-top: 0.7rem; }
.section-header--tight.text-center { max-width: none; }
.section-header--tight .section-title { white-space: nowrap; }
.section-aviso { font-size: 13.5px; color: var(--text-muted); margin-top: 0.9rem; font-style: italic; }

/* ---------- Benefícios ---------- */
.beneficios { padding: 5.5rem 0; background: var(--bg-dark-secondary); }
.beneficios-list { margin: 2.5rem auto 0; max-width: 820px; border-top: 1px solid var(--bg-card-border); }
.beneficio-item { border-bottom: 1px solid var(--bg-card-border); }
.beneficio-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.beneficio-q .dor { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--text-main); }
.beneficio-q .plus { font-size: 20px; font-weight: 400; color: var(--gold-primary); transition: transform 280ms ease; flex-shrink: 0; }
.beneficio-item.is-open .plus { transform: rotate(45deg); }
.beneficio-a-wrap { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.beneficio-a-wrap .resultado { padding: 0 0 22px; font-size: 15px; font-weight: 500; color: var(--gold-light); line-height: 1.55; max-width: 640px; }

/* ---------- Quote band ---------- */
.quote-band { padding: 5rem 0; text-align: center; background: var(--bg-dark); }
.quote-band blockquote { font-family: var(--font-heading); font-weight: 600; font-style: italic; font-size: clamp(18px, 2.6vw, 34px); line-height: 1.4; max-width: none; margin: 0 auto; color: var(--text-main); white-space: nowrap; }
.quote-band cite { display: block; margin-top: 20px; font-style: normal; font-weight: 700; font-size: 15px; color: var(--gold-primary); text-align: right; }

@media (max-width: 560px) {
  .quote-band blockquote { white-space: normal; font-size: 22px; }
}

/* ---------- Áreas (carrossel) ---------- */
.areas { padding: 5.5rem 0; background: var(--bg-dark-secondary); }

.areas-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.area-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: var(--radius-md); padding: 1.5rem 1.3rem; transition: var(--transition-fast); }
.area-card:hover { border-color: var(--gold-primary); transform: translateY(-4px); }
.area-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(218,159,98,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--gold-primary); }
.area-icon svg { width: 18px; height: 18px; }
.area-card h3 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.area-card p { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Diferenciais ---------- */
.dif { padding: 5.5rem 0; background: var(--bg-dark); }
.dif-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.dif-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: var(--radius-md); padding: 1.8rem; }
.dif-icon { margin-bottom: 16px; color: var(--gold-light); }
.dif-icon svg { width: 24px; height: 24px; }
.dif-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 19px; margin-bottom: 10px; color: var(--text-main); }
.dif-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Depoimentos ---------- */
.depoimentos { padding: 5.5rem 0; background: var(--bg-dark-secondary); }
.depo-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.depo-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: var(--radius-md); padding: 1.8rem; display: flex; flex-direction: column; }
.depo-quote { font-size: 16.5px; line-height: 1.55; color: var(--text-main); flex: 1; font-style: italic; }
.depo-attr { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--bg-card-border); font-size: 13px; }
.depo-attr strong { display: block; color: var(--gold-primary); font-weight: 700; }
.depo-attr span { color: var(--text-muted); }

/* ---------- Processo ---------- */
.processo { padding: 5.5rem 0; background: var(--bg-dark); }
.steps { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--bg-card-border); border-top: 1px solid var(--bg-card-border); border-bottom: 1px solid var(--bg-card-border); }
.step { background: var(--bg-dark-secondary); padding: 2.2rem 1.8rem; }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 34px; color: var(--gold-primary); }
.step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 14px 0 8px; color: var(--text-main); }
.step p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Localização ---------- */
.localizacao { padding: 5.5rem 0; background: var(--bg-dark-secondary); }
.loc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: center; }
.loc-address { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 18px 0 24px; }
.loc-map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--bg-card-border); height: 320px; }
.loc-map iframe { width: 100%; height: 100%; display: block; filter: invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ---------- Formulário completo ---------- */
.formulario { padding: 5.5rem 0; background: var(--bg-dark); }
.form-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: flex-start; }
.form-grid .lead-form-card { max-width: none; margin-top: 0; }

/* ---------- FAQ ---------- */
.faq { padding: 5.5rem 0; background: var(--bg-dark-secondary); }
.faq-list { margin: 2.5rem auto 0; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--bg-card-border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 22px; font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--text-main); }
.faq-q .plus { font-size: 20px; font-weight: 400; color: var(--gold-primary); transition: transform 280ms ease; flex-shrink: 0; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.faq-a { padding: 0 0 24px; font-size: 15px; line-height: 1.6; color: var(--text-muted); max-width: 640px; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--gold-gradient); color: var(--text-dark); padding: 5.5rem 0; text-align: center; }
.cta-final h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 720px; margin: 0 auto; color: var(--text-dark); }
.cta-final p { font-size: 1.05rem; margin-top: 16px; opacity: 0.85; }
.cta-final .btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 2.2rem; border: 1px solid rgba(18,15,14,0.35); color: var(--text-dark); font-family: var(--font-heading); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.03em; border-radius: var(--radius-sm); margin-top: 2rem; transition: var(--transition-fast); text-decoration: none; }
.cta-final .btn-outline:hover { background: var(--text-dark); color: var(--gold-light); }
.cta-final .cta-microcopy { font-size: 13px; margin-top: 14px; color: rgba(18,15,14,0.7); }

@media (max-width: 992px) {
  .depo-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section-header--tight .section-title { white-space: normal; }
}
