/* ============================================
   MEDIC CENTER — Estilos gerais
   ============================================ */

:root {
  --navy: #14528e;
  --navy-dark: #0e3b68;
  --teal: #0ea6bf;
  --sky: #14a6e0;
  --grad: linear-gradient(120deg, var(--teal), var(--navy));
  --bg-light: #f5f9fc;
  --bg-white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #5b6b7c;
  --border-color: #e3ebf2;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(20, 82, 142, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 82, 142, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

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

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-light);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 48px;
}

.section-header {
  text-align: center;
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ============ Botões ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 82, 142, 0.3);
}
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 82, 142, 0.4); }

.btn--sm { padding: 10px 20px; font-size: 14px; }

/* ============ Header ============ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  padding: 18px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(20, 82, 142, 0.08);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 50px; width: auto; transition: height 0.3s ease; }
.header.scrolled .logo img { height: 42px; }

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

.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-dark);
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
}
.header:not(.scrolled) .nav a { color: #fff; }
.nav a:hover { opacity: 1; }

.header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 5px 0;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-toggle.active span { background: var(--navy-dark) !important; }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/fachada.jpg') center 18% / cover no-repeat;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 45, 82, 0.92) 10%, rgba(14, 74, 110, 0.82) 55%, rgba(14, 130, 150, 0.55) 100%);
  z-index: -1;
}

.hero__content { max-width: 680px; padding-top: 90px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: #7fe3f0; }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 0 36px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.hero__stat strong { display: block; font-size: 30px; font-weight: 800; }
.hero__stat span { font-size: 13.5px; color: rgba(255,255,255,0.8); }

/* ============ Sobre ============ */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.about__badge .icon-circle { width: 46px; height: 46px; flex-shrink: 0; }
.about__badge strong { display: block; font-size: 15px; color: var(--navy-dark); }
.about__badge span { font-size: 13px; color: var(--text-muted); }

.about__text .section-desc { margin-bottom: 28px; }

.about__list { display: grid; gap: 16px; margin-bottom: 32px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--text-main);
}
.about__list .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* ============ Icon circle ============ */
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,166,191,0.14), rgba(20,82,142,0.14));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.icon-circle svg { width: 26px; height: 26px; }

/* ============ Fundador ============ */

.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder__media { position: relative; }
.founder__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.founder__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.founder__badge .icon-circle { width: 46px; height: 46px; flex-shrink: 0; }
.founder__badge strong { display: block; font-size: 15px; color: var(--navy-dark); }
.founder__badge span { font-size: 13px; color: var(--text-muted); }
.founder__quote {
  margin: 22px 0 24px;
  padding: 22px 26px;
  border-left: 3px solid var(--teal);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}
.founder__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.founder__pair-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.founder__pair-item strong {
  display: block;
  font-size: 15.5px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.founder__pair-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============ Especialidades ============ */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.spec-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.spec-card strong { font-size: 15.5px; color: var(--navy-dark); font-weight: 700; }
.spec-card span { font-size: 13px; color: var(--text-muted); }

/* ============ Exames (accordion) ============ */

.accordion { max-width: 880px; margin: 0 auto; }

.accordion-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.accordion-trigger__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.accordion-trigger__title strong { font-size: 16.5px; color: var(--navy-dark); }
.accordion-trigger__title span { font-size: 13px; color: var(--text-muted); display:block; }

.accordion-trigger .chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--teal);
}

.accordion-item.open .chevron { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel__inner {
  padding: 0 26px 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 20px;
}

.accordion-panel__inner li {
  font-size: 14.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.accordion-panel__inner li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.accordion-subnote {
  margin: 4px 26px 26px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-color);
}
.accordion-subnote__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.accordion-subnote__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.accordion-subnote__list span {
  font-size: 12.5px;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============ Estética destaque ============ */

.estetica {
  background: var(--grad);
  border-radius: 24px;
  padding: 64px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.estetica__text .section-tag { color: #bdf3f8; }
.estetica__text h3 { font-size: clamp(24px,3.4vw,32px); font-weight: 800; margin: 0 0 16px; }
.estetica__text p { color: rgba(255,255,255,0.9); margin-bottom: 26px; }
.estetica__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.estetica__tags span {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.estetica__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 14px; min-height: 380px; }
.estetica__media img {
  border-radius: 16px;
  height: 170px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.estetica__media img.estetica__portrait {
  grid-row: 1 / 3;
  height: 100%;
  object-position: top center;
}

/* ---- GS Clinique (paleta rosé/gold) ---- */
:root {
  --gs-rose: #c9987a;
  --gs-rose-light: #e9c7b0;
  --gs-brown: #6b4a36;
  --gs-dark: #2a211c;
}
.estetica--gs {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, var(--gs-dark) 0%, var(--gs-brown) 55%, var(--gs-rose) 120%);
}
.estetica--gs .estetica__text .section-tag { color: var(--gs-rose-light); }
.estetica--gs .estetica__tags span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(233,199,176,0.4);
}
.estetica--gs .btn--whatsapp { background: var(--whatsapp); }
.estetica__watermark {
  position: absolute;
  top: 50%;
  right: -6%;
  width: 620px;
  max-width: 60%;
  height: auto;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.estetica--gs .estetica__text,
.estetica--gs .estetica__media {
  position: relative;
  z-index: 1;
}
.estetica__logo {
  height: 120px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.97;
}
.estetica__credential {
  display: block;
  font-size: 13px;
  color: var(--gs-rose-light);
  font-weight: 600;
  margin: -14px 0 26px;
}

/* ============ Instagram ============ */

.ig-banner {
  background: linear-gradient(120deg, #4f5bd5, #962fbf 30%, #d62976 60%, #fa7e1e 85%, #feda75);
  border-radius: 24px;
  padding: 44px 56px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.ig-banner__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ig-banner__icon svg { width: 32px; height: 32px; }
.ig-banner__text { flex: 1; min-width: 220px; }
.ig-banner__text h3 { font-size: 24px; font-weight: 800; margin: 6px 0 6px; }
.ig-banner__text p { margin: 0; color: rgba(255,255,255,0.92); font-size: 14.5px; }

/* ============ Galeria ============ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,45,82,0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery a:hover::after { opacity: 1; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }

/* ============ Horário / Localização ============ */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 20px; color: var(--navy-dark); margin: 0 0 22px;
  display: flex; align-items: center; gap: 12px;
}

.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.info-row:last-child { margin-bottom: 0; }
.info-row strong { display: block; font-size: 14.5px; color: var(--navy-dark); margin-bottom: 3px; }
.info-row span, .info-row a { font-size: 14.5px; color: var(--text-muted); }
.info-row a:hover { color: var(--teal); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 9px 0; font-size: 14.5px; border-bottom: 1px dashed var(--border-color); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--text-main); font-weight: 600; }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 340px;
  border: 1px solid var(--border-color);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============ CTA final ============ */

.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--teal));
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(26px,3.6vw,36px); font-weight: 800; margin: 0 0 14px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 32px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */

.footer { background: #0e2f52; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo img { height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer p.footer__desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer h4 { color: #fff; font-size: 15px; margin: 0 0 18px; }
.footer ul li { margin-bottom: 12px; font-size: 14px; }
.footer ul li a:hover { color: #7fe3f0; }
.footer .social { display: flex; gap: 12px; margin-top: 18px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer .social a:hover { background: var(--teal); }
.footer .social svg { width: 17px; height: 17px; }
.footer__bottom {
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============ WhatsApp flutuante ============ */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 30px rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,0.5); }
}

/* ============ Responsivo ============ */

@media (max-width: 980px) {
  .about, .info-grid, .estetica, .founder { grid-template-columns: 1fr; }
  .about__media img { height: 340px; }
  .founder__media img { height: 340px; }
  .founder__badge { position: static; margin-top: -40px; margin-left: 16px; max-width: none; }
  .founder__pair { grid-template-columns: 1fr; }
  .ig-banner { padding: 36px 32px; text-align: center; justify-content: center; }
  .estetica { padding: 44px 32px; }
  .estetica__media { min-height: 300px; }
  .estetica__media img.estetica__portrait { height: 260px; grid-row: auto; grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-wide { grid-column: span 2; }
}

@media (max-width: 880px) {
  .section { padding: 64px 0; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--navy-dark) !important; font-size: 17px; }
  .nav-toggle { display: block; }
  .header__actions .btn--sm { display: none; }
  .hero__content { padding-top: 70px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 22px; }
  .about__badge { position: static; margin-top: -40px; margin-left: 16px; max-width: none; }
  .estetica { padding: 36px 22px; }
  .founder__quote { font-size: 15.5px; padding: 18px 20px; }
  .ig-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .cta-banner { padding: 44px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 18px; right: 18px; width: 56px; height: 56px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}
