.elementor-706 .elementor-element.elementor-element-03ee7bf{--display:flex;}.elementor-706 .elementor-element.elementor-element-f75ebf2{--display:flex;}.elementor-706 .elementor-element.elementor-element-9866d0c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//*
   LANDING PAGE — CIRURGIA DE PÂNCREAS
   Dr. José Donizeti
   Paleta: Azul Noturno + Âmbar Cirúrgico
*/

/* ================================================
   1. VARIÁVEIS CSS (DESIGN TOKENS)
   ================================================ */
:root {
  /* Cores */
  --color-primary:        #0D2B4E;
  --color-primary-dark:   #071A30;
  --color-primary-light:  #1A4A7A;
  --color-secondary:      #2E6DA4;
  --color-accent:         #E8A030;
  --color-accent-dark:    #D48C20;
  --color-bg:             #F0F5FA;
  --color-bg-section:     #E8EFF8;
  --color-dark:           #1A1A2E;
  --color-white:          #FFFFFF;
  --color-text:           #1A1A2E;
  --color-text-muted:     #5A6A7A;
  --color-border:         rgba(0, 0, 0, 0.08);

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

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

  /* 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.16);
  --shadow-amber: 0 8px 32px rgba(232, 160, 48, 0.40);
  --shadow-blue:  0 8px 32px rgba(46, 109, 164, 0.30);

  /* 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;
  -moz-osx-font-smoothing: grayscale;
}

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; }

/* ================================================
   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;
  line-height: 1.7;
}

/* ================================================
   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;
  line-height: 1;
}

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

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

.btn--amber:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 12px 40px rgba(232, 160, 48, 0.55);
}

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

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

.btn--accent-amber:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* ================================================
   6. HEADER FIXO
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 26, 48, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 160, 48, 0.15);
  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(232, 160, 48, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================
   7. HERO
   ================================================ */
.hero--pancreas {
  position: relative;
  background: var(--color-primary);
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Grid geométrico de fundo */
.hero__geo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 109, 164, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 109, 164, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orbe de luz no canto superior direito */
.hero__light-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(46, 109, 164, 0.28) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

/* Container principal do hero */
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}

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

/* Badge de credencial */
.hero__badge--amber {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(232, 160, 48, 0.15);
  border: 1px solid rgba(232, 160, 48, 0.35);
  color: #F0B840;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  width: fit-content;
  letter-spacing: 0.02em;
}

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

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  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.50);
  margin: 0;
}

/* Foto do médico */
.hero__doctor {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero__doctor-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.hero__doctor-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(232, 160, 48, 0.25);
  border-radius: var(--radius-md);
  z-index: 0;
  pointer-events: none;
}

.hero__doctor-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Selos de autoridade */
.hero__seals {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.30);
  padding: 18px 0;
  border-top: 1px solid rgba(232, 160, 48, 0.12);
}

.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.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  transition: color var(--transition);
}

.hero__seal:hover { color: rgba(232, 160, 48, 0.9); }

.hero__seal-divider {
  color: rgba(232, 160, 48, 0.30);
  font-size: var(--text-lg);
  line-height: 1;
}

/* Divisor SVG geométrico */
.hero__divider {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}

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

/* ================================================
   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-top: 4px solid transparent;
  background-image: linear-gradient(var(--color-white), var(--color-white)),
                    linear-gradient(90deg, var(--color-primary), var(--color-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--color-primary), var(--color-accent)) 1;
  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.65;
}

.problema__conclusao {
  text-align: center;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

/* ================================================
   9. SEÇÃO MÉDICO (FUNDO AZUL ESCURO)
   ================================================ */
.section--dark-blue {
  background: var(--color-primary);
  color: var(--color-white);
}

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

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

.medico__foto-wrap {
  position: relative;
}

.medico__foto {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Moldura geométrica na foto */
.medico__foto--geo {
  border: 3px solid rgba(232, 160, 48, 0.35);
  border-radius: var(--radius-md);
}

.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);
  line-height: 1.65;
}

.medico__credenciais {
  display: flex;
  flex-direction: column;
  gap: 14px;
  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-accent);
}

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

.medico__quote {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--color-accent);
  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-accent);
  font-weight: 600;
}

.medico__quote--center {
  text-align: center;
  border-left: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  max-width: 680px;
  margin: var(--space-lg) auto 0;
}

/* ================================================
   10. SEÇÃO CONDIÇÕES TRATADAS
   ================================================ */
.section--trata {
  background: var(--color-white);
}

.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-bg);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.trata__item:hover {
  transform: translateX(4px);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

/* ================================================
   11. SEÇÃO PROCESSO
   ================================================ */
.section--light-blue {
  background: var(--color-bg);
}

.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(13, 43, 78, 0.35);
  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.65;
}

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

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

/* ================================================
   12. SEÇÃO PROVA SOCIAL
   ================================================ */
.section--prova {
  background: var(--color-white);
}

.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);
}

/* Variante com borda âmbar */
.prova__card--amber-border {
  border-left: 4px solid var(--color-accent);
}

.prova__aspas {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.20;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
  user-select: 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.75;
  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);
  display: block;
}

/* ================================================
   13. SEÇÃO FAQ
   ================================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  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-accent);
}

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

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

.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.75;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.faq__answer p { margin: 0; }

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

/* Ondas decorativas */
.cta-final--pancreas::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-final--pancreas::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(232, 160, 48, 0.06);
  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.75;
}

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

.cta-final--pancreas .btn--amber {
  margin: var(--space-md) auto 0;
  display: inline-flex;
  font-size: 20px;
  padding: 22px 56px;
  position: relative;
  z-index: 1;
}

/* Borda animada no CTA */
.cta-final--pancreas .btn--amber::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(232, 160, 48, 0.50);
  animation: cta-border-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-border-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.06); }
}

.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-accent);
  opacity: 1;
}

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

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

/* ================================================
   16. BOTÃO FLUTUANTE WHATSAPP
   ================================================ */
.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);
  text-decoration: none;
}

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

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

.hero__badge--amber { 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; }

/* ================================================
   18. RESPONSIVIDADE
   ================================================ */

/* Tablet grande e laptops pequenos */
@media (max-width: 1024px) {
  .hero--pancreas {
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

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

  .hero__badge--amber {
    margin: 0 auto;
  }

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

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

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

  .problema__cards {
    grid-template-columns: 1fr;
  }

  .medico__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .medico__foto-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .trata__grid {
    grid-template-columns: 1fr;
  }

  .processo__steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .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);
  }
}

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

  .header__logo-subtitle {
    display: none;
  }

  .hero--pancreas {
    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;
  }

  .processo__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .processo__step-num {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .cta-final--pancreas .btn--amber {
    font-size: 17px;
    padding: 18px 36px;
    width: 100%;
    max-width: 420px;
  }

  .whatsapp-float {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__badge--amber {
    font-size: 11px;
    padding: 7px 14px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section__title {
    font-size: 24px;
  }

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

  .medico__credencial {
    font-size: var(--text-sm);
  }

  .faq__question {
    font-size: var(--text-sm);
    padding: 14px 16px;
  }

  .faq__answer {
    padding: 14px 16px;
    font-size: var(--text-sm);
  }

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

  .footer__grid {
    gap: var(--space-sm);
  }
}/* End custom CSS */