/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --primary: #165773;
  --secondary: #2B737A;
  --bg: #F4F8F8;
  --bg-alt: #EAF3F4;
  --text: #165773;
  --text-muted: #456B77;
  --border: #B0CBD4;
  --btn-bg: #B84E3A;
  --btn-hover: #9F3E2D;
  --btn-text: #FFFFFF;
  --btn-radius: 12px;
  --btn-padding: 14px 24px;
  --btn-shadow: 0 8px 20px rgba(22, 87, 115, 0.18);
  --container: 1200px;
  --section-gap: 96px;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(22, 87, 115, 0.10);
  --shadow-lg: 0 8px 40px rgba(22, 87, 115, 0.16);
}

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

html { scroll-behavior: smooth; }

/* ===========================
   TEXTURES (SVG inline, zero external requests)
=========================== */

/* Grain — usado nas seções claras */
:root {
  --texture-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");

  /* Dot grid — seções alt */
  --texture-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23165773' fill-opacity='0.06'/%3E%3C/svg%3E");

  /* Diagonal lines — seção escura */
  --texture-lines: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M0 20 L20 0' stroke='%23ffffff' stroke-width='0.6' stroke-opacity='0.04'/%3E%3C/svg%3E");
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; margin-top: 5px; }
h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; line-height: 0.5; }

p { color: var(--text-muted); font-weight: 400; }
a { color: white; text-decoration: none; font-weight: 700; }
strong { color: var(--primary); font-weight: 700; }
em { font-style: normal; color: var(--secondary); }

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-main); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header { margin-bottom: 30px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: 15px; font-size: 30px; font-size: clamp(1.2rem, 2.5vw, 1.9rem);}

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9F3E2D;
  background: rgba(231, 111, 87, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(231, 111, 87, 0.3);
}

.section-label.light {
  color: #FFFFFF;
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

.section-desc {
  max-width: 1000px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--btn-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(231, 111, 87, 0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 11px 22px;
  border-radius: var(--btn-radius);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: var(--bg) var(--texture-grain);
  background-repeat: repeat;
  padding: 240px 130px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(93, 167, 171, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-bottom: 0px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: #9F3E2D;
  background: rgba(231, 111, 87, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid #9F3E2D;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #9F3E2D;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

.hero-text {
    width: 750px;
}

.hero-text h1 {
  margin-bottom: 20px;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  width: 80%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { color: var(--secondary); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-card {
  background: none;
  border-radius: 40px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  border: none;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-width: 600px;
  width: 100%;
}

.illustration-blob {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(93, 167, 171, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.illustration-main { position: relative; z-index: 1; }

.hero-card-floating {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(22, 87, 115, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.card-2 { top: 0px; right: -30px; animation-delay: 1s; }
.card-3 { bottom: 60px; right: -20px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon { font-size: 1.4rem; }
.floating-text { display: flex; flex-direction: column; }
.floating-text strong { font-family: var(--font-main); font-size: 0.82rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.floating-text span { font-size: 0.73rem; color: var(--text-muted); }

.hero-wave {
  width: 100%;
  margin-top: auto;
}

.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===========================
   SERVICES
=========================== */
.services {
  background-color: var(--bg-alt);
  background-image: var(--texture-dots);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--secondary);
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card-wide {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-card-wide .service-icon {
  margin-bottom: 0;
  font-size: 2.4rem;
  flex-shrink: 0;
}

/* ===========================
   AREAS
=========================== */
.areas {
  background-color: var(--bg);
  background-image: var(--texture-grain);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.area-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
}

.area-icon-wrap {
  width: 300px;
  height: 300px;
  border-radius: 14px;
  background: rgb(255, 255, 255, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: none;
}

.area-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.area-card p { margin-bottom: 14px; font-size: 0.9rem; }

.area-card ul { display: flex; flex-direction: column; gap: 8px; }

.area-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.area-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.85rem;
}

.areas-footer {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}

.areas-footer-icon { font-size: 1.5rem; }
.areas-footer p { font-size: 0.95rem; margin: 0; }

/* ===========================
   NEUROPSICOLÓGICA
=========================== */
.neuro {
  background-color: var(--primary);
  background-image: var(--texture-lines);
  background-repeat: repeat;
  padding: 90px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.neuro::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(93, 167, 171, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.neuro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.neuro-text h2 {
  color: white;
  margin: 12px 0 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
}

.neuro-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.neuro-text strong { color: white; }

.neuro-insight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0 32px;
  border: 1px solid rgba(255,255,255,0.15);
}

.neuro-insight span { font-size: 1.3rem; flex-shrink: 0; }
.neuro-insight p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.92rem; font-weight:500; }

/* Indicators */
.neuro-indicators {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
}

.neuro-indicators h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.indicator-list { display: flex; flex-direction: column; gap: 9px; }

.indicator-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.indicator-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

/* ===========================
   CONDITIONS
=========================== */
.conditions {
  background-color: var(--bg-alt);
  background-image: var(--texture-dots);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.condition-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.condition-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: white;
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.condition-header h3 { font-size: 1.1rem; }

.condition-card > p { font-size: 0.92rem; }

.condition-section h4 {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.condition-section ul { display: flex; flex-direction: column; gap: 6px; }

.condition-section ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.condition-section ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--secondary);
  font-weight: bold;
}

.condition-section p { font-size: 0.9rem; }

.condition-card .btn-outline {
  display: block;
  align-items: center;
  gap: 12px;
  background: var(--btn-bg);
  color: white;
  padding: 12px 20px 12px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 12px 32px rgba(231, 111, 87, 0.4);
  transition: all 0.2s;
}

.condition-card .btn-outline:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(231, 111, 87, 0.5);
}

/* ===========================
   ABOUT
=========================== */
.about {
  background-color: var(--bg);
  background-image: var(--texture-grain);
  background-repeat: repeat;
  padding: 90px 0 15px 0;
}

.about-2 {
  background-color: var(--bg);
  background-image: var(--texture-grain);
  background-repeat: repeat;
  padding: 0 0 95px 0
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-inner-2 {
  grid-template-columns: 1fr;
}

.about-text h2 { margin: 12px 0 20px; font-size: clamp(1.2rem, 2.5vw, 1.9rem); width: 75%; }
.about-text p { margin-bottom: 12px; }

.process-steps { margin-top: 32px; }
.process-steps h4 { margin-bottom: 16px; }

.steps-list { 
  display: flex; 
  align-items: center;
  justify-content: space-between; /* distribui os 4 itens */
  gap: 40px; /* espaço entre cada bloco */
  flex-wrap: wrap; /* evita quebrar feio em telas menores */
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px; /* antes era 30px — aqui resolve */
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap; /* impede quebra de linha no texto */
}

.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Diferenciais */
.about-diferenciais {
  background: #B84E3A;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  align-self: flex-start;
  position: sticky;
  top: 24px;
}

.about-diferenciais h4 { margin-bottom: 24px; font-size: 1rem; color: white; }
.dif-list { display: flex; flex-direction: column; gap: 14px; }

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: white;
  line-height: 1.5;
}

.dif-check {
  color: white;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  background-color: var(--bg-alt);
  background-image: var(--texture-dots);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
}

.testimonials-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-slot {
  background: white;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.video-icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  border: 1px solid var(--border);
}

/* ===========================
   FAQ
=========================== */
.faq {
  background-color: var(--bg);
  background-image: var(--texture-grain);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #B84E3A;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--secondary); background: rgb(22, 87, 115); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  text-align: left;
  gap: 16px;
}

.faq-question.open {
  color: white;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgb(22, 87, 115);
  border: 1px solid #B84E3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p { font-size: 0.92rem; color: white; }

/* ===========================
   CLOSING
=========================== */
.closing {
  background-color: var(--primary);
  background-image: var(--texture-lines);
  background-repeat: repeat;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(93, 167, 171, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  display: flex;
  justify-content: center;
}

.closing-content {
  max-width: 1200px;
  text-align: center;
}

.closing-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(93, 167, 171, 0.15);
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(93, 167, 171, 0.3);
  margin-bottom: 24px;
}

.closing-content h2 {
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.2rem);;
  margin-top: 20px;
  margin-bottom: 24px;
  width: 950px;
}

.closing-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.closing-content strong { color: white; }

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--btn-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.btn-cta-final:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(231, 111, 87, 0.3);
}

.btn-cta-final:active { transform: translateY(0); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0f3f52;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-logo {
  max-width: 100px;
  width: 100px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 30, 40, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 1.3rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}

.modal-close:hover { background: var(--border); }

.modal-header { text-align: center; margin-bottom: 32px; }

.modal-img {
  display: block;
  width: 100px;
  max-width: 100px;
  height: auto;
  margin: 0 0 2rem 8rem;
}

.modal-header h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 8px; }
.modal-header p { font-size: 0.92rem; }

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(93, 167, 171, 0.15);
}

.form-group input.error { border-color: #B00020; }
.form-error {
  font-size: 0.8rem;
  color: #B00020;
  display: none;
}
.form-group.has-error .form-error { display: block; }

.form-success {
  background: rgba(93, 167, 171, 0.1);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-spinner { display: flex; align-items: center; justify-content: center; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid .area-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .hero { padding-top: 60px; min-height: auto; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }

  .hero-visual { order: -1; }

  .hero-img-card { padding: 32px; max-width: 340px; margin: 0 auto; }

  .card-1, .card-2, .card-3 { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: 1; }
  .service-card-wide { flex-direction: column; }

  .areas-grid { grid-template-columns: 1fr; }
  .areas-grid .area-card:last-child { grid-column: 1; }

  .neuro-inner { grid-template-columns: 1fr; gap: 40px; }

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

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-diferenciais { position: static; }

  .testimonials-placeholder { grid-template-columns: 1fr; }

  .hero-trust { gap: 12px; }
  .trust-item { font-size: 0.78rem; }

  .footer-inner { flex-direction: column; text-align: center; }

  .modal-box { padding: 36px 24px; }

  .btn-cta-final { font-size: 0.95rem; padding: 16px 28px; }

  .closing-content h2 { font-size: 1.7rem; font-size: clamp(1.2rem, 2.5vw, 1.9rem);}
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem;}
  .section-label { font-size: 0.7rem; }
  .hero-badge { font-size: 0.75rem; }
  .hero-sub { font-size: 0.97rem; }
  .btn-lg { padding: 15px 24px; font-size: 0.97rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .areas-footer { flex-direction: column; text-align: center; }
}

/* ===========================
   ENTRANCE ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MENU FIXO - MOBILE FIRST
=========================== */
html { scroll-padding-top: 88px; }
section[id] { scroll-margin-top: 88px; }
.site-header{position:fixed;top:0;left:0;width:100%;z-index:900;background:rgba(244,248,248,.94);border-bottom:1px solid rgba(176,203,212,.55);box-shadow:0 8px 28px rgba(22,87,115,.08);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px); justify-content:flex-start; }
.header-container{min-height:100px;display:flex;align-items:center;justify-content:center;gap:75px;position:relative}.header-logo{display:inline-flex;align-items:center;max-width:168px;flex:0 0 auto}.header-logo img{width:100%;height:auto;max-height:100px;object-fit:contain; margin-top:15px; margin-bottom: 15px; }.menu-toggle{width:46px;height:46px;display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;border-radius:14px;background:rgba(22,87,115,.08);border:1px solid rgba(176,203,212,.75);color:var(--primary);transition:background .2s ease,transform .2s ease}.menu-toggle span{width:21px;height:2px;display:block;border-radius:99px;background:var(--primary);transition:transform .2s ease,opacity .2s ease}.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.site-nav{position:absolute;top:calc(100% + 10px);left:24px;right:24px;display:grid;gap:6px;padding:14px;background:rgba(255,255,255,.98);border:1px solid rgba(176,203,212,.7);border-radius:18px;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;transform:translateY(-8px);transition:opacity .2s ease,visibility .2s ease,transform .2s ease}.site-header.menu-open .site-nav{opacity:1;visibility:visible;transform:translateY(0)}.site-nav a{display:flex;align-items:center;justify-content:center;min-height:44px;padding:10px 14px;border-radius:12px;color:var(--primary);font-family:var(--font-main);font-size:.9rem;font-weight:700;text-align:center;transition:background .2s ease,color .2s ease,transform .2s ease}.site-nav a:hover,.site-nav a:focus-visible{background:rgba(93,167,171,.14);color:var(--primary)}.site-nav .nav-cta{background:var(--btn-bg);color:var(--btn-text);box-shadow:0 8px 20px rgba(231,111,87,.22)}.site-nav .nav-cta:hover,.site-nav .nav-cta:focus-visible{background:var(--btn-hover);color:var(--btn-text)}
@media (min-width:992px){html{scroll-padding-top:96px}section[id]{scroll-margin-top:96px}.header-container{min-height:100px}.header-logo{max-width:198px}.menu-toggle{display:none}.site-nav{position:static;display:flex;align-items:center;justify-content:flex-end;gap:4px;padding:0;background:transparent;border:0;border-radius:0;box-shadow:none;opacity:1;visibility:visible;transform:none}.site-nav a{min-height:40px;padding:9px 10px;font-size:.78rem;white-space:nowrap}.site-nav .nav-cta{padding:10px 16px;margin-left:6px}}
@media (min-width:1180px){.site-nav{gap:8px}.site-nav a{padding:10px 12px;font-size:.84rem}}



/* ===========================
   AJUSTES RESPONSIVOS MOBILE FIRST
   Mantém o desktop original e corrige apenas telas menores.
=========================== */
@media (max-width: 991px) {
  html { scroll-padding-top: 96px; }
  section[id] { scroll-margin-top: 96px; }

  .site-header { min-height: 88px; }
  .header-container {
    min-height: 88px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-logo { max-width: 150px; }
  .header-logo img { max-height: 72px; }
  .site-nav {
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  .hero {
    padding: 120px 0 0 0;
    min-height: auto;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
  .hero-text,
  .hero-visual,
  .neuro-text,
  .about-text,
  .closing-content {
    min-width: 0;
  }
  .hero-visual { order: -1; }
  .hero-img-card {
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0 auto;
    box-shadow: none;
  }
  .hero-card-floating { display: none; }

  .services-grid,
  .areas-grid,
  .conditions-grid,
  .testimonials-placeholder,
  .neuro-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }
  .service-card-wide,
  .areas-grid .area-card:last-child {
    grid-column: 1;
  }
  .service-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-icon-wrap {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    margin-right: auto;
  }
  .area-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about-text h2,
  .closing-content h2 {
    width: auto;
    max-width: 100%;
  }
  .steps-list {
    width: 100%;
    max-width: 100%;
  }
  .step-item {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
  }
  .about-diferenciais { position: static; }

  .modal-overlay { padding: 16px; }
  .modal-box {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  .modal-img {
    margin: 0 auto 2rem auto;
  }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .container { padding-left: 18px; padding-right: 18px; }
  .section-header h2 { font-size: 1.55rem; }
  .section-desc { font-size: 0.98rem; }

  .hero { padding-top: 112px; }
  .hero-container { gap: 32px; }
  .hero-text h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.75rem; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: 0.78rem; }

  .service-card,
  .area-card,
  .condition-card,
  .neuro-indicators,
  .about-diferenciais {
    padding: 24px 20px;
  }
  .neuro { padding: 64px 0; }
  .about { padding: 64px 0 15px 0; }
  .about-2 { padding: 0 0 64px 0; }
  .areas-footer { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .btn-cta-final { font-size: 0.95rem; padding: 16px 28px; }
  .closing-content h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .site-header { min-height: 82px; }
  .header-container { min-height: 82px; }
  .header-logo { max-width: 138px; }
  .header-logo img { max-height: 64px; }
  .menu-toggle { width: 42px; height: 42px; }

  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .section-label { font-size: 0.7rem; }

  .hero { padding-top: 104px; }
  .hero-img-card { width: min(100%, 330px); }
  .hero-illustration { min-height: 0; }
  .btn-primary,
  .btn-cta-final {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .btn-lg { padding: 15px 20px; font-size: 0.95rem; }
  .faq-question { padding: 18px 18px; }
  .faq-answer { padding-left: 18px; padding-right: 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ===========================
   AJUSTE DE ALINHAMENTO DO HERO - DESKTOP/LAPTOP
   Mantém o conteúdo dentro do mesmo eixo da .container usada no menu e demais seções.
=========================== */
@media (min-width: 992px) {
  .hero {
    padding-right: 0;
  }
}

/* =====================================================
   REFINO FINAL RESPONSIVO - SOMENTE TELAS MENORES
   Ajustes isolados para mobile/tablet sem alterar desktop.
===================================================== */
@media (max-width: 991px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .header-container {
    justify-content: space-between;
    gap: 16px;
  }

  .header-logo img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero,
  .services,
  .areas,
  .neuro,
  .conditions,
  .about,
  .about-2,
  .testimonials,
  .faq,
  .closing {
    overflow-x: hidden;
  }

  .hero {
    padding-right: 0;
    align-items: stretch;
  }

  .hero-container,
  .services-grid,
  .areas-grid,
  .neuro-inner,
  .conditions-grid,
  .about-inner,
  .testimonials-placeholder {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-sub {
    width: 100%;
    max-width: 100%;
  }

  .hero-illustration {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2,
  .neuro-text h2,
  .about-text h2,
  .closing-content h2 {
    width: 100%;
    max-width: 100%;
    line-height: 1.22;
  }

  h4,
  .neuro-indicators h4,
  .about-diferenciais h4,
  .process-steps h4,
  .condition-section h4 {
    line-height: 1.25;
  }

  .areas-grid,
  .conditions-grid,
  .testimonials-placeholder {
    gap: 18px;
  }

  .services-grid {
    gap: 16px;
  }

  .neuro-inner,
  .about-inner {
    gap: 32px;
  }

  .about + .about-2 {
    margin-top: 0;
  }

  .steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-content: stretch;
  }

  .step-item {
    width: 100%;
    white-space: normal;
    margin-bottom: 0;
  }

  .closing-content {
    width: 100%;
  }
}

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

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1,
  .hero-text h1 {
    font-size: clamp(1.78rem, 8vw, 2.15rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  h2,
  .section-header h2,
  .neuro-text h2,
  .about-text h2,
  .closing-content h2 {
    font-size: clamp(1.38rem, 6.2vw, 1.72rem);
    line-height: 1.18;
  }

  h3,
  .service-card h3,
  .area-card h3,
  .condition-header h3 {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-container {
    gap: 28px;
    padding-bottom: 42px;
  }

  .hero-img-card {
    padding: 0;
    width: min(100%, 360px);
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-bottom: 24px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .services,
  .areas,
  .conditions,
  .testimonials,
  .faq,
  .closing {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .neuro {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about {
    padding-top: 58px;
    padding-bottom: 24px;
  }

  .about-2 {
    padding-top: 20px;
    padding-bottom: 58px;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-desc {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .service-card,
  .area-card,
  .condition-card,
  .neuro-indicators,
  .about-diferenciais {
    padding: 22px 18px;
  }

  .area-icon-wrap {
    max-width: 260px;
    margin-bottom: 16px;
  }

  .areas-footer {
    margin-top: 8px;
    padding: 22px 18px;
  }

  .neuro-text p,
  .about-text p,
  .condition-card > p,
  .service-card p,
  .area-card p,
  .area-card ul li,
  .condition-section ul li,
  .condition-section p,
  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .neuro-insight {
    margin: 20px 0 0;
    padding: 15px 16px;
  }

  .process-steps {
    margin-top: 24px;
  }

  .closing-content p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1,
  .hero-text h1 {
    font-size: clamp(1.65rem, 8.8vw, 1.98rem);
  }

  h2,
  .section-header h2,
  .neuro-text h2,
  .about-text h2,
  .closing-content h2 {
    font-size: clamp(1.28rem, 7vw, 1.5rem);
  }

  .site-header,
  .header-container {
    min-height: 78px;
  }

  html {
    scroll-padding-top: 86px;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .header-logo {
    max-width: 126px;
  }

  .header-logo img {
    max-height: 58px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
  }

  .hero {
    padding-top: 94px;
  }

  .hero-container {
    gap: 24px;
    padding-bottom: 34px;
  }

  .hero-img-card {
    width: min(100%, 300px);
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 7px 12px;
  }

  .hero-wave svg {
    height: 54px;
  }

  .services,
  .areas,
  .conditions,
  .testimonials,
  .faq,
  .closing {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .neuro {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .about-2 {
    padding-top: 18px;
    padding-bottom: 50px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .service-card,
  .area-card,
  .condition-card,
  .neuro-indicators,
  .about-diferenciais,
  .areas-footer {
    padding: 20px 16px;
  }

  .area-icon-wrap {
    max-width: 230px;
  }

  .btn-primary,
  .btn-cta-final,
  .condition-card .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .modal-box {
    padding: 32px 20px;
    border-radius: 20px;
  }
}

/* =====================================================
   AJUSTES FINAIS SOLICITADOS - SOMENTE MOBILE
   Mantém desktop, conteúdo e demais elementos inalterados.
===================================================== */
@media (max-width: 768px) {
  /* Títulos menores apenas no mobile */
  h1,
  .hero-text h1 {
    font-size: clamp(1.45rem, 7.2vw, 1.78rem);
    line-height: 1.14;
  }

  h2,
  .section-header h2,
  .neuro-text h2,
  .about-text h2,
  .closing-content h2 {
    font-size: clamp(1.18rem, 5.7vw, 1.42rem);
    line-height: 1.2;
  }

  /* Hero: imagem como último elemento no mobile */
  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  /* Especialidades: cards centralizados no mobile */
  .services-grid {
    justify-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 390px;
    text-align: center;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card-wide {
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .service-card-wide .service-icon {
    margin-bottom: 2px;
  }

  .service-card-wide h3 {
    margin-bottom: 6px;
  }

  /* Abordagem integrada: imagens alinhadas à esquerda no mobile */
  .area-icon-wrap {
    margin-left: 0;
    margin-right: auto;
    justify-content: flex-start;
  }

  /* Entendendo: ajuste do espaçamento superior dos botões no mobile */
  .condition-card .btn-outline {
    margin-top: 16px;
  }

  /* Sobre a Empática: menor respiro entre diferenciais e demais blocos */
  .about-inner {
    gap: 20px;
  }

  .about-diferenciais {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about {
    padding-bottom: 12px;
  }

  .about-2 {
    padding-top: 12px;
  }

  /* Primeiro passo: alinhamento à esquerda e título menor no mobile */
  .closing-inner {
    justify-content: flex-start;
  }

  .closing-content {
    text-align: left;
    max-width: 100%;
  }

  .closing-content h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.2rem, 5.8vw, 1.46rem);
  }

  .closing-content p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  h1,
  .hero-text h1 {
    font-size: clamp(1.38rem, 7.8vw, 1.62rem);
  }

  h2,
  .section-header h2,
  .neuro-text h2,
  .about-text h2,
  .closing-content h2 {
    font-size: clamp(1.12rem, 6.4vw, 1.34rem);
  }

  .service-card-wide {
    gap: 10px;
  }

  .condition-card .btn-outline {
    margin-top: 14px;
  }

  .about-inner {
    gap: 16px;
  }

  .about {
    padding-bottom: 10px;
  }

  .about-2 {
    padding-top: 10px;
  }
}


/* ===========================
   ACESSIBILIDADE E PERFORMANCE
   Ajustes sem impacto visual/layout em estado normal.
=========================== */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(231, 111, 87, 0.85);
  outline-offset: 3px;
}

.faq-question { text-align: left; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   HERO FLOATING CARDS NO MOBILE
   Mantém a imagem com o CSS original e apenas reexibe os cards
   que já existem no desktop, posicionando-os sobre a imagem no mobile.
===================================================== */
@media (max-width: 991px) {
  .hero-img-card {
    overflow: visible;
  }

  .hero-card-floating,
  .card-1,
  .card-2,
  .card-3 {
    display: flex;
  }

  .hero-card-floating {
    padding: 9px 12px;
    gap: 7px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(22, 87, 115, 0.16);
    z-index: 5;
  }

  .floating-icon {
    font-size: 1.08rem;
  }

  .floating-text strong {
    font-size: 0.68rem;
  }

  .floating-text span {
    font-size: 0.6rem;
  }

  .card-1 {
    left: 10px;
    bottom: 12px;
  }

  .card-2 {
    top: 16px;
    right: 10px;
  }

  .card-3 {
    right: 10px;
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-card-floating {
    padding: 8px 10px;
    gap: 6px;
    border-radius: 11px;
  }

  .floating-icon {
    font-size: 1rem;
  }

  .floating-text strong {
    font-size: 0.64rem;
  }

  .floating-text span {
    font-size: 0.57rem;
  }

  .card-1 {
    left: 8px;
    bottom: 10px;
  }

  .card-2 {
    top: 14px;
    right: 8px;
  }

  .card-3 {
    right: 8px;
    bottom: 58px;
  }
}

/* =====================================================
   PAGESPEED FINAL — sem alterar design/layout
   Mantém proporção original das imagens e reduz custo de renderização abaixo da dobra.
===================================================== */
.hero-illustration > img,
.area-icon-wrap img,
.header-logo img,
.footer-logo,
.modal-img {
  height: auto;
}
.hero-illustration > img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .hero-illustration > img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .services,
  .areas,
  .neuro,
  .conditions,
  .about,
  .about-2,
  .testimonials,
  .faq,
  .closing,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}


/* =====================================================
   ACESSIBILIDADE — ajustes sem alterar layout/estrutura
===================================================== */
:focus-visible {
  outline: 3px solid #0B4D63;
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-cta-final:focus-visible,
.whatsapp-float:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.faq-question:focus-visible,
.site-nav a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(22, 87, 115, 0.55);
}
.site-nav a:focus-visible,
.footer a:focus-visible,
.faq-question:focus-visible,
.modal-close:focus-visible,
.menu-toggle:focus-visible {
  outline-color: #0B4D63;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0B4D63;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }
.btn-primary,
.btn-cta-final,
.site-nav .nav-cta {
  color: #FFFFFF;
}
.whatsapp-float svg { pointer-events: none; }
.modal-overlay[hidden] { display: none !important; }
.form-error { color: #B00020; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
