/* ==========================================================================
   RCFácil Premium – Landing Page CSS
   Versão: 2.0 | Identidade: Dourado Premium + Azul Royal
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --gold-light:    #F5D88A;
  --gold-main:     #D4AF37;
  --gold-dark:     #B8860B;
  --gold-shine:    #FFE066;
  --blue-royal:    #1A2980;
  --blue-dark:     #0D1A4A;
  --blue-mid:      #1E3A8A;
  --white:         #FFFFFF;
  --off-white:     #F8F6F0;
  --gray-100:      #F4F4F6;
  --gray-200:      #E8E8EE;
  --gray-400:      #9CA3AF;
  --gray-600:      #6B7280;
  --gray-800:      #1F2937;
  --dark:          #0A0E1A;
  --success:       #10B981;
  --error:         #EF4444;

  /* Gradients */
  --grad-gold:     linear-gradient(135deg, #D4AF37 0%, #F5D88A 50%, #B8860B 100%);
  --grad-dark:     linear-gradient(135deg, #0A0E1A 0%, #1A2980 100%);
  --grad-hero:     linear-gradient(160deg, rgba(10,14,26,.92) 0%, rgba(26,41,128,.75) 60%, rgba(10,14,26,.95) 100%);
  --grad-card:     linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  /* Typography */
  --font-main:     'Montserrat', sans-serif;
  --font-display:  'Playfair Display', serif;

  /* Spacing */
  --section-py:    96px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 16px 64px rgba(0,0,0,.18);
  --shadow-gold:   0 8px 32px rgba(212,175,55,.35);
  --shadow-glow:   0 0 40px rgba(212,175,55,.2);

  /* Borders */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  /* Transitions */
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold-main);
  color: var(--dark);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.text-center  { text-align: center; }
.text-gold    { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-white   { color: var(--white) !important; }
.text-white-70{ color: rgba(255,255,255,.75) !important; }

/* ===== TYPOGRAPHY – Garantir Montserrat em todos os títulos ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-main);
  padding: .35rem .9rem;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: var(--radius-full);
  background: rgba(212,175,55,.08);
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(245,216,138,.35);
  background: rgba(245,216,138,.1);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(245,216,138,.6);
}
.btn-outline:hover {
  background: rgba(245,216,138,.15);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }


/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar {
  padding: 1.1rem 0;
  transition: var(--transition);
}
#header.scrolled .navbar {
  background: rgba(10,14,26,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  padding: .65rem 0;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,.3));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem .85rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(212,175,55,.08); }

.nav-cta {
  background: linear-gradient(135deg, #F5D88A 0%, #D4AF37 50%, #B8860B 100%);
  color: #0A0E1A !important;
  padding: .55rem 1.4rem !important;
  box-shadow: 0 4px 18px rgba(212,175,55,.45);
  font-weight: 800;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: .01em;
}
/* Cancela todos os pseudo-elementos herdados */
.nav-cta::before,
.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: linear-gradient(135deg, #FFE87A 0%, #E8C43A 50%, #C89A18 100%);
  color: #0A0E1A !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 36px rgba(212,175,55,.7);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}


/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fundo base: gradiente escuro azul-royal */
  background: radial-gradient(ellipse 120% 80% at 60% 40%, #0f1c4d 0%, #070b1a 55%, #000000 100%);
}

/* Canvas de partículas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Orbs / Mesh Gradient */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.35) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,41,128,.6) 0%, transparent 70%);
  top: 20%; right: -80px;
  animation-duration: 10s;
  animation-delay: -4s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,134,11,.25) 0%, transparent 70%);
  bottom: 5%; left: 30%;
  animation-duration: 16s;
  animation-delay: -7s;
}
.orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(30,58,138,.5) 0%, transparent 70%);
  bottom: -80px; right: 20%;
  animation-duration: 11s;
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.08); }
  66%  { transform: translate(-20px, 30px) scale(.95); }
  100% { transform: translate(15px, -20px) scale(1.05); }
}

/* Grid lines decorativas */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ===== HERO LINES DIAGONAIS ===== */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines span {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 3px;
  height: 130%;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.18), transparent);
  transform-origin: top center;
  animation: lineSweep 8s ease-in-out infinite alternate;
}
.hero-lines span:nth-child(1) { left: 8%;  transform: rotate(-15deg); animation-delay: 0s;    opacity: .6; }
.hero-lines span:nth-child(2) { left: 14%; transform: rotate(-12deg); animation-delay: 1.2s;  opacity: .4; width: 1.5px; }
.hero-lines span:nth-child(3) { left: 19%; transform: rotate(-10deg); animation-delay: 2.5s;  opacity: .7; }
.hero-lines span:nth-child(4) { left: 24%; transform: rotate(-8deg);  animation-delay: 0.7s;  opacity: .35; width: 1px; }
.hero-lines span:nth-child(5) { left: 30%; transform: rotate(-6deg);  animation-delay: 3.1s;  opacity: .5; width: 2px; }
@keyframes lineSweep {
  0%   { opacity: 0.1; transform: rotate(-15deg) scaleY(.85); }
  50%  { opacity: .65; }
  100% { opacity: 0.2; transform: rotate(-12deg) scaleY(1.05); }
}

/* ===== HERO LAYOUT 2 COLUNAS ===== */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas: "text form";
  align-items: center;
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 60px;
  gap: 3rem;
}
.hero-layout--2col {
  /* alias mantido para clareza */
}

/* ----- COLUNA TEXTO ----- */
.hero-text-col {
  grid-area: text;
  padding: 2rem 1.5rem 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp .9s ease .1s both;
}

.hero-badge {
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease both;
}
.hero-badge img { max-width: 170px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.hero-title-pre {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
}
.hero-title-sub {
  font-family: var(--font-main);
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: .35rem 0;
}
.hero-title-main {
  font-family: var(--font-main);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1;
}

.hero-highlight {
  font-family: var(--font-main);
  font-size: clamp(.85rem, 1.5vw, 1.1rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold-main);
  padding-left: .85rem;
}

.hero-fature {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.fature-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fature-value {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.fature-period {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-top: .2rem;
}

.hero-desc {
  font-size: clamp(.85rem, 1.2vw, 1rem);
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-number {
  font-family: var(--font-main);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: top;
  margin-top: .15rem;
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .2rem;
}

/* ----- COLUNA FORMULÁRIO ----- */
.hero-form-col {
  grid-area: form;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: fadeInUp .9s ease .35s both;
}

/* =========================================
   HERO FORM CARD – glassmorphism dark gold
   ========================================= */
.hero-form-card {
  width: 100%;
  max-width: 420px;
  background: rgba(8, 12, 28, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 1px 0 rgba(212,175,55,.18) inset;
  position: relative;
  overflow: hidden;
}
/* linha dourada topo */
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
/* brilho interno sutil */
.hero-form-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Cabeçalho do card */
.hfc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.hfc-icon {
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.hero-form-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 .15rem;
  letter-spacing: -.01em;
}
.hfc-subtitle {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ---- CAMPOS COM LABEL FLUTUANTE ---- */
.hf-group {
  position: relative;
  margin-bottom: .85rem;
}
.hf-row {
  display: flex;
  gap: .65rem;
  margin-bottom: .85rem;
  align-items: flex-start;
}
.hf-grow { flex: 1; min-width: 0; }
.hf-uf   { width: 68px; flex-shrink: 0; }

/* Ícone decorativo dentro do campo */
.hf-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .85rem;
  color: rgba(212,175,55,.6);
  pointer-events: none;
  z-index: 1;
  transition: color .25s;
}
.hf-group:focus-within .hf-icon { color: var(--gold-main); }

/* Inputs com label flutuante */
.hf-float {
  position: relative;
}
.hf-float input {
  width: 100%;
  padding: 1.15rem .9rem .45rem 2.4rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .875rem;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.hf-float input:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.hf-float input:not(:placeholder-shown),
.hf-float input:focus { padding-top: 1.3rem; padding-bottom: .35rem; }

/* Label flutuante */
.hf-float label {
  position: absolute;
  left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  pointer-events: none;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 3rem);
}
.hf-float input:focus ~ label,
.hf-float input:not(:placeholder-shown) ~ label {
  top: .55rem;
  transform: none;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-main);
  text-transform: uppercase;
}

/* Campos UF sem ícone */
.hf-uf input {
  padding-left: .85rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.hf-uf label { left: 50%; transform: translate(-50%, -50%); }
.hf-uf input:focus ~ label,
.hf-uf input:not(:placeholder-shown) ~ label {
  left: 50%; transform: translateX(-50%);
}

/* Selects modernos */
.hf-select-wrap {
  position: relative;
}
.hf-select-wrap .hf-icon {
  top: 50%; transform: translateY(-50%);
}
.hf-select-wrap select {
  width: 100%;
  padding: .78rem .9rem .78rem 2.4rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-family: var(--font-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(212,175,55,.7)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.4rem;
}
.hf-select-wrap select:focus {
  border-color: var(--gold-main);
  background-color: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
  color: var(--white);
}
.hf-select-wrap select option { background: #0d1a4a; color: var(--white); }

/* LGPD */
.hf-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1rem;
}
.hf-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold-main);
  flex-shrink: 0;
  margin-top: .1rem;
  cursor: pointer;
}
.hf-check label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  line-height: 1.45;
}
.hf-check a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Botão submit */
.btn-hero-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: var(--grad-gold);
  color: var(--dark);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 28px rgba(212,175,55,.4);
  position: relative;
  overflow: hidden;
}
.btn-hero-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .25s;
}
.btn-hero-submit:hover::before { opacity: 1; }
.btn-hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,.55);
}
.btn-hero-submit .fa-arrow-right {
  transition: transform .25s;
}
.btn-hero-submit:hover .fa-arrow-right { transform: translateX(4px); }

/* Selos de confiança */
.hfc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hfc-trust span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
}
.hfc-trust i { color: rgba(212,175,55,.55); font-size: .75rem; }

/* Sucesso */
.hero-form-success {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--white);
}
.hfs-icon {
  font-size: 3.5rem;
  color: var(--gold-main);
  margin-bottom: .85rem;
  animation: scaleIn .5s cubic-bezier(.34,1.56,.64,1);
}
.hero-form-success h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
}
.hero-form-success p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down {
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}


/* ===== LOGOS SECTION ===== */
.logos-section {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.logos-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.logo-item img {
  opacity: .65;
  transition: var(--transition);
  filter: grayscale(1);
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-item img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.05); }


/* ===== SOBRE SECTION ===== */
.sobre-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* Modo full-width (sem imagens) */
.sobre-grid--full {
  grid-template-columns: 1fr;
}
.sobre-content--center {
  text-align: center;
}
.sobre-content--center .section-tag { margin-inline: auto; display: block; }

.sobre-images {
  position: relative;
}
.sobre-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.sobre-img-main img { width: 100%; height: 400px; object-fit: cover; }
.sobre-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}
.sobre-img-secondary img { width: 100%; height: 180px; object-fit: cover; }

.sobre-content .section-title { color: var(--dark); }
.sobre-text {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: .975rem;
}
.sobre-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.5rem;
}
.sobre-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.sobre-list li i { color: var(--gold-main); font-size: 1rem; flex-shrink: 0; }

/* Destaques numéricos da seção sobre */
.sobre-destaque-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.sobre-destaque-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 120px;
}
.sobre-destaque-item i {
  font-size: 1.8rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}
.sobre-destaque-item strong {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.sobre-destaque-item span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}


/* ===== 8 SEGMENTOS SECTION ===== */
.segmentos-section {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.segmentos-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,.05) 0%, transparent 70%);
  pointer-events: none;
}
.segmentos-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,41,128,.12) 0%, transparent 70%);
  pointer-events: none;
}
.segmentos-section .section-title { color: var(--white); }
.segmentos-section .section-subtitle { color: rgba(255,255,255,.6); }

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: .5rem;
}

/* Card de cada segmento */
.segmento-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.segmento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.segmento-card:hover {
  border-color: rgba(212,175,55,.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 40px rgba(212,175,55,.1);
  background: rgba(255,255,255,.055);
}
.segmento-card:hover::before { transform: scaleX(1); }

/* Card de destaque (último) */
.segmento-card--highlight {
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.04);
  box-shadow: 0 0 30px rgba(212,175,55,.08);
}
.segmento-card--highlight::before { transform: scaleX(1); }

/* Número do segmento */
.segmento-num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: .35;
  letter-spacing: -.04em;
  margin-bottom: -.25rem;
}
.segmento-card:hover .segmento-num { opacity: .6; }

/* Ícone */
.segmento-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-main);
  transition: var(--transition);
  flex-shrink: 0;
}
.segmento-card:hover .segmento-icon {
  background: rgba(212,175,55,.2);
  color: var(--gold-light);
  transform: scale(1.05);
}
.segmento-card--highlight .segmento-icon {
  background: rgba(212,175,55,.18);
}

/* Título */
.segmento-title {
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: .15rem;
}

/* Descrição */
.segmento-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  flex: 1;
}

/* Lista de tópicos */
.segmento-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(212,175,55,.1);
  margin-top: auto;
}
.segmento-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.segmento-list li i {
  font-size: .45rem;
  color: var(--gold-main);
  flex-shrink: 0;
}

/* CTA central abaixo dos cards */
.segmentos-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212,175,55,.12);
}
.segmentos-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-full);
  padding: .6rem 1.4rem;
  color: var(--gold-light);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.segmentos-cta-badge i { font-size: 1rem; color: var(--gold-main); }


/* ===== MODELO SECTION ===== */
.modelo-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.modelo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.modelo-content .section-title { color: var(--dark); }
.modelo-text { color: var(--gray-600); margin-bottom: 2rem; }

.modelo-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modelo-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.step-content p  { font-size: .875rem; color: var(--gray-600); }

.modelo-images { position: relative; }
.modelo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modelo-img img { width: 100%; height: 480px; object-fit: cover; }
.modelo-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,175,55,.25);
}
.modelo-badge img { width: 100px; }


/* ===== PRÊMIOS SECTION ===== */
.premios-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}
.premios-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  opacity: .97;
}
.premios-section .container { position: relative; z-index: 1; }
.premios-section .section-title { color: var(--white); }

.premios-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.premios-logo-block img {
  max-width: 280px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}

.premios-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.premio-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  min-width: 110px;
  transition: var(--transition);
  position: relative;
}
.premio-card:hover {
  background: rgba(212,175,55,.08);
  border-color: var(--gold-main);
  transform: translateY(-4px);
}
.premio-year {
  display: block;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.premio-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.premio-card--highlight {
  border-color: var(--gold-main);
  background: rgba(212,175,55,.1);
  box-shadow: var(--shadow-gold);
}
.premio-badge {
  position: absolute;
  top: -.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--dark);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .15rem .6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}


/* ===== SUCESSO SECTION ===== */
.sucesso-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.sucesso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sucesso-img-wrap {
  position: relative;
}
.sucesso-img-wrap > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.sucesso-growth {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .85rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,175,55,.25);
}
.sucesso-content .section-title { color: var(--dark); }
.sucesso-content > p { color: var(--gray-600); margin-bottom: 1.75rem; }

/* ── Painel de gráficos (substitui imagem estática) ── */
.sucesso-chart-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Card genérico do painel */
.sc-card {
  background: var(--dark);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.sc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.sc-card:hover {
  border-color: rgba(212,175,55,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.18), 0 0 20px rgba(212,175,55,.08);
}

/* Header interno dos cards */
.sc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
  gap: .5rem;
}
.sc-card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sc-card-tag i { font-size: .8rem; color: var(--gold-main); }

/* Badge de crescimento */
.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 800;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.sc-badge--up {
  background: rgba(16,185,129,.15);
  color: #34D399;
  border: 1px solid rgba(16,185,129,.3);
}

/* Eixo X (rótulos manuais) */
.sc-axis-label {
  display: flex;
  justify-content: space-between;
  padding: .3rem .1rem 0;
}
.sc-axis-label span {
  font-size: .66rem;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ── KPI cards ── */
.sc-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sc-kpi {
  background: var(--dark);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sc-kpi:hover {
  border-color: rgba(212,175,55,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.sc-kpi-icon {
  width: 38px; height: 38px;
  background: rgba(212,175,55,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold-main);
  flex-shrink: 0;
}
.sc-kpi-icon--gold { background: rgba(212,175,55,.18); }
.sc-kpi-body {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex: 1;
  min-width: 0;
}
.sc-kpi-num {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.03em;
}
.sc-kpi-label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}
.sc-kpi-spark {
  flex-shrink: 0;
  opacity: .75;
}

/* ── Donut + Legenda ── */
.sc-card--donut { padding-bottom: 1.25rem; }
.sc-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: .25rem;
}
.sc-legend {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.sc-legend li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.sc-legend li span {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
  .sucesso-chart-wrap { gap: .85rem; }
  .sc-kpi-num { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  .sc-kpi-row { grid-template-columns: 1fr; }
  .sc-kpi-spark { display: none; }
  .sc-donut-wrap { flex-direction: column; align-items: flex-start; }
}

.sucesso-items {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.sucesso-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.sucesso-item i { color: var(--gold-main); font-size: 1.1rem; flex-shrink: 0; }


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--gray-100);
}
.faq-section .section-title { color: var(--dark); }

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  list-style: none;
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { color: var(--gold-dark); }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--gold-main); }
.faq-icon { transition: var(--transition); color: var(--gray-400); flex-shrink: 0; }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.faq-answer p { font-size: .9rem; color: var(--gray-600); padding-top: 1rem; }


/* ===== CONTATO / CTA SECTION ===== */
.contato-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: #040710;
}

/* Aurora animada */
.contato-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
}
.aurora-1 {
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,41,128,.7) 0%, transparent 65%);
  top: -100px; left: -200px;
  animation: auroraMove1 18s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,.18) 0%, transparent 65%);
  top: 40%; right: -150px;
  animation: auroraMove2 14s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(13,26,74,.8) 0%, transparent 65%);
  bottom: -80px; left: 20%;
  animation: auroraMove3 20s ease-in-out infinite alternate;
}
@keyframes auroraMove1 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  100% { transform: translate(120px, 60px) rotate(15deg) scale(1.15); }
}
@keyframes auroraMove2 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  100% { transform: translate(-80px, -40px) rotate(-10deg) scale(1.1); }
}
@keyframes auroraMove3 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  100% { transform: translate(60px, -80px) rotate(8deg) scale(1.2); }
}

/* Linha dourada decorativa no topo da section contato */
.contato-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  z-index: 2;
}

.contato-section .container { position: relative; z-index: 1; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* CTA-only layout (sem formulário) */
.contato-cta-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contato-cta-only .section-tag { margin-inline: auto; }

.contato-info .section-title { color: var(--white); }
.contato-info > p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }

.contato-beneficios {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.contato-beneficios--center {
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.cb-item i { color: var(--gold-main); font-size: 1.1rem; }

.contato-garantia {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}
.contato-garantia--center {
  justify-content: center;
  margin-top: 1.5rem;
  max-width: 480px;
}
.contato-garantia p { font-size: .85rem; }

/* Botão CTA final grande */
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--grad-gold);
  color: var(--dark);
  padding: 1.15rem 2.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 8px 40px rgba(212,175,55,.5);
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(212,175,55,.65);
  color: var(--dark);
}

/* ===== LEAD FORM (mantido para compatibilidade) ===== */
.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border-top: 4px solid var(--gold-main);
}

.form-title {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.75rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.required { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-main);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--error); }

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }

.field-error {
  display: block;
  font-size: .75rem;
  color: var(--error);
  margin-top: .3rem;
  min-height: 1em;
}

.form-check {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold-main);
  flex-shrink: 0;
  margin-top: .15rem;
}
.form-check label {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.form-check a { color: var(--gold-dark); text-decoration: underline; }

.form-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.25rem;
  animation: scaleIn .5s cubic-bezier(.34, 1.56, .64, 1);
}
.form-success h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: .75rem; }
.form-success p  { color: var(--gray-600); }


/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,.12);
}
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(212,175,55,.15);
  border-color: var(--gold-main);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-nav h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-nav a:hover { color: var(--gold-light); padding-left: .25rem; }

.footer-contact h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 1.25rem;
}
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.footer-contact address p { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact address i { color: var(--gold-main); font-size: .9rem; }
.footer-contact address a { color: rgba(255,255,255,.55); }
.footer-contact address a:hover { color: var(--gold-light); }

.footer-abf img { opacity: .6; transition: var(--transition); }
.footer-abf img:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }


/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  padding: 0;
}
.float-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}
.float-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-whatsapp:hover .float-tooltip { opacity: 1; }

/* ===== MODAL WHATSAPP ===== */
.wpp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,7,16,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 2rem 6.5rem;
  animation: wppOverlayIn .25s ease both;
}
.wpp-modal-overlay[hidden] { display: none; }

@keyframes wppOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes wppSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wpp-modal {
  background: #0b0f20;
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04) inset;
  animation: wppSlideUp .3s cubic-bezier(.34,1.1,.64,1) both;
  position: relative;
}

/* Linha verde no topo */
.wpp-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Cabeçalho */
.wpp-modal-header {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wpp-modal-icon {
  width: 42px; height: 42px;
  background: rgba(37,211,102,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(37,211,102,.25);
}
.wpp-modal-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 .2rem;
  line-height: 1.25;
}
.wpp-modal-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.4;
}
.wpp-modal-close {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.wpp-modal-close:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  transform: rotate(90deg);
}

/* Formulário */
#wppForm {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.wpp-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.wpp-field label {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.wpp-field label i { color: #25D366; font-size: .85rem; }
.wpp-field label span { color: #25D366; }

.wpp-field input {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.wpp-field input::placeholder { color: rgba(255,255,255,.25); }
.wpp-field input:focus {
  border-color: #25D366;
  background: rgba(37,211,102,.06);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.wpp-field input.wpp-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.wpp-error {
  font-size: .7rem;
  color: var(--error);
  min-height: .9rem;
  font-weight: 600;
}

/* Botão submit */
.wpp-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: .95rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  margin-top: .25rem;
}
.wpp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
}
.wpp-submit:active { transform: translateY(0); }

/* Sucesso */
.wpp-success {
  padding: 2rem 1.5rem 2rem;
  text-align: center;
}
.wpp-success-icon {
  width: 64px; height: 64px;
  background: rgba(37,211,102,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #25D366;
  margin: 0 auto 1.1rem;
  animation: scaleIn .5s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 30px rgba(37,211,102,.3);
}
.wpp-success h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .65rem;
}
.wpp-success p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.wpp-close-btn {
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}
.wpp-close-btn:hover {
  background: rgba(37,211,102,.25);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .wpp-modal-overlay {
    padding: 0 .85rem 6.5rem;
    align-items: flex-end;
    justify-content: center;
  }
  .wpp-modal { max-width: 100%; }
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(10,14,26,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 1.1rem 1.5rem;
}
.cookie-content {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p { font-size: .82rem; color: rgba(255,255,255,.7); }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-10px) translateX(-50%); }
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-layout { grid-template-columns: 1fr 380px; gap: 2rem; }
  .segmentos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-layout {
    grid-template-columns: 1fr 340px;
    gap: 1.75rem;
    padding-top: 100px;
    align-items: center;
  }
  .hero-form-card { padding: 1.6rem 1.35rem 1.25rem; }

  .sobre-grid,
  .modelo-grid,
  .sucesso-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .sobre-images { min-height: 320px; }
  .sobre-img-secondary { bottom: -1rem; right: -.75rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,14,26,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  /* Hero mobile: 1 coluna */
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "form";
    padding-top: 88px;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }
  .hero-text-col { padding: 1rem 0 0; }
  .hero-form-col { justify-content: stretch; }
  .hero-form-card { max-width: 100%; border-radius: var(--radius-lg); }
  .hero-lines { display: none; }

  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .stat-number { font-size: 2rem; }

  .segmentos-grid { grid-template-columns: 1fr; }
  .segmentos-cta-badge { font-size: .8rem; text-align: center; }
  .contato-beneficios--center { flex-direction: column; align-items: center; gap: .85rem; }

  .premios-content { flex-direction: column; }
  .premios-logo-block img { max-width: 220px; }

  .contato-form-wrap { padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .sobre-img-secondary { display: none; }
  .sobre-destaque-grid { gap: 1.25rem; }
  .sobre-destaque-item { min-width: 100px; }
}

@media (max-width: 480px) {
  .hero-title-pre  { font-size: 2rem; }
  .hero-title-main { font-size: 2.75rem; }
  .fature-value    { font-size: 2.5rem; }
  .premios-cards { gap: .75rem; }
  .premio-card { min-width: 90px; padding: 1.1rem .85rem; }
  .float-whatsapp { bottom: 1.25rem; right: 1.25rem; }
  .segmentos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .btn-cta-final { font-size: .9rem; padding: 1rem 1.75rem; }
}

/* ===== PRINT ===== */
@media print {
  .float-whatsapp, .cookie-banner, #header { display: none !important; }
  body { background: white; color: black; }
  .hero-section { min-height: auto; }
}
