/* ============================================================
   Med+Fácil — Design System de Alta Conversão
   Fonte: Poppins via Google Fonts
   ============================================================ */

/* ---------- Variáveis ---------- */
:root {
  --lilas: #6F4072;
  --lilas-light: #A898C2;
  --lilas-pale: #EDE9F4;
  --lilas-deep: #5A3360;
  --white: #FFFFFF;
  --off-white: #F7F6FC;
  --text: #1A1626;
  --muted: #6B6480;
  --border: rgba(111, 64, 114, 0.14);
  --green-wa: #25D366;
  --green-wa-dk: #1da851;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 2px 12px rgba(26, 22, 38, .06);
  --shadow-md: 0 8px 32px rgba(26, 22, 38, .10);
  --shadow-lg: 0 24px 64px rgba(26, 22, 38, .12);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 56px;
  }
}

/* ---------- Section helpers ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.sec-label {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--lilas);
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 10px;
}

.sec-title strong {
  font-weight: 700;
  color: var(--lilas-deep);
}

.sec-title--sm {
  font-size: clamp(20px, 2.5vw, 28px);
}

.sec-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}


/* ============================================================
   BOTÕES
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lilas);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(111, 64, 114, .28);
  transition: background .22s, transform .22s, box-shadow .22s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--lilas-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(111, 64, 114, .40);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .30);
  transition: background .22s, transform .22s, box-shadow .22s;
  white-space: nowrap;
}

.btn-wa i {
  font-size: 20px;
}

.btn-wa:hover {
  background: var(--green-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .40);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lilas-deep);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.btn-tel:hover {
  background: var(--lilas-pale);
  border-color: var(--lilas-light);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, .32);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .55);
}


/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  padding: 5px 0;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .nav-inner {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 56px;
  }
}

.nav-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(37, 211, 102, .28);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.nav-cta i {
  font-size: 16px;
}

.nav-cta:hover {
  background: var(--green-wa-dk);
  transform: translateY(-1px);
}

/* Nav menu / links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 100px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(107, 70, 193, .07);
}

.nav-link--destaque {
  color: var(--white);
  background: var(--lilas);
}

.nav-link--destaque:hover {
  background: var(--lilas-deep);
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}

.nav-hamburger:hover {
  background: rgba(0, 0, 0, .06);
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, .98);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .nav-menu--open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
}


/* ============================================================
   PAGE HERO — cabeçalho de páginas internas
   ============================================================ */
.page-hero {
  padding: 120px 0 56px;
  background: linear-gradient(135deg, var(--lilas-pale) 0%, var(--white) 60%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--lilas);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 10px;
  color: var(--muted);
}

.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.4px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero__title strong {
  font-weight: 700;
  color: var(--lilas-deep);
}

.page-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 88px 0 0;
  background: linear-gradient(148deg, var(--white) 0%, var(--white) 52%, var(--lilas-pale) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero>.container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 72px;
}

/* Forma decorativa de fundo */
.hero-bg-orb {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(111, 64, 114, .07) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}

.hero-bg-orb2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 152, 194, .08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}

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

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 400px;
    gap: 64px;
  }
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--lilas-pale);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lilas-deep);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-live {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .40);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, .0);
  }
}

/* H1 */
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-h1 .accent {
  color: var(--lilas-deep);
  font-weight: 700;

}

.hero-lead {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

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

.stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--lilas-deep);
  letter-spacing: -0.5px;
  line-height: 1;
}

.stat-l {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.stat-sep {
  width: 1px;
  height: 34px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual (imagem + badge) */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--lilas-pale);
  border-radius: var(--r-lg);
  border: 2px dashed var(--lilas-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Quando a imagem real for inserida, substituir o placeholder: */
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 2px);
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--lilas-light);
  text-align: center;
}

.placeholder-inner i {
  font-size: 36px;
  opacity: .5;
}

.placeholder-inner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.hero-badge i {
  font-size: 20px;
  color: var(--green-wa);
  flex-shrink: 0;
}

.hero-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-badge span {
  font-size: 11px;
  color: var(--muted);
}


/* ============================================================
   CARROSSEL
   ============================================================ */
.carousel-section {
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-placeholder {
  width: 100%;
  aspect-ratio: 16/6;
  background: var(--lilas-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--lilas-light);
}

@media (max-width: 640px) {
  .carousel-placeholder {
    aspect-ratio: 4/3;
  }
}

.carousel-placeholder i {
  font-size: 48px;
  opacity: .5;
}

.carousel-placeholder span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .6;
}

/* Quando imagens reais forem inseridas: */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões prev/next */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .90);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--lilas-deep);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev {
  left: 16px;
}

.carousel-btn--next {
  right: 16px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}

.carousel-dot--active {
  background: var(--white);
  transform: scale(1.35);
}


/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--lilas-pale);
  border-top: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
  user-select: none;
  width: 100%;
  flex-shrink: 0;
  contain: layout style;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.t-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lilas-deep);
  flex-shrink: 0;
}

.t-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lilas-light);
  flex-shrink: 0;
}


/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 20px;
  transition: background .25s, box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--lilas-light);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--lilas-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon i {
  font-size: 22px;
  color: var(--lilas);
}

.benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.spec-header {
  text-align: center;
  margin-bottom: 40px;
}

/*============================================================
SPECIALIDADES — GRID DE CARDS
============================================================*/
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-card {
  background: var(--white);
  border: 1px solid rgba(119, 103, 154, 0.1);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.spec-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lilas);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.spec-card:hover {
  background: var(--off-white);
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(119, 103, 154, 0.1);
  transform: translateY(-3px);
}

.spec-card:hover::after {
  transform: scaleX(1);
}

.spec-icon {
  width: 38px;
  height: 38px;
  background: var(--lilas-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.spec-icon i {
  font-size: 18px;
  color: var(--lilas-deep);
}

.spec-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.spec-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Card destaque */
.spec-accent {
  background: var(--lilas) !important;
  border-color: var(--lilas) !important;
}

.spec-accent .spec-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.spec-accent .spec-icon i {
  color: white !important;
}

.spec-accent .spec-name {
  color: white;
}

.spec-accent .spec-desc {
  color: rgba(255, 255, 255, 0.72);
}


/* ============================================================
   EXAMES
   ============================================================ */
.exams-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1080px) {
  .exams-layout {
    grid-template-columns: 420px 1fr;
  }
}

.exams-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 500px) {
  .exams-pills {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .exams-pills {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .exams-pills {
    grid-template-columns: 1fr 1fr;
  }
}

.exam-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 15px 16px;
  transition: background .2s, border-color .2s;
}

.exam-pill:hover {
  background: var(--lilas-pale);
  border-color: var(--lilas-light);
}

.exam-pill>i {
  font-size: 20px;
  color: var(--lilas);
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.exam-pill strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

.exam-pill span {
  font-size: 12px;
  color: var(--muted);
}


/* ============================================================
   SEÇÃO ESCURA — DIFERENCIAIS
   ============================================================ */
.section-dark {
  background: var(--lilas-deep);
  color: white;
  padding: 96px 0;
}

.dark-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .dark-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.dark-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.dark-title strong {
  font-weight: 600;
}

.dark-sub {
  font-size: 16px;
  opacity: .70;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 420px;
}

.dark-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dark-num {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  transition: background .2s;
}

.dark-num:hover {
  background: rgba(255, 255, 255, .11);
}

.dark-n {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.dark-l {
  font-size: 12px;
  opacity: .52;
}

/* Placeholder imagem escura */
.dark-img-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: rgba(255, 255, 255, .05);
  border: 2px dashed rgba(255, 255, 255, .18);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.dark-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 2px);
}

.dark-img-placeholder .placeholder-inner {
  color: rgba(255, 255, 255, .3);
}

/* Pilares */
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-sm);
  padding: 15px;
  transition: background .2s;
}

.pillar:hover {
  background: rgba(255, 255, 255, .10);
}

.pillar-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-ico i {
  font-size: 14px;
  color: white;
}

.pillar-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.pillar-text {
  font-size: 13px;
  opacity: .58;
  line-height: 1.55;
}


/* ============================================================
   FAIXA CTA
   ============================================================ */
.cta-band {
  background: var(--lilas-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-band-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-band-title strong {
  color: var(--lilas-deep);
}

.cta-band-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 400px;
}

.cta-band-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-band-btns {
    flex-direction: row;
  }
}


/* ============================================================
   LOCALIZAÇÃO + FORMULÁRIO
   ============================================================ */
.loc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .loc-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off-white);
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%236B6480' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lilas);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(111, 64, 114, .10);
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
  border: none;
  cursor: pointer;
}

.form-alert {
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.form-alert--ok {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-alert--err {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Mapa */
.map-frame {
  width: 100%;
  height: 260px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.addr-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.addr-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.addr-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--lilas-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addr-ico i {
  font-size: 15px;
  color: var(--lilas);
}

.addr-row strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1px;
}

.addr-row a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}

.addr-row a:hover {
  color: var(--lilas);
}

.map-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--lilas-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  transition: background .2s, border-color .2s;
}

.map-btn:hover {
  background: var(--lilas-pale);
  border-color: var(--lilas-light);
}

.bus-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bus-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.bus-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
}


/* ============================================================
   FALE CONOSCO — layout de coluna única
   ============================================================ */
.fc-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Cards de informações */
.fc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .fc-cards {
    grid-template-columns: 1fr;
  }
}

.fc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.fc-card:not(.fc-card--static):hover {
  border-color: var(--lilas-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.fc-card__ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--lilas-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-card__ico i {
  font-size: 18px;
  color: var(--lilas);
}

.fc-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.fc-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Banner WhatsApp */
.fc-wa-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #e8f9ef 0%, #d4f5e3 100%);
  border: 1px solid #b2dfcc;
  border-radius: var(--r-md);
  padding: 20px 24px;
}

@media (max-width: 560px) {
  .fc-wa-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fc-wa-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-wa-banner__text strong {
  font-size: 15px;
  font-weight: 700;
  color: #1b5e3b;
}

.fc-wa-banner__text span {
  font-size: 13px;
  color: #2e7d55;
}

.fc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(37, 211, 102, .30);
  transition: background .2s, transform .2s;
}

.fc-wa-btn i {
  font-size: 18px;
}

.fc-wa-btn:hover {
  background: var(--green-wa-dk);
  transform: translateY(-1px);
}

/* Formulário */
.fc-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .fc-form-wrap {
    padding: 24px 18px;
  }
}

.fc-form-header {
  margin-bottom: 24px;
}

.fc-form-header p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.fc-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--heading);
  line-height: 1.2;
  margin-top: 6px;
}

.fc-form-title strong {
  color: var(--lilas);
}

/* Mapa */
.fc-map__frame {
  width: 100%;
  height: 320px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.fc-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fc-map__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.fc-map__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Convênios */
.conv-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbea;
  border: 1px solid #f5d97a;
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  color: #7a5c00;
  line-height: 1.6;
}

.conv-notice i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #c89a00;
}

.conv-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conv-group__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lilas-pale);
}

.conv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 500px) {
  .conv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) {
  .conv-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.conv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 12px 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.conv-card:hover {
  border-color: var(--lilas-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.conv-card__logo {
  width: 64px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conv-card__logo img {
  max-width: 64px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.conv-card__fallback {
  display: flex;
  width: 48px;
  height: 48px;
  background: var(--lilas-pale);
  color: var(--lilas);
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.conv-card>span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}


/* Como Chegar — referências (de carro) */
.cc-refs {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

@media (max-width: 480px) {
  .cc-refs {
    padding: 20px 16px;
  }
}

.cc-ref-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cc-ref {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cc-ref .fc-card__ico {
  flex-shrink: 0;
}

.cc-ref strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cc-ref p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Como Chegar — seção ônibus */
.cc-bus {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

@media (max-width: 480px) {
  .cc-bus {
    padding: 20px 16px;
  }
}

.cc-bus__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.cc-bus__ico {
  flex-shrink: 0;
}

.cc-bus__sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.cc-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.cc-stop {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.cc-stop:last-child {
  border-bottom: none;
}

.cc-stop:nth-child(even) {
  background: var(--white);
}

.cc-stop__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cc-stop__walk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--lilas-pale);
  color: var(--lilas-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.cc-stop__walk i {
  font-size: 11px;
}

.cc-stop__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.cc-stop__lines {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cc-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lilas);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}


/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--lilas-deep);
  color: white;
  padding: 52px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  opacity: .60;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: .32;
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  transition: color .2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, .26);
}


/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .40);
  transition: transform .3s, box-shadow .3s, background .2s;
  animation: wa-pulse 3s ease-in-out infinite;
}

.wa-float i {
  font-size: 22px;
  flex-shrink: 0;
}

.wa-float:hover {
  background: var(--lilas-deep);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(111, 64, 114, .50);
  animation: none;
}

.wa-label {
  font-size: 14px;
  font-weight: 700;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .40);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .55), 0 0 0 7px rgba(37, 211, 102, .07);
  }
}

/* Esconde label em telas muito pequenas */
@media (max-width: 400px) {
  .wa-label {
    display: none;
  }

  .wa-float {
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    justify-content: center;
  }
}


/* ============================================================
   BARRA STICKY (DESKTOP)
   ============================================================ */

.btn-wa-sm:hover {
  background: var(--green-wa-dk);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA (via IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-x {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-x.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {

  .section,
  .section-dark,
  .cta-band {
    padding: 40px 0;
  }

  .hero-h1,
  .exams-text,
  .sec-label,
  .sec-title .dark-title,
  .cta-band-title {
    text-align: center;
    justify-content: center;
  }

  /* Centralizando bloco Hero */
  .hero-text {
    text-align: center;
  }

  .eyebrow {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .hero-stats {
    justify-content: center;
  }

  /* Centralizando o Footer */
  .footer {
    text-align: center;
  }

  .footer-logo-img,
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}