/* ============================================================
   Dr. Pedro Miziara — Landing page
   Réplica estática para Vercel
   ============================================================ */

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ----- Design tokens (extracted from elementor-kit-90) ----- */
:root {
  --c-purple:        #3A3089;   /* primary */
  --c-purple-dark:   #30266D;
  --c-pink:          #F9669D;   /* secondary */
  --c-pink-dark:     #E0457E;
  --c-green:         #22FF00;   /* CTA pill */
  --c-green-shadow:  rgba(34, 255, 0, 0.45);
  --c-text:          #7A7A7A;
  --c-heading:       #272A2A;
  --c-bg-gray:       #F5F5F5;
  --c-white:         #FFFFFF;
  --c-divider:       #E9E9E9;

  --f-display: "Yusei Magic", Georgia, serif;
  --f-text:    "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1280px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
  --shadow-cta: 0 0 30px rgba(0, 0, 0, 0.42);
}

html { overflow-x: hidden; }
body {
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-heading);
  line-height: 1.2em;
  text-transform: capitalize;
}

h1 { font-size: clamp(38px, 5.5vw, 67.34px); }
h2 { font-size: clamp(30px, 4vw, 50.52px); line-height: 1.3em; }
h3 { font-size: clamp(22px, 2.5vw, 28.43px); font-weight: 500; line-height: 1.5em; }
h4 { font-size: 21.33px; line-height: 1.6em; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-pink);
  text-transform: capitalize;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.eyebrow--small { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--c-purple); margin-top: 16px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  transition: all .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--green {
  background: var(--c-green);
  color: #1c1c1c;
  box-shadow: 0 0 30px var(--c-green-shadow);
}
.btn--green:hover { background: #1ee600; transform: translateY(-2px); box-shadow: 0 6px 36px var(--c-green-shadow); }

.btn--pink { background: var(--c-pink); color: var(--c-white); box-shadow: var(--shadow-md); }
.btn--pink:hover { background: var(--c-pink-dark); transform: translateY(-2px); }

.btn--purple { background: var(--c-purple); color: var(--c-white); box-shadow: var(--shadow-md); }
.btn--purple:hover { background: var(--c-purple-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline-pink { background: transparent; color: var(--c-pink); border: 2px solid var(--c-pink); }
.btn--outline-pink:hover { background: var(--c-pink); color: var(--c-white); }

.btn--white-pink { background: var(--c-white); color: var(--c-pink); }
.btn--white-pink:hover { background: #f5f5f5; transform: translateY(-2px); }

.btn--ghost-white { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); }
.btn--ghost-white:hover { background: var(--c-white); color: var(--c-pink); }

.btn--lg { padding: 18px 42px; font-size: 17px; }

/* ----- Checklist ----- */
.checklist { display: grid; gap: 10px; margin-top: 8px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-text);
  font-size: 16px;
  color: var(--c-heading);
  font-weight: 500;
}
.checklist li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--c-pink);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 11px;
}
.checklist--white li { color: var(--c-white); }
.checklist--white li i { background: var(--c-white); color: var(--c-purple); }

/* Variant: checkmark sem fundo (apenas ✓ rosa), usado em Experience e CTA Precisa */
.checklist--plain li i {
  background: transparent;
  color: var(--c-pink);
  width: auto;
  height: auto;
  font-size: 14px;
  border-radius: 0;
  box-shadow: none;
}
.checklist--plain.checklist--white li i { color: var(--c-white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .3s;
}

/* Top bar */
.topbar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-divider);
  font-size: 12px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.topbar__contact { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar__contact a {
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.topbar__contact a:hover { color: var(--c-pink); }
.topbar__contact i { color: var(--c-pink); font-size: 14px; }

.topbar__social { display: flex; gap: 10px; }
.topbar__social a {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-pink);
  color: var(--c-white);
  font-size: 11px;
  transition: background .2s, transform .2s;
}
.topbar__social a:hover { background: var(--c-purple); transform: translateY(-2px); }

/* Navbar */
.navbar { background: var(--c-white); }
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar__brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-purple);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--c-purple-dark);
  color: var(--c-white);
  overflow: hidden;
  padding: 80px 20px 0;
  min-height: 800px;
  display: flex;
  align-items: center;
}
/* Background photo (medical office) — clínica visível através do overlay roxo */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/doctor/section-bg-30.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.55;          /* +25% — clínica mais visível, batendo com original */
  filter: saturate(30%);  /* leve dessaturação mas mantém matiz violeta natural */
  pointer-events: none;
  z-index: 1;
}
/* Decoration layer: floating circles + dots */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  animation: heroFloat 9s ease-in-out infinite;
}
.hero__circle--1 { top: 12%; left: 18%; width: 38px; height: 38px; animation-delay: 0s; }
.hero__circle--2 { top: 28%; left: 45%; width: 56px; height: 56px; animation-delay: 1.5s; }
.hero__circle--3 { top: 62%; left: 8%; width: 72px; height: 72px; animation-delay: 0.8s; }
.hero__circle--4 { top: 78%; left: 38%; width: 42px; height: 42px; animation-delay: 2.4s; }
.hero__circle--5 { top: 18%; right: 15%; width: 48px; height: 48px; animation-delay: 1.2s; }

.hero__dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-pink);
  border: 3px solid var(--c-white);
  box-shadow: 0 0 18px rgba(249, 102, 157, 0.55);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero__dot--1 { top: 38%; left: 52%; animation-delay: 0.3s; }
.hero__dot--2 { top: 68%; left: 48%; animation-delay: 1.7s; }
.hero__dot--3 { top: 82%; right: 18%; animation-delay: 0.9s; }
.hero__dot--4 { top: 22%; right: 38%; animation-delay: 2.1s; }
.hero__dot--5 { top: 48%; right: 6%; animation-delay: 1.4s; }

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -22px, 0); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;     /* foto maior à direita */
  gap: 40px;
  align-items: center;
  z-index: 3;
  width: 100%;
}
.hero__text { display: flex; flex-direction: column; gap: 18px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1em;
  text-transform: capitalize;
}
.hero__subtitle {
  font-size: 17px;
  line-height: 1.7em;
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin-top: 6px;
}
.hero__crm {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-top: 12px;
}
.hero__image { position: relative; display: flex; justify-content: center; align-self: end; }
.hero__image img {
  max-height: 780px;          /* +80px — foto maior, mais perto do original */
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

/* ============================================================
   O QUE FAZEMOS
   ============================================================ */
.services {
  background: var(--c-bg-gray);
  padding: 0;
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
.services__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 0;
  background: var(--c-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.services__heading-card {
  background: var(--c-pink);
  color: var(--c-white);
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.services__heading-tag {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  text-transform: lowercase;
  line-height: 1.1em;
  color: var(--c-white);
  letter-spacing: 1px;
}
.services__heading-tag::first-letter { text-transform: lowercase; }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 22px;
  text-align: center;
  align-items: center;
  border-left: 1px solid var(--c-divider);
}
.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-purple);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.service-card__title {
  font-size: 16px;
  color: var(--c-purple);
  text-transform: capitalize;
  line-height: 1.35em;
  min-height: 44px;
  font-weight: 500;
}
.service-card p { font-size: 13px; line-height: 1.65em; color: var(--c-text); }

/* ============================================================
   EXPERIÊNCIA
   ============================================================ */
.experience {
  padding: 100px 0 80px;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.experience__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.experience__image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.experience__text { display: flex; flex-direction: column; gap: 16px; }
.experience__text h2 { color: var(--c-purple); }
.experience__text p { font-size: 15px; line-height: 1.9em; }

/* Checklist no contexto Experience: grid 2x2 horizontal + texto rosa bold */
.experience__text .checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 8px;
}
.experience__text .checklist li {
  color: var(--c-pink);
  font-weight: 700;
}

/* Decoração SVG tracejada no canto superior direito */
.experience__decor {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 130px;
  height: 90px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 60px 0; background: var(--c-white); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 20px 10px; }
.stat__number {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--c-purple);
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;  /* "+" no topo, em vez de baseline */
}
.stat__number .stat__plus {
  font-size: 0.6em;
  color: var(--c-pink);
  margin-right: 4px;
  line-height: 1;
  align-self: flex-start;
}
.stat__label {
  font-family: var(--f-text);
  font-size: 14px;
  color: var(--c-text);
  text-transform: capitalize;
  max-width: 220px;
  line-height: 1.4em;
  margin-top: 6px;
}

/* ============================================================
   PURPLE ROW: Pré-Natal + Tratamentos (3 cards + vídeo Reel vertical)
   Background BRANCO da página; cada coluna é um card individual com bg próprio.
   ============================================================ */
.purple-row {
  background: var(--c-white);
  padding: 80px 0;
  color: var(--c-text);
}
.purple-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.purple-row__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
}

/* CARD ESQUERDO: Pré-Natal & Parto — navy escuro com decoração tracejada */
.purple-row__col--prenatal {
  background: var(--c-purple-dark);
  color: var(--c-white);
  padding: 50px 32px;
  justify-content: center;
  position: relative;
}
.purple-row__col--prenatal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 400' xmlns='http://www.w3.org/2000/svg'><path d='M-10,80 Q40,40 90,80 T190,70' fill='none' stroke='%23ffffff' stroke-width='1' stroke-dasharray='3 4' opacity='0.5'/><path d='M-10,160 Q60,120 110,160 T210,150' fill='none' stroke='%23ffffff' stroke-width='1' stroke-dasharray='3 4' opacity='0.4'/><path d='M-10,240 Q40,200 90,240 T190,230' fill='none' stroke='%23ffffff' stroke-width='1' stroke-dasharray='3 4' opacity='0.35'/><path d='M-10,320 Q60,280 110,320 T210,310' fill='none' stroke='%23ffffff' stroke-width='1' stroke-dasharray='3 4' opacity='0.3'/></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}
.purple-row__col--prenatal > * { position: relative; z-index: 1; }
.purple-row__col--prenatal h2 {
  color: var(--c-white);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15em;
  margin-bottom: 20px;
}
.purple-row__col--prenatal p {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  line-height: 1.75em;
  margin-bottom: 14px;
}

/* CARD CENTRO: Imagem da gestante — sem border-radius extra, sem shadow */
.purple-row__col--image {
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.purple-row__col--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  display: block;
  border-radius: 0;
}

/* CARD DIREITO: Tratamentos — cinza claro com título rosa e body text escuro */
.purple-row__col--tratamentos {
  background: var(--c-bg-gray);
  color: var(--c-text);
  padding: 50px 32px;
  justify-content: center;
}
.purple-row__col--tratamentos h2 {
  color: var(--c-pink);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15em;
  margin-bottom: 20px;
}
.purple-row__col--tratamentos p {
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.75em;
  margin-bottom: 14px;
}
.purple-row__col--tratamentos p strong {
  font-weight: 700;
  color: var(--c-heading);
}

/* COLUNA 4: Vídeo Laser Íntimo — sem pílula rosa, aspect 9/16 (Reel vertical) */
.purple-row__col--laser {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
}
.purple-row__video {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
  width: 100%;
  flex: 1;
  aspect-ratio: 9 / 16;       /* vertical Reel simulado */
  min-width: 0;
}
.purple-row__video lite-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
  min-width: 0;
  border-radius: 14px;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { padding: 90px 0; background: var(--c-white); }
.testimonials__header {
  text-align: left;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.testimonials__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-pink);
  font-size: 38px;
  width: auto;
  height: auto;
  margin-bottom: 0;
  align-self: flex-start;
}
.testimonials__header h2 { color: var(--c-purple); margin: 0; }
.testimonials__sub {
  color: var(--c-text);
  margin-top: 4px;
  font-size: 16px;
  width: 100%;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.testimonial {
  background: transparent;
  padding: 18px 8px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__text { font-size: 14px; line-height: 1.8em; color: var(--c-heading); }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__author img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
}
.testimonial__author strong { display: block; color: var(--c-purple); font-family: var(--f-display); font-size: 16px; }
.testimonial__author span { font-size: 13px; color: var(--c-pink); text-transform: capitalize; }

/* Separador horizontal entre as duas fileiras de depoimentos */
.testimonials__grid > .testimonial:nth-child(4),
.testimonials__grid > .testimonial-video:nth-child(3) {
  border-top: 1px solid var(--c-divider);
  padding-top: 36px;
  margin-top: 12px;
}

.testimonial-video {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  border: 4px solid var(--c-pink);    /* moldura rosa, como no original */
  position: relative;
}

/* Badge "Assista no YouTube" no bottom-right do vídeo */
.testimonial-video__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  pointer-events: none;
  letter-spacing: 0.3px;
}
.testimonial-video__badge i { color: #ff0000; font-size: 14px; }

/* ============================================================
   CTA: PRECISA DE UMA CONSULTA (purple | foto | pink)
   ============================================================ */
.cta-consulta {
  padding: 60px 0;
  background: var(--c-white);          /* fundo branco da página */
  color: var(--c-white);
}
.cta-consulta__inner {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 0;
  align-items: end;
  padding: 0;
  min-height: 380px;
  /* Backgrounds split como CARD com border-radius */
  background: linear-gradient(to right, var(--c-purple-dark) 0%, var(--c-purple-dark) 50%, var(--c-pink) 50%, var(--c-pink) 100%);
  border-radius: 18px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-consulta__left { align-self: center; padding: 50px 30px 50px 50px; }
.cta-consulta__right { align-self: center; padding: 50px 50px 50px 30px; }
.cta-consulta__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-consulta__crm {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--c-pink);
  background: transparent;
  border: none;
  padding: 0;
  align-self: flex-start;
}
.cta-consulta__left h2 {
  color: var(--c-white);
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15em;
}
.cta-consulta__sub {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--c-pink);
  font-weight: 500;
}
.cta-consulta__left .btn { align-self: flex-start; }

.cta-consulta__photo {
  align-self: end;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.cta-consulta__photo img {
  max-height: 480px;
  width: auto;
  display: block;
  margin-bottom: 0;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.cta-consulta__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 30px;
}
.cta-consulta__intro {
  font-size: 15px;
  line-height: 1.7em;
  color: var(--c-white);
}

/* ============================================================
   INSTITUTO MIZIARA
   ============================================================ */
.clinica { padding: 90px 0; background: var(--c-white); }
.clinica__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.clinica__text h2 { color: var(--c-purple); margin-bottom: 18px; }
.clinica__text p { font-size: 15px; line-height: 1.9em; margin-bottom: 24px; }
.clinica__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.clinica__image-wrap { position: relative; }
.clinica__image { border-radius: 12px; box-shadow: var(--shadow-lg); }
.clinica__hours {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: var(--c-purple);
  color: var(--c-white);
  padding: 22px 26px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.clinica__hours h4 { color: var(--c-white); margin-bottom: 8px; font-size: 18px; }
.clinica__hours p { font-size: 13px; line-height: 1.6em; color: rgba(255,255,255,0.95); margin: 0; }

/* ============================================================
   LABORATÓRIO
   ============================================================ */
.laboratorio {
  padding: 100px 0 90px;
  background: var(--c-bg-gray);
  position: relative;
  overflow: hidden;
}
.laboratorio__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.laboratorio__image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.laboratorio__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.laboratorio__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-pink), var(--c-purple));
  color: var(--c-white);
  font-size: 26px;
  margin-bottom: 4px;
  box-shadow: 0 8px 20px rgba(58, 48, 137, 0.3);
}
.laboratorio__text h2 { color: var(--c-purple); margin-bottom: 8px; }
.laboratorio__text p { font-size: 15px; line-height: 1.9em; }

/* Decorações animadas (réplica das decorações do Elementor) */
.laboratorio__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.laboratorio__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(249, 102, 157, 0.35);
  background: transparent;
  animation: heroFloat 8s ease-in-out infinite;
}
.laboratorio__circle--1 { top: 8%; right: 8%; width: 60px; height: 60px; animation-delay: 0s; }
.laboratorio__circle--2 { top: 14%; left: 4%; width: 36px; height: 36px; animation-delay: 1.4s; border-color: rgba(58, 48, 137, 0.3); }
.laboratorio__circle--3 { bottom: 10%; right: 14%; width: 80px; height: 80px; animation-delay: 2.2s; }

.laboratorio__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-pink);
  border: 3px solid var(--c-white);
  box-shadow: 0 0 18px rgba(249, 102, 157, 0.45);
  animation: heroFloat 6s ease-in-out infinite;
}
.laboratorio__dot--1 { top: 20%; right: 28%; animation-delay: 0.8s; }
.laboratorio__dot--2 { bottom: 18%; left: 12%; animation-delay: 1.6s; background: var(--c-purple); box-shadow: 0 0 18px rgba(58, 48, 137, 0.45); }

.laboratorio__swirl {
  position: absolute;
  width: 90px;
  height: 90px;
  animation: heroFloat 10s ease-in-out infinite;
}
.laboratorio__swirl--1 { top: 6%; right: 35%; animation-delay: 0.5s; }
.laboratorio__swirl--2 { bottom: 12%; right: 4%; width: 110px; height: 110px; animation-delay: 1.8s; transform: rotate(20deg); }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 90px 0; background: var(--c-bg-gray); }
.blog__header { text-align: center; margin-bottom: 50px; }
.blog__header h2 { color: var(--c-purple); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__image { aspect-ratio: 3 / 2; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__image img { transform: scale(1.06); }
.blog-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__title {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--c-pink);
  line-height: 1.4em;
  font-weight: 500;
  text-transform: capitalize;
  min-height: 60px;
}
.blog-card__body p { font-size: 13px; line-height: 1.7em; color: var(--c-text); flex: 1; }
.blog-card__link { color: var(--c-purple); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.blog-card__link:hover { color: var(--c-pink); }
.blog-card__date { font-size: 12px; color: #aaa; margin-top: 6px; display: block; }

/* ============================================================
   CTA DUAL (footer)
   ============================================================ */
.cta-dual {
  padding: 60px 0 100px;       /* +40px no bottom pra acomodar a wave */
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.cta-dual__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
  pointer-events: none;
}
.cta-dual__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-dual__card {
  padding: 40px 36px;
  border-radius: 14px;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-dual__card--pink { background: var(--c-pink); }
.cta-dual__card--purple {
  background: var(--c-bg-gray);          /* fundo cinza claro, igual ao original */
  color: var(--c-text);
}
.cta-dual__card h3 {
  color: var(--c-white);
  font-size: 26px;
  text-transform: capitalize;
}
.cta-dual__card--purple h3 { color: var(--c-purple); }
.cta-dual__card p { color: rgba(255,255,255,0.95); font-size: 15px; }
.cta-dual__card--purple p { color: var(--c-text); }
.cta-dual__card .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--c-purple-dark);
  background-image: url('../images/doctor/section-bg-30.jpg');
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  padding-top: 50px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(48, 38, 109, 0.88);   /* var(--c-purple-dark) com 88% opacity */
  pointer-events: none;
  z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}
.site-footer__brand h4 {
  color: var(--c-white);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.site-footer__brand p { font-size: 13px; line-height: 1.7em; color: rgba(255,255,255,0.85); }

.site-footer__social { text-align: center; }
.site-footer__siga {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--c-pink);
}
.site-footer__social ul { display: inline-flex; gap: 12px; }
.site-footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-pink);
  color: var(--c-white);
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.site-footer__social a:hover { background: var(--c-white); color: var(--c-purple); transform: translateY(-2px); }

.site-footer__logo { text-align: right; }
.site-footer__logo img { display: inline-block; max-height: 36px; width: auto; }

.site-footer__bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  font-size: 11px;
  letter-spacing: 0.8px;
}
.site-footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-footer__copyright { text-align: left; margin: 0; }
.site-footer__links {
  display: flex;
  gap: 18px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links a { text-transform: uppercase; letter-spacing: 1px; }
.site-footer__links a:hover { color: var(--c-pink); }
.site-footer__credits {
  text-align: right;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.site-footer__credits i { color: var(--c-pink); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform .25s;
}
.floating-whatsapp:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .topbar__contact { gap: 16px; font-size: 12px; }
  .hero { padding: 80px 20px 40px; min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero__text { align-items: center; }
  .hero__tag, .hero__crm { align-self: center; }
  .hero__subtitle { margin: 0 auto; }
  .hero__image { order: -1; align-self: center; }
  .hero__image img { max-height: 380px; }
  .hero__circle--2, .hero__circle--4, .hero__dot--1, .hero__dot--4 { display: none; }

  .services { margin-top: -60px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__heading-card { grid-column: 1 / -1; padding: 30px; }

  .experience__inner,
  .clinica__inner,
  .laboratorio__inner { grid-template-columns: 1fr; gap: 40px; }

  .experience__image, .laboratorio__image { order: -1; }
  .clinica__hours { position: static; margin-top: 20px; max-width: none; }

  .purple-row__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .purple-row__col--prenatal,
  .purple-row__col--tratamentos { padding: 40px 28px; }
  .purple-row__col--image { min-height: 280px; }
  .purple-row__col--image img { min-height: 280px; }
  .purple-row__video { aspect-ratio: 9 / 16; flex: none; }

  .cta-consulta {
    background: var(--c-white);
    padding: 40px 0;
  }
  .cta-consulta__inner {
    grid-template-columns: 1fr;
    background: var(--c-purple-dark);     /* sobrescreve linear-gradient horizontal do desktop */
    gap: 30px;
    text-align: center;
    padding: 50px 24px;
    margin: 0 24px;
    max-width: none;
    border-radius: 14px;
  }
  .cta-consulta__left, .cta-consulta__right { padding: 0; align-items: center; }
  .cta-consulta__left .btn, .cta-consulta__crm { align-self: center; }
  .cta-consulta__right { background: var(--c-pink); padding: 30px; border-radius: 14px; color: var(--c-white); }
  .cta-consulta__photo { order: -1; }
  .cta-consulta__photo img { max-height: 280px; }

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

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .site-footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .site-footer__logo { text-align: center; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --container: 100%; }
  body { font-size: 15px; line-height: 1.7em; }
  .container { padding: 0 16px; }

  /* Header */
  .topbar { display: none; }
  .navbar__inner {
    min-height: 60px;
    flex-direction: row;
    gap: 8px;
    padding: 10px 0;
  }
  .navbar__brand { font-size: 14px; letter-spacing: 0.5px; }
  .btn { padding: 11px 18px; font-size: 12px; min-height: 44px; }
  .btn--lg { padding: 14px 26px; font-size: 14px; }

  /* Hero — texto em cima, foto colada no bottom (corrige "voando") */
  .hero {
    display: block;              /* mata o "align-items:center" do desktop */
    padding: 48px 16px 0;
    min-height: 0;
    height: auto;
    overflow: hidden;
    line-height: 0;              /* remove espaço inline residual */
  }
  .hero__inner {
    display: flex;               /* usa flex column em vez de grid */
    flex-direction: column;
    grid-template-columns: none;
    text-align: center;
    gap: 28px;
    width: 100%;
    line-height: normal;
  }
  .hero__text {
    order: 1;
    align-items: center;
    padding-bottom: 8px;
  }
  .hero__image {
    order: 2;
    display: block;
    /* margin-bottom negativo + overflow:hidden na .hero clipa transparência do PNG */
    margin: 0 0 -40px 0;
    padding: 0;
    width: 100%;
    text-align: center;
    line-height: 0;
    font-size: 0;
  }
  .hero__title { font-size: clamp(30px, 8vw, 38px); line-height: 1.15em; }
  .hero__subtitle { font-size: 15px; line-height: 1.6em; }
  .hero__tag, .hero__crm { font-size: 11px; padding: 6px 14px; }
  .hero__image img {
    max-height: 380px;
    width: auto;
    margin: 0 auto;
    padding: 0;
    display: block;
    vertical-align: bottom;
  }
  /* Esconde mais decorações no mobile */
  .hero__circle--3, .hero__dot--2, .hero__dot--5 { display: none; }
  .hero__circle--1 { width: 28px; height: 28px; }
  .hero__circle--5 { width: 32px; height: 32px; }

  /* Services — remove overlap negativo pra não cortar a foto */
  .services { margin-top: 0; }
  .services__grid { grid-template-columns: 1fr; gap: 0; border-radius: 12px; }
  .services__heading-card { padding: 28px 22px; }
  .services__heading-tag { font-size: 28px; }
  .service-card { border-left: none; border-top: 1px solid var(--c-divider); padding: 28px 22px; }
  .service-card__title { font-size: 16px; min-height: 0; }

  /* Experience */
  .experience { padding: 50px 0; }
  .experience__text h2 { font-size: 28px; line-height: 1.2em; }
  .experience__text p { font-size: 14px; }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .stat__number { font-size: clamp(32px, 9vw, 44px); }
  .stat__label { font-size: 12px; line-height: 1.35em; }

  /* Purple row — mobile: 1 col stacked, cada card full-width */
  .purple-row { padding: 50px 0; }
  .purple-row__grid { grid-template-columns: 1fr; gap: 20px; }
  .purple-row__col--prenatal,
  .purple-row__col--tratamentos { padding: 36px 24px; }
  .purple-row__col--prenatal h2,
  .purple-row__col--tratamentos h2 { font-size: 26px; line-height: 1.2em; margin-bottom: 12px; }
  .purple-row__col--prenatal p,
  .purple-row__col--tratamentos p { font-size: 14px; line-height: 1.7em; }
  .purple-row__col--image { min-height: 240px; }
  .purple-row__col--image img { min-height: 240px; max-height: 360px; }
  .purple-row__video { aspect-ratio: 9 / 16; max-width: 320px; margin: 0 auto; flex: none; }

  /* Testimonials */
  .testimonials { padding: 50px 0; }
  .testimonials__header { margin-bottom: 32px; }
  .testimonials__header h2 { font-size: 30px; }
  .testimonials__sub { font-size: 14px; }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;        /* evita stretch quebrar aspect-ratio */
  }
  .testimonial { padding: 22px 18px; }
  .testimonial__text { font-size: 13px; line-height: 1.7em; }
  .testimonial__author img { width: 50px; height: 50px; }
  .testimonial-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 200px;          /* garantia de altura mínima */
    display: block;
    position: relative;
    background: #000;
  }
  /* Garante visibilidade mesmo se IntersectionObserver não disparar */
  .testimonial-video[data-animation],
  .testimonial[data-animation] { opacity: 1; }
  .testimonial-video lite-youtube {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* CTA Precisa de uma Consulta — card vertical mobile
     Layout: top roxo (texto+botão) → meio: foto centrada no boundary → bottom rosa (body+lista)
     Foto fica overlap entre as duas metades, com waist no boundary */
  .cta-consulta {
    background: var(--c-white);
    overflow: visible;
    padding: 32px 0;
    line-height: 0;
  }
  .cta-consulta__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    background: var(--c-purple-dark);
    border-radius: 16px;
    overflow: hidden;
    width: calc(100% - 32px);            /* respeita a margin sem overflow */
    max-width: none;
    margin: 0 auto;                      /* centraliza dentro da viewport */
    gap: 0;
    text-align: center;
    padding: 0;
    align-items: stretch;
    line-height: normal;
    min-height: 0;
    position: relative;
    box-sizing: border-box;
  }
  /* TOP ROXO — texto + botão (CRM, título, subtítulo, botão) */
  .cta-consulta__left {
    order: 1;
    padding: 48px 24px 28px;             /* 48px topo (breathing room) */
    align-items: center;
    width: 100%;
    background: var(--c-purple-dark);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cta-consulta__crm {
    font-size: 12px;
    align-self: center;
    color: var(--c-pink);
    letter-spacing: 1px;
  }
  .cta-consulta__left h2 {
    font-size: 28px;
    line-height: 1.2em;
    margin: 0;
  }
  .cta-consulta__sub {
    font-size: 14px;
    margin: 0;
    color: var(--c-pink);
  }
  .cta-consulta__left .btn {
    align-self: center;
    margin-top: 8px;
  }
  /* FOTO — centrada entre as duas metades, com waist no boundary */
  .cta-consulta__photo {
    order: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    line-height: 0;
    font-size: 0;
    background: var(--c-purple-dark);
    /* Trick: usa height 0 e overflow visible pra que a foto não ocupe espaço no flow,
       mas seja exibida visualmente. Combinado com transform translateY pra posicionar
       exatamente no boundary. */
  }
  .cta-consulta__photo img {
    max-height: 280px;
    width: auto;
    max-width: 70%;
    margin: 0 auto;
    padding: 0;
    display: block;
    vertical-align: bottom;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.3));
  }
  /* BOTTOM ROSA — body text + checklist
     Pulled up via negative margin pra que a foto fique overlapping no boundary */
  .cta-consulta__right {
    order: 3;
    background: var(--c-pink);
    padding: 60px 22px 32px;              /* 60px topo pra acomodar parte da foto */
    border-radius: 0;
    align-items: flex-start;
    text-align: left;
    margin: -50px 0 0;                    /* puxa pra cima — foto ocupa o overlap */
    width: 100%;
    line-height: 1.7em;
    color: var(--c-white);
    position: relative;
    z-index: 1;
  }
  .cta-consulta__intro {
    font-size: 14px;
    color: var(--c-white);
    margin-bottom: 12px;
  }
  /* Override checklist no contexto CTA mobile pra ficar bem visível */
  .cta-consulta__right .checklist {
    width: 100%;
  }
  .cta-consulta__right .checklist li {
    color: var(--c-white);
    font-weight: 600;
    font-size: 14px;
  }

  /* Instituto Miziara */
  .clinica { padding: 50px 0; }
  .clinica__text h2 { font-size: 28px; }
  .clinica__text p { font-size: 14px; }
  .clinica__buttons { flex-direction: column; align-items: stretch; }
  .clinica__buttons .btn { justify-content: center; }
  .clinica__hours { padding: 18px 22px; }
  .clinica__hours h4 { font-size: 16px; }

  /* Laboratório */
  .laboratorio { padding: 50px 0; }
  .laboratorio__text h2 { font-size: 28px; line-height: 1.2em; }
  .laboratorio__text p { font-size: 14px; }
  .laboratorio__icon { width: 52px; height: 52px; font-size: 22px; }
  /* Reduz decorações no mobile */
  .laboratorio__circle--2, .laboratorio__dot--1, .laboratorio__swirl--1 { display: none; }
  .laboratorio__circle--3 { width: 50px; height: 50px; }

  /* Blog */
  .blog { padding: 50px 0; }
  .blog__header h2 { font-size: 30px; }
  .blog__grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-card__title { font-size: 15px; min-height: 0; }
  .blog-card__body { padding: 16px 18px 20px; }
  .blog-card__body p { font-size: 12px; }

  /* CTA Dual */
  .cta-dual { padding: 40px 0; }
  .cta-dual__inner { grid-template-columns: 1fr; gap: 16px; }
  .cta-dual__card { padding: 30px 22px; }
  .cta-dual__card h3 { font-size: 22px; }
  .cta-dual__card p { font-size: 14px; }
  .cta-dual__card .btn { align-self: center; width: 100%; justify-content: center; }

  /* Footer */
  .site-footer { padding-top: 36px; }
  .site-footer__inner { padding-bottom: 28px; gap: 20px; }
  .site-footer__brand h4 { font-size: 18px; }
  .site-footer__brand p { font-size: 12px; }
  .site-footer__bottom { font-size: 11px; padding: 14px 0; }
  .site-footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .site-footer__bottom ul { justify-content: center; flex-wrap: wrap; gap: 10px; }

  /* Floating WhatsApp menor */
  .floating-whatsapp { width: 50px; height: 50px; font-size: 24px; bottom: 16px; right: 16px; }

  /* Eyebrow menor */
  .eyebrow { font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — Small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .navbar__brand { font-size: 12px; }
  .btn { padding: 10px 14px; font-size: 11px; gap: 6px; }
  .navbar .btn { padding: 10px 14px; }

  .hero { padding: 36px 14px 28px; }
  .hero__title { font-size: clamp(26px, 8.5vw, 34px); }
  .hero__image img { max-height: 260px; }

  .services__heading-tag { font-size: 24px; }
  .service-card { padding: 24px 18px; }

  .stats__grid { gap: 18px 8px; }
  .stat__number { font-size: 36px; }
  .stat__label { font-size: 11px; }

  .testimonials__header h2,
  .blog__header h2 { font-size: 26px; }

  .cta-consulta__left h2 { font-size: 24px; }
  .clinica__text h2,
  .laboratorio__text h2,
  .experience__text h2 { font-size: 24px; }

  .cta-dual__card { padding: 26px 18px; }
  .cta-dual__card h3 { font-size: 20px; }

  .site-footer__brand h4 { font-size: 16px; }

  .floating-whatsapp { width: 46px; height: 46px; font-size: 22px; }

  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .site-footer__bottom ul { justify-content: center; }
}
