﻿:root {
  --brand-orange: #f97316;
  /* laranja principal */
  --brand-orange-soft: #fff7ed;
  /* fundo suave */
  --brand-orange-border: #fdba74;

  --brand-green: #22c55e;
  /* sucesso / confirmado */
  --text-dark: #1e293b;
  --border-light: #e5e7eb;

  
  --container-max-width: 1200px;
  --container-padding: clamp(16px, 4vw, 24px);

}

/* ======================================================
   BASE / RESET
====================================================== */


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
   
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  color: #333;
}

/* ======================================================
   CONTAINER GLOBAL
====================================================== */

/* =====================
   CONTAINER GLOBAL
===================== */
.container,
.header-inner,
.footer-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* ===== MENU MOBILE ===== */

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0b4da2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* Estado ativo */
.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ======================================================
   SCROLL OFFSET (HEADER FIXO)
====================================================== */

#sobre,
#como-funciona,
#solicitar {
  scroll-margin-top: 96px;

}


/* ======================================================
   HEADER
====================================================== */

.header {
  position: relative;
  top: 0;
  z-index: 1000;
  background: #f4f8fc;
  border-bottom: 1px solid #e5eaf0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;

  height: 76px;
  padding-inline: var(--container-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-area:visited,
.logo-area:hover {
  text-decoration: none;
}

.logo-area img {
  height: clamp(56px, 3.5vw, 60px);
   margin-left: -62px;

}

.logo-area span {
 font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 700;
  color: #083a5d;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* MENU */

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #0a3d62;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #f59e0b;
}

.nav a:hover::after {
  width: 100%;
}

/* ======================================================
   HERO – BEM (LIMPO)
====================================================== */

.hero {
  padding: 60px 0;
   padding-bottom: clamp(48px, 6vw, 72px);
  background:
    radial-gradient(
      circle at 15% 30%,
      var(--brand-orange-soft),
      transparent 45%
    ),
    #f9fafb;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

/* Conteúdo */
.hero__content {
  animation: fadeUp 0.8s ease forwards;
}

.hero__title {
  font-size: clamp(36px, 5.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

/* Linha 1 – autoridade institucional */
.hero__title-line:first-child {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
}

/* Linha 2 – destaque premium (marca) */
.hero__title-line:last-child {
  display: block;
  color: var(--brand-orange);
  font-weight: 800;
  position: relative;
}

/* Detalhe premium sutil (linha decorativa) */
.hero__title-line:last-child::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(
    90deg,
    var(--brand-orange),
    var(--brand-orange-border)
  );
  border-radius: 999px;
}

.hero__title span {
  display: block;
}

.hero__text {
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;

  color: #334155; /* cinza institucional */
  font-weight: 400;

  margin-bottom: 32px;

  letter-spacing: 0.1px;
   margin-bottom: 36px; /* cria respiro elegante antes do CTA */
}
/* Destaque sem gritar */
.hero__text strong {
  font-weight: 600;
  color: var(--text-dark);
}
/* Destaque sem gritar */
.hero__text strong {
  font-weight: 600;
  color: var(--text-dark);
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 32px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.hero__features li {
  font-size: 14px;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 🔥 CHAVE */
}
.hero__cta {

  margin-inline-start: clamp(0px, 6vw, 100px);
  background: transparent;
  color: var(--text-dark);
  align-self: flex-start; /* ajuste fino */

  padding: 10px 0;
  border-radius: 0;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;

  border: none;
  border-bottom: 2px solid var(--brand-orange);

  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease;
   
}

@media (max-width: 1024px) {
  .hero__cta {
    align-self: center;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.hero__cta:hover {
  background: #020617;
  transform: translateY(-1px);
   box-shadow: 0 10px 26px rgba(249, 115, 22, 0.35);
}

/* Remove efeitos exagerados herdados */
.hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}
/* Imagem */
.hero__media {
  animation: fadeRight 0.9s ease forwards;
}

.hero__image {
  width: 100%;
  max-width: 700px;
  display: block;
}

/* Responsivo */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__features {
    justify-content: center;
  }
}


/* BOTÃO HERO */

.hero-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  margin-left: 100px;
  /* mantido por compatibilidade visual */
}

/* IMAGEM HERO */

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 700px;
}

/* =========================
   ANIMAÇÕES HERO (CSS ONLY)
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* ======================================================
   BOTÕES GLOBAIS
====================================================== */

button,
.btn-primary {
  background: linear-gradient(135deg, #fb923c, var(--brand-orange));
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #d1d5db;
}

/* ======================================================
   SOBRE
====================================================== */

.about-cards {
  padding: 80px 0 90px;
}

.about-title {
  text-align: center;
  font-size: 40px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.about-subtitle {
  text-align: center;
  font-size: 18px;
  color: #444;
  max-width: 900px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.about-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.about-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 999px;
  padding: 18px 28px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ======================================================
   COMO FUNCIONA – CORREÇÃO DE LAYOUT
   (mantém comportamento original)
====================================================== */

.how-it-works {
  padding: 40px 20px 80px;
  background: #f9fbfd;
  text-align: center;
}

.how-title {
  font-size: 36px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 10px;
}

.how-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.how-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.how-step {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.how-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 18px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* DIVISORES */

.section-divider {
  margin: 48px 0;
}

.divider-line {
  display: block;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      rgba(245, 158, 11, 0.6),
      rgba(245, 158, 11, 1),
      rgba(245, 158, 11, 0.6),
      transparent);
}

/* PROCESSO FINAL */

.process-highlight {
  text-align: center;
  padding: 24px 20px;
  margin: 32px auto;
  max-width: 1100px;
}

.process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.process-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: #083a5d;
}


/* ======================================================
   FORMULÁRIO
====================================================== */

.form-wrapper {
  max-width: 900px;
  background: #fff;
  margin: 60px auto;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  font-size: 14px;
  opacity: 0.4;
}

.step.active {
  opacity: 1;
  font-weight: 600;
  color: #2563eb;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* GRID DADOS */

.grid-dados {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* INPUTS */

label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

textarea {
  height: 90px;
  resize: none;
}

/* ======================================================
   AGENDAMENTO
====================================================== */

.agendamento-layout,
.pix-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 32px;
  margin-top: 24px;
}

p,
h1,
h2,
h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  button,
  .btn-primary {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .agendamento-layout,
  .pix-layout {
    grid-template-columns: 1fr;
  }
}
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: 12px;
}

.horario-btn {
  padding: 12px 0;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.horario-btn.active {
  background: #2563eb;
  color: #fff;
}

/* ======================================================
   CONFIRMAÇÃO
====================================================== */

.confirmacao-step {
  max-width: 720px;
  margin: 0 auto;
}

.confirm-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

/* ======================================================
   RESPONSIVO – SEM QUEBRAR LAYOUT
====================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btn-wrapper {
    justify-content: center;
    margin-left: 0;
  }

  .agendamento-layout {
    grid-template-columns: 1fr;
  }

  .horarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 12px;
  }

  .grid-dados {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {

  button,
  .btn-primary {
    width: 100%;
  }

  .horarios-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .hero-visual img {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }


  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .menu-open .nav {
    display: flex;
  }
}

/* ======================================================
   HERO – BEM (COMPATÍVEL)
   (não remove estilos antigos)
====================================================== */


.hero__content {
  animation: fadeUp 0.8s ease forwards;
}

.hero__title {
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1.2;
  color: #f59e0b;
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
}

.hero__text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: #334155;
  margin-bottom: 24px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 32px;
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}

.hero__features li {
  padding: 6px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hero__media {
  animation: fadeRight 0.9s ease forwards;
}

.hero__image {
  width: 100%;
  max-width: 700px;
}

/* ======================================================
   ABOUT – BEM (ADITIVO, SEGURO)
====================================================== */

.about {
  padding: 80px 0 90px;
}

.about__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.about__title {
  font-size: 40px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.about__subtitle {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.about__card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about__icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.about__card-title {
  font-size: 20px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.about__card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.about__highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 999px;
  padding: 18px 28px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}


/* ======================================================
   COMO FUNCIONA – BEM (ADITIVO / SEGURO)
====================================================== */

.how {
  padding: 40px 20px 80px;
  background: #f9fbfd;
  text-align: center;
}

/* Header */
.how__header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.how__title {
  font-size: 36px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 10px;
}

.how__subtitle {
  font-size: 18px;
  color: #444;
}

/* Cards */
.how__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.how__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.how__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

/* Step */
.how__step {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  display: inline-block;
  margin-bottom: 6px;
}

/* Icon */
.how__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

/* Textos */
.how__card-title {
  font-size: 18px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.how__card-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Divider + Highlight */
.how__divider {
  margin: 48px 0;
}

.how__highlight {
  text-align: center;
  padding: 24px 20px;
  margin: 32px auto;
  max-width: 1100px;
}

.how__highlight-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.how__highlight-title h3 {
  font-size: 26px;
  font-weight: 700;
  color: #083a5d;
}

/* ======================================================
   SERVICE – STEP 1 (FIX DEFINITIVO / ISOLADO)
====================================================== */

.service {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

/* Corrige legend quebrado */
.service__legend {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Texto auxiliar */
.service__hint {
  font-size: 14px;
  color: #475569;
  margin-bottom: 24px;
}

/* Grid premium */
.service__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.service__card {
  position: relative;
  cursor: pointer;
}

/* 🔥 FIX CRÍTICO – neutraliza CSS global de input */
.service__card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* Conteúdo visual */
.service__content {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;
  background: #fff;
  transition: all 0.25s ease;
  position: relative;
  /* 🔥 FUNDAMENTAL */
}

/* Header */
.service__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.service__title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.service__price {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.service__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

/* Hover */
.service__card:hover .service__content {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, .15);
  transform: translateY(-2px);
}

/* Selecionado */
.service__card input:checked+.service__content {
  border-color: #2563eb;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, .25),
    0 16px 40px rgba(37, 99, 235, .3);
}

/* Badge 24h */
.service__badge {
  position: absolute;
  top: -12px;
  right: 18px;

  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;

  z-index: 3;
  /* 🔥 garante que fica acima do card */
}

.service__card:hover .service__badge {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Ações */
.actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}


/*FIM Selecionar o Beneficio*/

/* ======================================================
   SERVICE – SELEÇÃO PREMIUM (ANIMAÇÃO)
====================================================== */

/* Transição base mais refinada */
.service__content {
  transition:
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Barra lateral animada */
.service__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg,
      #f59e0b,
      #f97316);
  transition: width 0.35s ease;
}

/* Hover sutil */
.service__card:hover .service__content {
  transform: translateY(-3px);
}

/* Estado selecionado */
.service__card input:checked+.service__content {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  transform: scale(1.015);
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.25),
    0 18px 45px rgba(245, 158, 11, 0.35);
}

/* Ativa barra lateral */
.service__card input:checked+.service__content::before {
  width: 6px;
}

/* Animação pulse suave */
.service__card input:checked+.service__content {
  animation: premiumPulse 0.45s ease-out;
}

/* Keyframes */
@keyframes premiumPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1.015);
  }
}

/* ======================================================
   SERVICE – CHECK ICON (SELEÇÃO PREMIUM)
====================================================== */

/* Container precisa ser referência */
.service__content {
  position: relative;
}

/* Ícone ✓ */
.service__content::after {
  position: absolute;
  bottom: 14px;
  right: 14px;

  width: 28px;
  height: 28px;
  border-radius: 50%;

  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 700;

  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Mostra quando selecionado */
.service__card input:checked+.service__content::after {
  opacity: 1;
  transform: scale(1);
}

/* ======================================================
   SERVICE – TEXTO "SELECIONADO"
====================================================== */

.service__selected-label {
  position: absolute;
  bottom: 48px;
  /* 🔥 acima do check */
  right: 18px;

  font-size: 12px;
  font-weight: 600;
  color: #f59e0b;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Exibe quando selecionado */
.service__card input:checked+.service__content .service__selected-label {
  opacity: 1;
  transform: translateY(0);
}

/* Selecionado */
.service__card input:checked~.service__content {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.25),
    0 18px 45px rgba(245, 158, 11, 0.35);
  transform: scale(1.015);
}

/* Barra lateral */
.service__card input:checked~.service__content::before {
  width: 6px;
}

/* Check */
.service__card input:checked~.service__content::after {
  opacity: 1;
  transform: scale(1);
}

.service__card {
  position: relative;
}

/* Texto Selecionado */
.service__card input:checked~.service__content .service__selected-label {
  opacity: 1;
  transform: translateY(0);
}

.actions--center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-next:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ==============================
   PROGRESS BAR (PREMIUM)
============================== */

.progress {
  margin-bottom: 40px;
}

.progress__track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Labels */
.progress__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.progress__step {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.progress__step.active {
  color: #f59e0b;
  font-weight: 600;
}

/* =========================
   BOTÃO DESABILITADO
========================= */
.btn-primary:disabled {
  background: #e5e7eb;
  /* cinza neutro */
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

/* remove hover quando desabilitado */
.btn-primary:disabled:hover {
  background: #e5e7eb;
}

.btn--pulse {
  animation: pulse 0.4s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ================================
   STEP 2 – DADOS + DOCUMENTOS
================================ */

/* Títulos */
.form-step h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 8px;
  color: #0f172a;
}

.form-description {
  font-size: 15px;
  color: #475569;
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Campos */
.field label {
  font-weight: 600;
  color: #0f172a;
}

.field input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ================================
   UPLOAD CARD – PREMIUM
================================ */

.upload-card {
  display: flex;
  align-items: center;
  gap: 20px;

  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 2px dashed #cbd5e1;
  border-radius: 16px;

  padding: 22px 24px;
  margin-bottom: 24px;

  transition: all 0.25s ease;
}

.upload-card:hover {
  border-color: #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

/* Ícone */
.upload-icon {
  font-size: 32px;
}

/* Texto */
.upload-content {
  flex: 1;
}

.upload-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.upload-content span {
  font-size: 14px;
  color: #64748b;
}

/* Botão upload */
.upload-btn {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.upload-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* ================================
   LISTA DE ARQUIVOS
================================ */

.file-list {
  list-style: none;
  margin-bottom: 32px;
}

.file-list li {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}

/* ================================
   AÇÕES
================================ */

.actions.space-between {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.actions .btn-secondary {
  background: #e5e7eb;
}

.actions .btn-secondary:hover {
  background: #d1d5db;
}


.form-divider {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      #e5e7eb,
      transparent);
}

/* ================================
   PRAZO DO BENEFÍCIO – PREMIUM
================================ */

.benefit-term {
  margin: 40px 0;
}

.benefit-term__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.benefit-term__hint {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* Grid de opções */
.benefit-term__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

/* Card */
.benefit-term__option {
  position: relative;
  cursor: pointer;
}

.benefit-term__option input {
  position: absolute;
  opacity: 0;
}

.benefit-term__option span {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;

  font-weight: 600;
  font-size: 14px;
  color: #0f172a;

  transition: all 0.25s ease;
}

/* Hover */
.benefit-term__option:hover span {
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Selecionado */
.benefit-term__option input:checked+span {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-soft);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

/* Campo customizado */
.benefit-term__custom {
  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;

 transition:
  max-height 0.25s ease,
  opacity 0.2s ease,
  transform 0.25s ease;
}

.benefit-term__custom.active {
  max-height: 200px; /* suficiente pro input */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.benefit-term__custom label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.benefit-term__custom input {
  width: 100%;
}

/* ===== VALIDAÇÃO INLINE ===== */
.field input.error {
  border-color: #ef4444;
  background: #fff5f5;
}

.field input.valid {
  border-color: var(--brand-orange);
  background: var(--brand-orange-soft);
}

.field small.error-text {
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

/* ===== ANIMAÇÃO DE STEPS ===== */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== Feedback visual dos inputs ===== */
.field input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input.is-valid {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

input:not(.is-valid):not(.is-invalid) {
  background-color: #fff;
  border-color: #d1d5db;
}

.field input.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

/* Mensagem de erro */
.error-message {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
}

.field .error-message.active {
  display: block;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.file-name {
  font-weight: 500;
  color: #1f2937;
}

.file-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: #ef4444;
  cursor: pointer;
}

.error-message {
  color: #dc2626;
  font-size: 14px;
}

input.is-valid {
  border-color: #22c55e;
  background-color: #f0fdf4;
}

input.is-invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.error-message {
  display: none;
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 6px;
}

.error-message.active {
  display: block;
}

/* =========================
   HORÁRIOS – HEALTH TECH UI
========================= */

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.horario-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.horario-btn:hover {
  background: #1e40af;
}

.horario-btn.selected {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
}

.periodo-btn.active {
  background: #2563eb;
  color: #fff;
}

input[type="date"] {
  padding: 14px;
  font-size: 16px;
}

.upload-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 2px dashed #c7d2fe;
  border-radius: 14px;
  background: #f8fafc;
}

.upload-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #475569;
}

.upload-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s;
}

.upload-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Lista de arquivos */
.file-list {
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f1f5f9;
  margin-bottom: 8px;
  font-size: 14px;
}

.file-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 16px;
  cursor: pointer;
}

/* ===============================
   AGENDA – HORÁRIOS (CLEAN PREMIUM)
================================ */

#horariosWrapper {
  margin-top: 16px;
}

#horariosGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* Horário padrão */
.horario-btn {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover laranja suave */
.horario-btn:hover {
  background: var(--brand-orange-soft);
  border-color: var(--brand-orange-border);
  color: var(--brand-orange);
}

/* Selecionado (igual primeira página) */
.horario-btn.selected {
  background: linear-gradient(135deg, #fb923c, var(--brand-orange));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
  transform: scale(1.05);
}

/* Texto de fallback */
#horariosGrid p {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 480px) {
  #horariosGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards selecionados / opções ativas */
.option-card.active,
.radio-card.active {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

/* Botões ativos */
button.active {
  background: var(--brand-orange);
  color: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
  outline: none;
}

/* ===========================
   PIX – HIGH TECH PREMIUM
=========================== */

.pix-container {
  margin-top: 32px;
  text-align: center;
}

.pix-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111827;
}

/* Card principal */
.pix-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95),
      rgba(248, 250, 252, 0.9));

  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Wrapper QR */
.pix-qr-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.1);
}

#pixQr {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: auto;
}

/* Infos */
.pix-info {
  text-align: left;
}

.pix-info label {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

#pixCode {
  width: 100%;
  min-height: 56px;
  resize: none;

  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;

  background: #f9fafb;
  font-size: 14px;
  color: #111827;
}

/* Botão premium */
#copiarPixBtn {
  margin-top: 16px;
  padding: 14px 22px;

  border-radius: 14px;
  border: none;

  background: linear-gradient(135deg,
      #ff8a00,
      #ff6a00);

  color: #fff;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow:
    0 8px 20px rgba(255, 122, 0, 0.35);
}

#copiarPixBtn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(255, 122, 0, 0.45);
}

#copiarPixBtn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(255, 122, 0, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .pix-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pix-info {
    text-align: center;
  }
}

.pix-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a00, #ff6a00);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: #6b7280;
  /* cinza premium */
  font-size: 14px;
  cursor: pointer;
}

.btn-link:hover {
  color: #ff8a00;
  text-decoration: underline;
}

.actions--payment {
  margin-top: 40px;
  align-items: center;
}

.actions--payment .btn-secondary {
  min-width: 120px;
}

.actions--payment .btn-primary {
  min-width: 200px;
}

.pix-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.pix-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pix-voltar {
  margin-top: auto;
  width: 100%;
}

.pix-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* RESUMO */
.pix-resumo {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.pix-resumo h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.pix-resumo ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.pix-resumo li {
  margin-bottom: 4px;
}

/* Alinha o botão Voltar com o botão Copiar PIX */
.pix-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Espaçamento controlado */
.pix-voltar {
  margin-top: 60x;
  /* ajuste fino aqui */
}

/* ===============================
 CONFIRMAÇÃO – UX PREMIUM
================================ */

.confirmacao-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}

.confirmacao-header {
  text-align: center;
  margin-bottom: 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmacao-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.confirmacao-header .sub {
  color: #6b7280;
}

.confirmacao-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
}

.confirmacao-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.confirmacao-card p {
  margin: 4px 0;
}

.confirmacao-actions {
  margin: 24px 0;
  text-align: center;
}

.confirmacao-actions .btn-primary {
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 10px;
}

.confirmacao-info {
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.success-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
}

.success-check svg {
  width: 100%;
  height: 100%;
}

.check-circle {
  stroke: #22c55e;
  stroke-width: 4;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: draw-circle 0.6s ease-out forwards;
}

.check-mark {
  stroke: #22c55e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw-check 0.4s 0.6s ease-out forwards;
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

/* ===== CONFIRMAÇÃO PREMIUM ===== */

.confirmacao-header.premium {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

/* Check menor, elegante */
.check-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.check-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Texto premium */
.confirmacao-texto h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.confirmacao-texto p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #64748b;
  font-family: Inter, system-ui, sans-serif;
}

#solicitar .how-header {
  text-align: center;
  margin-bottom: 48px;
}

#solicitar .how-title {
  margin: 0 auto;
}

#solicitar .form-wrapper {
  text-align: left;
}

/* =====================
   FOOTER CLEAN PREMIUM
===================== */
.footer {
  background: #f4f8fc;
  color: #0a3d62;
  padding: 48px 24px 0;
  border-top: 1px solid #e5eaf0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
}

/* BRAND */
.footer-brand p {
  margin: 0;
  max-width: 420px;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #475569;
  letter-spacing: 0.15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  display: block;
  margin-left: -6px; /* correção óptica */
}

.footer-logo span {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0a3d62;
}
/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a3d62;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #475569;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f59e0b;
}

/* CONTATO */
.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #475569;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 32px;
  padding: 14px 16px;
  background: #eef2f6;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid #e5eaf0;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

button:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.prazo-btn.active {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.benefit-term__option input:checked+span {
  border-color: #ff7a00;
  color: #ff7a00;
  background: #fff7ed;
}

.lgpd-box {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.lgpd-label {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.lgpd-label input {
  margin-top: 3px;
}

input[name="prazo"]:checked+span {
  border-color: #f97316;
  background: #fff7ed;
}

/* ===== DOCUMENTOS MÉDICOS ===== */

.docs-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Upload card */
.upload-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1.5px dashed #c7d2fe;
  border-radius: 14px;
  background: #f8fafc;
}

.upload-info strong {
  display: block;
  font-size: 15px;
  color: #1e293b;
}

.upload-info span {
  font-size: 13px;
  color: #64748b;
}

/* Botão upload */
.btn-upload {
  padding: 10px 18px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-upload:hover {
  background: #1d4ed8;
}

/* LGPD card */
.lgpd-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
/* Label LGPD */
.lgpd-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Checkbox nativo escondido */
.lgpd-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff8c00; /* cor do botão Próximo */
  flex-shrink: 0;
}

/* Checkbox custom */
.custom-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #cbd5e1;
  background: #fff;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

/* Checked */
.lgpd-label input:checked+.custom-checkbox {
  background: #2563eb;
  border-color: #2563eb;
}

.lgpd-label input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Links LGPD */
.lgpd-text {
  font-size: 0.95rem;
  color: #374151;
}

.lgpd-text a:hover {
  color: #1d4ed8;
}

.lgpd-text a {
  color: #2563eb;
  text-decoration: underline;
}

/* Botão desabilitado – visual correto */
.btn-disabled,
button:disabled {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  cursor: not-allowed;
  box-shadow: none;
  border: none;
}

/* Botão ativo */
.btn-primary:not(:disabled) {
  background: #f97316;
  cursor: pointer;
}

/* ===============================
   BOTÃO DESABILITADO – FORÇA TOTAL
=============================== */
button:disabled,
button[disabled],
.btn-primary:disabled,
.btn-primary[disabled],
.btn-disabled {
  background-color: #e5e7eb !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}

/* =========================================
   FORÇA ABSOLUTA – BOTÃO DESABILITADO
========================================= */
button.btn-primary:disabled,
button.btn-primary[disabled],
.form-step.active button.btn-primary:disabled {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none;
}

/* =====================
   MODAL – BASE
====================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: modalFade 0.25s ease;
}

@keyframes modalFade {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =====================
   MODAL – HEADER
====================== */
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* =====================
   MODAL – CONTENT
====================== */
.modal-content {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.modal-content p {
  margin-bottom: 16px;
}

/* =====================
   MODAL – FOOTER
====================== */
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e6e6e6;
  text-align: right;
}

.legal-content {
  font-family: Inter, sans-serif;
  line-height: 1.7;
  color: #1f2937;
}

.legal-content h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.legal-content h2 {
  margin-top: 24px;
  font-size: 1.1rem;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content strong {
  font-weight: 600;
}

.termos-lista {
  margin: 12px 0 20px 20px;
  padding-left: 16px;
  color: #333;
}

.termos-lista li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 32px;
  margin-bottom: 36px;
  margin-top: 20px;
}

/* Pill refinado */
.benefit-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;

  color: #334155;
  background: transparent;

  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.service__badge--info {
  background: #64748b;
}
/* =====================================
   SERVICE – OUTRO BENEFÍCIO (DESATIVADO)
===================================== */

.service__card--disabled {
  pointer-events: none;
  opacity: 0.6;
}

.service__card--disabled .service__content {
  background: #f9fafb;
  border-style: dashed;
  cursor: default;
}
/* Check discreto */
.benefit-pill i {
  font-style: normal;
  font-size: 14px;
  color: var(--brand-green);
}

@media (max-width: 480px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-pill {
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   FIX DEFINITIVO – HERO 1024x768
========================================= */
@media (max-width: 1024px) and (max-height: 800px) {

  .hero {
    padding: 48px 0 64px;
    min-height: auto; 
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .hero__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .benefits {
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 20px;
  }

  .hero__cta {
    align-self: center;
    margin-left: 0;
     box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
  }

  /* 🔥 CONTROLE REAL DA IMAGEM */
  .hero__media {
    max-height: 220px;
    overflow: hidden;
  }

  .hero__image {
    max-height: 220px;
    width: auto;
    margin: 0 auto;
  }
}
/* =========================================
   HERO ADAPTATIVO POR ALTURA (PROFISSIONAL)
========================================= */
@media (max-height: 800px) {

  .hero {
    padding: 32px 0;
  }

  .hero__media {
    margin-top: 12px;
  }

  .hero__image {
    max-height: 180px;
    opacity: 0.9;
  }
}


.footer {
  padding-block: 40px 28px;
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-links,
.footer-contact {
  display: none;
}
.footer-brand {
  align-items: center;
  text-align: center;
}
.footer-brand p {
  font-size: 14px;
  max-width: 480px;
  opacity: 0.7;
}
.footer-instagram {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.footer-instagram a {
  color: #0a3d62;
  text-decoration: none;
}

.footer-instagram a:hover {
  color: #f97316;
}
.footer-bottom {
  margin-top: 16px;
  padding: 10px 0;
  font-size: 13px;
  color: #94a3b8;
}

.about-card-text {
  text-align: center;
  line-height: 1.6;
  max-width: 85%;
  margin: 0 auto;
  color: #555;
}

/* =====================
   OVERLAY PROCESSANDO (LOCAL)
===================== */
.pix-layout {
  position: relative;
}

#loading-overlay {
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 10;
}

/* Caixa central */
#loading-overlay .loading-box {
  text-align: center;
  max-width: 360px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Spinner */
#loading-overlay .spinner {
  width: 48px;
  height: 48px;
  border: 6px solid #e0e0e0;
  border-top-color: #0b4da2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#btnGerarPix {
  width: 100%;
  margin-top: 20px;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  border: none;

  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #ffffff;

  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
  transition: all 0.25s ease;
}

#btnGerarPix:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.45);
}

@keyframes pulsePix {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 122, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

#btnGerarPix {
  animation: pulsePix 2.5s infinite;
}