/* ═══════════════════════════════════════════════════════
   RIOLUX — SECTIONS
   Estilos específicos de cada seção da landing page.
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   01. HERO
───────────────────────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% 40% -20% auto;
  width: 60%;
  background: radial-gradient(circle, rgba(214,169,74,.10), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40%; height: 60%;
  background: radial-gradient(circle, rgba(23,62,115,.18), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Vídeo de fundo ──
   Para ajustar a intensidade do vídeo, altere o valor de opacity abaixo.
   0 = invisível  |  1 = totalmente visível  |  recomendado: 0.10 – 0.20
─────────────────────────────────────────────────────────────────────── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09; /* ← OPACIDADE DO VÍDEO — altere aqui */
}

.hero-badge    { margin-bottom: 24px; }

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Variante menor para headlines longas */
.hero-title--sm {
  font-size: clamp(16px, 2.2vw, 26px);
  line-height: 1.5;
  letter-spacing: -.01em;
  font-weight: 500;
}

/* Primeira parte da headline — destaque */
.hero-title-highlight {
  display: block;
  font-size: clamp(22px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 5px;
}

/* Segunda parte — corpo menor */
.hero-title-body {
  display: block;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, 0.795);
  margin-bottom: 50px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}
.hero-trust span   { display: flex; align-items: center; gap: 6px; }
.hero-trust-dot    { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* Hero — Card de Cotação */
.quote-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.quote-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.quote-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.quote-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.quote-option {
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: rgba(255,255,255,.04);
}
.quote-option:hover {
  border-color: var(--gold-500);
  background: rgba(214,169,74,.06);
}
.quote-option.active {
  border-color: var(--gold-500);
  background: rgba(214,169,74,.10);
}
.quote-option-icon  { width: 40px; height: 40px; margin: 0 auto 6px; display: block; object-fit: contain; }

/* Último item sozinho na linha — ocupa as 2 colunas completas */
.quote-option:last-child:nth-child(odd) { grid-column: 1 / -1; }
.quote-option-label { font-size: 13px; font-weight: 600; color: var(--white); display: block; }
.quote-option-sub   { font-size: 11px; color: rgba(255,255,255,.45); display: block; margin-top: 2px; }
.quote-option.active .quote-option-label { color: var(--gold-300); }

.quote-cta { width: 100%; display: flex; justify-content: center; margin-bottom: 14px; }
.quote-cta .btn { width: 100%; justify-content: center; font-size: 15px; padding: 16px 20px; }

.quote-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.quote-note svg { width: 13px; height: 13px; opacity: .6; }

/* ─────────────────────────────────────────────────────
   02. BARRA DE CREDIBILIDADE
───────────────────────────────────────────────────── */
.cred-bar { background: var(--gradient-gold); padding: 22px 0; }

.cred-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cred-item  { display: flex; align-items: center; gap: 12px; }
.cred-icon  {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(7,13,29,.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 18px; height: 18px; color: var(--navy-950); }
.cred-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--navy-950); letter-spacing: -.02em; }
.cred-text span   { font-size: 12px; color: rgba(7,13,29,.65); font-weight: 500; }
.cred-divider     { width: 1px; height: 36px; background: rgba(7,13,29,.15); }

/* ─────────────────────────────────────────────────────
   03. PROBLEMA - SOLUÇÃO
───────────────────────────────────────────────────── */
.prob-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.prob-col,
.sol-col { border-radius: var(--radius-xl); padding: 36px; }
.prob-col { background: var(--white); border: 1.5px solid var(--silver-200); }
.sol-col  { background: var(--navy-950); }

.col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-label--prob { color: #E53E3E; }
.col-label--sol  { color: var(--gold-300); }
.col-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  line-height: 1.15;
}
.col-title--dark { color: var(--white); }

.point-list { display: flex; flex-direction: column; gap: 14px; }
.point      { display: flex; gap: 14px; align-items: flex-start; }

.point-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.point-icon--prob { background: #FFF0F0; }
.point-icon--sol  { background: rgba(214,169,74,.12); }
.point-icon svg          { width: 15px; height: 15px; }
.point-icon--prob svg    { color: #E53E3E; }
.point-icon--sol svg     { color: var(--gold-500); }

.point-text       { font-size: 15px; line-height: 1.5; color: var(--text-600); }
.point-text--dark { color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────────────────────
   04. PRODUTOS
───────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7,13,29,.10);
  border-color: var(--silver-300);
}
.product-icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy-950);
}
.product-icon svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.product-name {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  color: var(--text-900);
}
.product-desc { font-size: 14px; color: var(--text-500); line-height: 1.6; margin-bottom: 20px; }

.product-coverages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
  flex: 1;
}
.product-coverages li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-600);
}
.product-coverages li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--gradient-gold-soft);
  border: 1px solid rgba(214,169,74,.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6A94A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─────────────────────────────────────────────────────
   05. COMO FUNCIONA
───────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  border: 1.5px solid var(--silver-200);
}
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .5;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  color: var(--text-900);
}
.step-text { font-size: 15px; color: var(--text-500); line-height: 1.65; }

/* ─────────────────────────────────────────────────────
   06. PARCEIROS
───────────────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.partner-chip {
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: all .2s;
}
.partner-chip img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: none;       /* logos sempre coloridas */
  transition: transform .2s;
}
.partner-chip:hover {
  border-color: rgba(214,169,74,.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* ─────────────────────────────────────────────────────
   07. DEPOIMENTOS
───────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars       { display: flex; gap: 4px; }
.testimonial-stars span  { color: var(--gold-500); font-size: 16px; }
.testimonial-quote { font-size: 15px; line-height: 1.7; color: var(--text-600); font-style: italic; flex: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--silver-200);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy-950);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text-900); }
.testimonial-role { font-size: 12px; color: var(--text-500); margin-top: 2px; }
.testimonial-tag {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-gold-soft);
  border: 1px solid rgba(214,169,74,.2);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-700);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────────────
   08. FAQ
───────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold-500); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-900);
  user-select: none;
}
.faq-question:hover { color: var(--navy-900); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--silver-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item.open .faq-icon { background: var(--gradient-gold); }
.faq-icon svg { width: 16px; height: 16px; color: var(--text-500); transition: transform .25s; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--navy-950); }

.faq-answer      { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.16,1,.3,1); }
.faq-answer-inner { padding: 0 26px 22px; font-size: 15px; line-height: 1.7; color: var(--text-600); }

/* ─────────────────────────────────────────────────────
   09. CTA FINAL
───────────────────────────────────────────────────── */
.cta-final {
  background: var(--gradient-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: -30% 20%;
  background: radial-gradient(circle, rgba(214,169,74,.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 2; text-align: center; }

.cta-final-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.055em;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-final-sub {
  font-size: 18px;
  color: rgba(255,255,255,.62);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-final-actions { display: flex; justify-content: center; margin-bottom: 44px; }

.trust-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand  { margin-bottom: 18px; }
.footer-desc          { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-legal-note    { font-size: 14px; color: rgba(255, 255, 255, 0.61); line-height: 1.6; }
.footer-col-title     { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-links         { display: flex; flex-direction: column; gap: 12px; }
.footer-link          { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-link:hover    { color: var(--white); }
.footer-link svg      { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy          { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links  { display: flex; gap: 24px; }
.footer-bottom-link   { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-link:hover { color: rgba(255,255,255,.6); }
