.elementor-688 .elementor-element.elementor-element-28be52c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* 
   LANDING PAGE — CIRURGIA DE FÍGADO
   Dr. José Donizeti
   Paleta: Borgonha + Ouro + Creme
    */

/* ---- 1. VARIÁVEIS CSS (DESIGN TOKENS) ---- */
:root {
  /* Cores */
  --color-primary:        #6B1A2A;
  --color-primary-dark:   #3D0F18;
  --color-primary-light:  #8B2235;
  --color-secondary:      #C4975A;
  --color-accent:         #D64045;
  --color-bg:             #FAF6F0;
  --color-bg-warm:        #F0E8E0;
  --color-dark:           #1C1C1E;
  --color-white:          #FFFFFF;
  --color-text:           #1C1C1E;
  --color-text-muted:     #6B6B6B;
  --color-border:         rgba(0,0,0,0.08);

  /* Tipografia */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Tamanhos */
  --text-xs:    12px;
  --text-sm:    14px;
  --text-base:  17px;
  --text-lg:    20px;
  --text-xl:    24px;
  --text-2xl:   32px;
  --text-3xl:   42px;
  --text-4xl:   54px;

  /* Espaçamentos */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   100px;

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 780px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 50px;

  /* Sombras */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-accent: 0 8px 32px rgba(214,64,69,0.35);
  --shadow-gold:   0 8px 32px rgba(196,151,90,0.40);

  /* Transições */
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { opacity: 0.85; }

ul, ol { list-style: none; }

/* ---- 3. TIPOGRAFIA GLOBAL ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 700;
  color: inherit;
}

h1 { font-size: clamp(28px, 4vw, var(--text-4xl)); }
h2 { font-size: clamp(24px, 3vw, var(--text-3xl)); }
h3 { font-size: clamp(18px, 2vw, var(--text-xl)); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

/* ---- 4. LAYOUT GLOBAL ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-xl) 0;
}

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

.section__title {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

.section__intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* ---- 5. BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: #C4333A;
  box-shadow: 0 12px 40px rgba(214,64,69,0.45);
}

.btn--gold {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: #B8883A;
  box-shadow: 0 12px 40px rgba(196,151,90,0.50);
}

.btn--large {
  font-size: 18px;
  padding: 20px 48px;
}

/* ---- 6. HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(61,15,24,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,151,90,0.2);
  padding: 14px 0;
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.header__logo-subtitle {
  font-size: var(--text-xs);
  color: rgba(196,151,90,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(214,64,69,0.4);
  padding: 12px 28px;
  font-size: var(--text-sm);
}

/* ---- 7. HERO ---- */
.hero--figado {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(196,151,90,0.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__anatomia {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,151,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-bottom: var(--space-lg);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(196,151,90,0.2);
  border: 1px solid rgba(196,151,90,0.4);
  color: #E8C07A;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  width: fit-content;
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,151,90,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(196,151,90,0); }
}

.hero__title {
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--color-white);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin: 0;
}

.hero__cta {
  margin-top: var(--space-xs);
  width: fit-content;
}

.hero__cta-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.hero__doctor {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__doctor-img-wrap {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  max-width: 440px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}

.hero__doctor-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.97);
}

.hero__seals {
  position: relative;
  background: rgba(0,0,0,0.25);
  padding: 20px 0;
  border-top: 1px solid rgba(196,151,90,0.15);
}

.hero__seals-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__seal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.hero__seal:hover { color: rgba(196,151,90,0.9); }

.hero__seal-divider {
  color: rgba(196,151,90,0.3);
  font-size: var(--text-lg);
}

.hero__divider {
  line-height: 0;
  margin-top: -1px;
}

.hero__divider svg {
  width: 100%;
  height: 60px;
}

/* ---- 8. SEÇÃO PROBLEMA ---- */
.section--problema {
  background: var(--color-bg);
}

.problema__subtitle {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.problema__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.problema__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.problema__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problema__card-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problema__card-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.problema__card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.problema__conclusao {
  text-align: center;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-bg-warm), var(--color-white));
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  margin: 0;
}

/* ---- 9. SEÇÃO MÉDICO (DARK) ---- */
.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark .section__title,
.section--dark h2 { color: var(--color-white); }

.medico__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.medico__foto-wrap {
  position: relative;
}

.medico__foto {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(196,151,90,0.4);
}

.medico__title {
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.medico__intro {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.80);
  margin-bottom: var(--space-md);
}

.medico__credenciais {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.medico__credencial {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.medico__credencial strong { color: var(--color-secondary); }

.medico__credencial-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.medico__quote {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-sm);
}

.medico__quote p {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
  margin-bottom: 8px;
}

.medico__quote cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-secondary);
  font-weight: 600;
}

/* ---- 10. SEÇÃO QUEM ELE TRATA ---- */
.section--trata {
  background: var(--color-bg);
}

.trata__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.trata__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-base);
  transition: transform var(--transition);
}

.trata__item:hover {
  transform: translateX(4px);
}

.trata__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trata__nota {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  font-size: var(--text-base);
}

/* ---- 11. SEÇÃO PROCESSO ---- */
.section--processo {
  background: var(--color-white);
}

.processo__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  margin-top: var(--space-md);
}

.processo__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.processo__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(107,26,42,0.3);
  flex-shrink: 0;
}

.processo__step-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.processo__step-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.processo__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  color: var(--color-secondary);
  font-size: 28px;
  font-weight: 300;
}

.processo__connector::after {
  content: "→";
}

/* ---- 12. SEÇÃO PROVA SOCIAL ---- */
.section--prova {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.prova__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.prova__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.prova__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prova__aspas {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
}

.prova__texto {
  padding-top: var(--space-sm);
}

.prova__texto p {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin: 0;
}

.prova__autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.prova__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prova__nome {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark);
  display: block;
}

.prova__contexto {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.prova__indicacao {
  margin-top: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.prova__indicacao strong { color: var(--color-dark); }

/* ---- 13. SEÇÃO FAQ ---- */
.section--faq {
  background: var(--color-bg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-md);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  transition: background var(--transition), color var(--transition);
}

.faq__question:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.faq__question[aria-expanded="true"] {
  background: var(--color-bg);
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.faq__answer p { margin: 0; }

/* ---- 14. CTA FINAL ---- */
.cta-final--figado {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-final--figado::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-final--figado::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.cta-final__title {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-final__texto {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-sm);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-final__texto strong { color: var(--color-white); }

.cta-final--figado .btn--gold {
  margin: var(--space-md) auto 0;
  display: inline-flex;
  font-size: 20px;
  padding: 22px 56px;
}

.cta-final__nota {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  margin-top: var(--space-sm);
  line-height: 1.8;
}

/* ---- 15. FOOTER ---- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__info strong,
.footer__contato strong {
  color: var(--color-white);
  font-size: var(--text-base);
  display: block;
  margin-bottom: 8px;
}

.footer__info,
.footer__contato {
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-secondary);
  opacity: 1;
}

.footer__contato a {
  color: var(--color-secondary);
}

.footer__copy {
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  margin: 0;
}

/* ---- 16. WHATSAPP FLOAT ---- */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ---- 17. RESPONSIVIDADE ---- */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

  .hero__content {
    align-items: center;
    order: 1;
  }

  .hero__doctor {
    order: 2;
    justify-content: center;
  }

  .hero__doctor-img-wrap {
    max-width: 320px;
    border-radius: var(--radius-lg);
  }

  .hero__cta { width: 100%; justify-content: center; }

  .problema__cards { grid-template-columns: 1fr; }
  .medico__grid { grid-template-columns: 1fr; }
  .medico__foto-wrap { max-width: 360px; margin: 0 auto; }
  .trata__grid { grid-template-columns: 1fr; }
  .processo__steps { grid-template-columns: 1fr; }
  .processo__connector { display: none; }
  .processo__step { align-items: flex-start; text-align: left; flex-direction: row; }
  .prova__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 60px;
    --space-lg: 40px;
    --space-md: 24px;
  }

  .header__logo-subtitle { display: none; }

  .hero--figado { padding-top: calc(70px + var(--space-md)); }

  .hero__seals-container { gap: var(--space-sm); }
  .hero__seal { font-size: 11px; }

  .section { padding: 60px 0; }

  .btn--large {
    font-size: 16px;
    padding: 18px 32px;
    width: 100%;
    max-width: 420px;
  }

  .medico__grid { gap: var(--space-md); }

  .processo__step { flex-direction: column; align-items: center; text-align: center; }
  .processo__step-num { width: 52px; height: 52px; font-size: 22px; }

  .whatsapp-float { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__badge { font-size: 11px; padding: 7px 16px; }
  .hero__title { font-size: 26px; }
  .hero__subtitle { font-size: 16px; }
  .faq__question { font-size: var(--text-sm); padding: 14px 16px; }
  .faq__answer { padding: 14px 16px; }
}

/* ---- 18. ANIMAÇÕES DE SCROLL ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge { animation: fadeInUp 0.6s ease 0.1s both; }
.hero__title { animation: fadeInUp 0.6s ease 0.2s both; }
.hero__subtitle { animation: fadeInUp 0.6s ease 0.3s both; }
.hero__cta { animation: fadeInUp 0.6s ease 0.4s both; }
.hero__cta-note { animation: fadeInUp 0.6s ease 0.5s both; }/* End custom CSS */