﻿:root {
  --gold: #b8945a;
  --gold-light: #d8be8c;
  --gold-soft: #ebdfc6;
  --gold-deep: #8a6d3b;
  --petrol: #123e3c;
  --petrol-deep: #0b2a29;
  --cream: #fbf7ef;
  --cream-2: #f4ebdb;
  --ink: #211e19;
  --muted: #6e665a;
  --line: rgba(138, 109, 59, 0.2);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.si {
  color: var(--gold-deep);
  font-style: italic;
}

.topbar {
  background: #232324;
  color: #d8be8c;
  font-size: 12.5px;
  margin-top: -30px !important;
}

.topbar .wrap {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar a {
  opacity: 0.85;
  transition: 0.2s;
}

.topbar a:hover {
  opacity: 1;
}

.topbar .social {
  display: flex;
  gap: 18px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #232324 !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 80px;
}

.logo img {
  height: 54px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-item.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-item.has-submenu > a::after {
  content: "â–¾";
  font-size: 11px;
  line-height: 1;
  opacity: 0.9;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #f4f1e8;
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 1;
  padding: 0;
}

.submenu-toggle::before {
  content: "â–¾";
  font-size: 12px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #232324;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.65);
  z-index: 90;
}

.submenu a {
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.3;
}

.submenu a:last-child {
  border-bottom: 0;
}

.menu-item.has-submenu:hover .submenu,
.menu-item.has-submenu.submenu-open .submenu {
  display: flex;
}

.menu-item.has-submenu:hover > a::after,
.menu-item.has-submenu.submenu-open > a::after {
  transform: translateY(1px) rotate(180deg);
}

.menu-item.has-submenu:hover .submenu-toggle::before,
.menu-item.has-submenu.submenu-open .submenu-toggle::before {
  transform: rotate(180deg);
}

.menu-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.menu a {
  font-size: 14px;
  font-weight: 600;
  color: #f4f1e8;
  transition: 0.2s;
}

.menu a:hover,
.menu a.active {
  color: #e9cfa2;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--petrol);
  border: 1px solid var(--petrol);
  color: var(--cream);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  transition: 0.25s;
}

.cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  transition: 0.25s;
}

.btn-ghost:hover {
  background: var(--gold);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #f4f1e8;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle at 60% 40%, var(--cream-2), transparent 62%);
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 70px 28px 84px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  margin: 18px 0 20px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
}

.hero-media .frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(18, 62, 60, 0.5);
}

.hero-media .frame img {
  width: min(530px, 84vw);
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.hero-media .badge {
  position: absolute;
  left: -24px;
  bottom: -22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  box-shadow: 0 22px 40px -22px rgba(18, 62, 60, 0.5);
}

.hero-media .badge b {
  display: block;
  font-size: 14px;
}

.hero-media .badge small {
  color: var(--muted);
}

/* Hero carrossel (modelo ronan-hero-carrossel.html) */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hc-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.hc-slide {
  min-width: 100%;
  position: relative;
}

.hero-carousel .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 14px 24px;
  border-radius: 50px;
  transition: 0.25s;
  border: 1px solid transparent;
}

.hero-carousel .btn svg {
  width: 16px;
  height: 16px;
}

.hero-carousel .btn-primary {
  background: var(--petrol);
  color: var(--cream);
  border-color: var(--petrol);
}

.hero-carousel .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.hero-carousel .btn-ghost {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: transparent;
}

.hero-carousel .btn-ghost:hover {
  background: var(--gold);
  color: #fff;
}

.hero-carousel .btn-light {
  background: var(--gold-light);
  color: var(--petrol-deep);
  border-color: var(--gold-light);
}

.hero-carousel .btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero-carousel .btn-ol-light {
  border-color: rgba(235, 223, 198, 0.6);
  color: var(--gold-soft);
  background: transparent;
}

.hero-carousel .btn-ol-light:hover {
  background: rgba(235, 223, 198, 0.12);
}

.hero-carousel .layout-split .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 72px 28px 84px;
  position: relative;
  z-index: 1;
}

.hero-carousel .layout-split::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle at 60% 40%, var(--cream-2), transparent 62%);
  z-index: 0;
}

.hero-carousel .layout-split h1,
.hero-carousel .layout-split h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin: 0 0 20px;
}

.hero-carousel .layout-split .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 470px;
  margin-bottom: 30px;
}

.hero-carousel .hc-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.hero-carousel .hc-media {
  position: relative;
  justify-self: center;
}

.hero-carousel .hc-media .frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(18, 62, 60, 0.5);
}

.hero-carousel .hc-media .frame img {
  width: min(430px, 82vw);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  display: block;
}

.hero-carousel .hc-media .badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 17px;
  box-shadow: 0 22px 40px -22px rgba(18, 62, 60, 0.5);
  display: flex;
  gap: 11px;
  align-items: center;
}

.hero-carousel .hc-media .badge .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 11px;
}

.hero-carousel .hc-media .badge b {
  font-size: 13px;
}

.hero-carousel .hc-media .badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.hero-carousel .layout-full {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-carousel .layout-full .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-carousel .layout-full .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 42, 41, 0.92) 0%, rgba(18, 62, 60, 0.78) 42%, rgba(18, 62, 60, 0.18) 100%);
}

.hero-carousel .layout-full .wrap {
  position: relative;
  z-index: 1;
  padding: 58px 28px;
}

.hero-carousel .layout-full .inner {
  max-width: 560px;
}

.hero-carousel .layout-full .eyebrow {
  color: var(--gold-light);
}

.hero-carousel .layout-full .eyebrow::before {
  background: var(--gold-light);
}

.hero-carousel .layout-full h1,
.hero-carousel .layout-full h2 {
  font-size: clamp(38px, 5.5vw, 66px);
  color: var(--cream);
  margin: 0 0 18px;
}

.hero-carousel .layout-full h1 .si,
.hero-carousel .layout-full h2 .si {
  color: var(--gold-light);
}

.hero-carousel .layout-full .lead {
  font-size: 18px;
  color: var(--gold-soft);
  opacity: 0.92;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-carousel .hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.25s;
}

.hero-carousel .hc-arrow:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.hero-carousel .hc-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--petrol);
  fill: none;
  stroke-width: 2;
}

.hero-carousel .hc-prev {
  left: 18px;
}

.hero-carousel .hc-next {
  right: 18px;
}

.hero-carousel .hc-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-carousel .hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(138, 109, 59, 0.35);
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.hero-carousel .hc-dot.active {
  background: var(--gold-deep);
  width: 30px;
  border-radius: 5px;
}

.hero-carousel.on-dark .hc-dot {
  background: rgba(235, 223, 198, 0.4);
}

.hero-carousel.on-dark .hc-dot.active {
  background: var(--gold-light);
}

.hero-carousel.on-dark .hc-arrow {
  background: rgba(11, 42, 41, 0.5);
  border-color: rgba(235, 223, 198, 0.3);
}

.hero-carousel.on-dark .hc-arrow svg {
  stroke: var(--gold-soft);
}

.hero-carousel.on-dark .hc-arrow:hover {
  background: rgba(11, 42, 41, 0.8);
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  flex-wrap: wrap;
}

.strip p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.strip .items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.sec {
  padding: 90px 0;
}

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  margin: 12px 0;
}

.sec-head p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s;
}

.card .card-hit {
  display: block;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -35px rgba(18, 62, 60, 0.5);
}

.card .ph {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.card:hover .ph img {
  transform: scale(1.05);
}

.card .body {
  padding: 22px 24px 24px;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.split .photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -36px rgba(18, 62, 60, 0.5);
}

.split .photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  margin: 12px 0 16px;
}

.split p {
  color: var(--muted);
  margin-bottom: 14px;
}

.quote {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin: 22px 0;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list b {
  color: var(--ink);
}

.chk {
  color: var(--gold);
  font-weight: 900;
}

.light {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.instagram-cta {
  background: #1f2022;
  color: #f4f1e8;
}

.instagram-cta .sec-head .eyebrow {
  color: var(--gold-light);
}

.instagram-cta .sec-head .eyebrow::before {
  background: var(--gold-light);
}

.instagram-cta .sec-head h2 {
  color: #fff;
}

.instagram-cta .sec-head p {
  color: #d6d2c8;
}

.ig-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.ig-action {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 190, 140, 0.25);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.ig-action h3 {
  font-size: 28px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.ig-action p {
  font-size: 14px;
  color: #e4dfd3;
}

.ig-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ig-primary {
  background: #e9cfa2;
  border: 1px solid #e9cfa2;
  color: #232324;
}

.btn-ig-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #232324;
}

.btn-ig-secondary {
  background: transparent;
  border: 1px solid rgba(216, 190, 140, 0.45);
  color: #f4f1e8;
}

.btn-ig-secondary:hover {
  background: rgba(216, 190, 140, 0.15);
  border-color: var(--gold-light);
  color: #fff;
}

.addresses {
  background: radial-gradient(circle at top, #2e355c 0%, #1e2442 45%, #151a30 100%);
  color: #f4f1e8;
}

.addresses .wrap {
  max-width: 980px;
  margin: 0 auto;
}

.addresses .sec-head {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 760px;
}

.addresses .sec-head .eyebrow {
  color: #cfd6ff;
}

.addresses .sec-head .eyebrow::before {
  background: #6ed0ff;
}

.addresses .sec-head h2 {
  color: #fff;
  margin: 12px 0 10px;
}

.addresses .sec-head p {
  color: #d7ddf7;
}

.address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.address-grid-single {
  max-width: 860px;
  margin: 0 auto;
}

.address-card {
  background: #fff;
  color: #1f2334;
  border-radius: 22px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 36px 68px -38px rgba(3, 8, 29, 0.75);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.address-map {
  width: 100%;
  margin: 0;
  height: 300px;
  border: 0;
}

.address-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #252a44;
}

.address-card p {
  color: #4c536d;
  font-size: 14px;
  margin-bottom: 14px;
}

.address-card .btn-ghost {
  width: 100%;
  border-color: #3b4674;
  color: #2a3357;
  margin-top: auto;
}

.address-card .btn-ghost:hover {
  background: #2a3357;
  border-color: #2a3357;
  color: #fff;
}

.contact-locations {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.location-map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 36px 68px -40px rgba(16, 46, 44, 0.42);
}

.location-map {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.location-body {
  padding: 20px 22px 22px;
}

.location-body h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.location-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-location-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.single-location-body {
  padding: 24px 26px 28px;
}

.single-location-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #40507f;
  background: linear-gradient(120deg, #e6ebff, #f2f5ff);
  margin-bottom: 14px;
}

.single-location-body h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.3vw, 38px);
  color: #212845;
}

.single-location-body p {
  margin-bottom: 16px;
  color: #4b5678;
  font-size: 15px;
  line-height: 1.7;
}

.single-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-location-actions .cta,
.single-location-actions .btn-ghost {
  min-height: 46px;
}

.single-location-actions .cta {
  flex: 1 1 230px;
  justify-content: center;
}

.single-location-actions .btn-ghost {
  flex: 1 1 200px;
  justify-content: center;
}

.depo-home {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dcard {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.dcard .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.dcard p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.dcard b {
  display: block;
  font-size: 14px;
}

.dcard small {
  color: var(--muted);
  font-size: 12px;
}

.blog-home {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px -30px rgba(18, 62, 60, 0.4);
}

.blog-card .date {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.blog-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.blog-card a {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 13px;
}

.services-catalog {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.service-groups {
  display: grid;
  gap: 26px;
}

.service-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}

.service-group h3 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 8px;
}

.service-group .intro {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: var(--cream);
}

.service-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.service-item .service-hit {
  display: block;
  color: inherit;
}

.service-item .service-hit:hover .mini-cta {
  text-decoration: underline;
}

.service-item h4 {
  font-size: 24px;
  margin-bottom: 6px;
}

.service-item p {
  color: var(--muted);
  font-size: 13.5px;
}

.service-item .mini-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.service-detail {
  background: var(--white);
}

.service-detail .wrap {
  max-width: 980px;
}

.service-detail h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
}

.service-detail h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 30px 0 10px;
}

.service-detail p {
  color: var(--muted);
  margin-bottom: 14px;
}

.service-detail .feature-list {
  margin-top: 8px;
}

/* Estrutura padrao das paginas unicas (modelo polissonografia v01) */
.phero {
  background: var(--petrol);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.phero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(216, 190, 140, 0.12), transparent 65%);
}

.phero .wrap {
  position: relative;
  padding: 30px 28px 0;
}

.phero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 54px;
}

.phero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin: 14px 0 18px;
  color: var(--cream);
}

.phero p {
  color: var(--gold-soft);
  opacity: 0.9;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 22px;
}

.phero .badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(216, 190, 140, 0.14);
  border: 1px solid rgba(216, 190, 140, 0.35);
  color: var(--gold-light);
  padding: 7px 14px;
  border-radius: 30px;
}

.hero-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-light);
  color: var(--petrol-deep);
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px 22px;
  border-radius: 50px;
  transition: 0.25s;
}

.btn-light:hover {
  background: #fff;
}

.btn-ol {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(216, 190, 140, 0.5);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 13.5px;
  padding: 13px 22px;
  border-radius: 50px;
}

.btn-ol:hover {
  background: rgba(216, 190, 140, 0.1);
}

.phero-img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216, 190, 140, 0.3);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

.phero-img img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

.body {
  padding: 80px 0;
}

.body .wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 40px 0 14px;
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.content .lead {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin: 6px 0 30px;
}

.content ul {
  list-style: none;
  margin: 6px 0 22px;
}

.content ul li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.content ul li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.content ul li b {
  color: var(--ink);
}

aside {
  position: sticky;
  top: 100px;
}

.acard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 50px -36px rgba(18, 62, 60, 0.4);
  margin-bottom: 18px;
}

.acard h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.acard p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.acard .cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.acard .tel {
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 15px;
}

.anav {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.anav h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.anav a {
  display: block;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.anav a:last-child {
  border-bottom: 0;
}

.anav a:hover {
  color: var(--gold-deep);
  padding-left: 6px;
}

.cta-band {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  text-align: center;
}

.cta-band .wrap {
  padding: 76px 28px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}

.cta-band p {
  margin-bottom: 26px;
  font-size: 17px;
}

.cta-band .cta {
  background: #fff;
  border-color: #fff;
  color: var(--gold-deep);
}

.cta-band .cta:hover {
  background: var(--petrol);
  border-color: var(--petrol);
  color: #fff;
}

footer {
  background: var(--petrol-deep);
  color: var(--gold-soft);
}

footer .wrap {
  padding: 56px 28px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

footer img {
  height: 48px;
  margin-bottom: 16px;
}

footer h5 {
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

footer p,
footer a {
  font-size: 13.5px;
  opacity: 0.8;
}

footer a {
  display: block;
  padding: 4px 0;
}

footer a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.copy {
  border-top: 1px solid rgba(216, 190, 140, 0.2);
  text-align: center;
  font-size: 12px;
  padding: 18px;
  opacity: 0.7;
}

.wpp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 60;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
}

.wpp:hover {
  transform: scale(1.06);
}

.crumb {
  color: var(--gold-soft);
  opacity: 0.85;
  font-size: 12.5px;
  margin-bottom: 24px;
}

.page-hero {
  background: var(--petrol);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 50%;
  height: 170%;
  background: radial-gradient(circle, rgba(216, 190, 140, 0.12), transparent 65%);
}

.page-hero .wrap {
  position: relative;
  padding: 30px 28px 56px;
}

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin: 12px 0 16px;
  color: var(--cream);
}

.page-hero p {
  color: var(--gold-soft);
  font-size: 17px;
  max-width: 700px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-list span {
  border: 1px solid rgba(216, 190, 140, 0.4);
  background: rgba(216, 190, 140, 0.14);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
}

.pedi-hero .wrap {
  padding-bottom: 40px;
}

.pedi-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.pedi-hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 190, 140, 0.3);
  box-shadow: 0 30px 60px -36px rgba(0, 0, 0, 0.62);
}

.pedi-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-pediatria .pedi-hero .reveal > .eyebrow {
  margin-bottom: 14px;
}

.page-pediatria .pedi-hero h1 {
  margin: 0 0 20px;
}

.page-pediatria .pedi-hero p {
  margin: 0 0 22px;
  line-height: 1.7;
  max-width: 64ch;
}

.page-pediatria .pedi-hero .pill-list {
  gap: 12px 10px;
  margin: 0 0 28px;
}

.page-pediatria .pedi-hero .pill-list span {
  padding: 8px 16px;
  line-height: 1.35;
}

.page-pediatria .pedi-hero .hero-cta {
  gap: 14px;
}

.page-pediatria .pedi-hero .hero-cta .btn-light,
.page-pediatria .pedi-hero .hero-cta .btn-ol {
  padding: 14px 24px;
}

.pedi-trust-strip {
  padding-top: 46px;
}

.pedi-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pedi-trust-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.pedi-trust-grid h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.pedi-trust-grid p {
  color: var(--muted);
  font-size: 14px;
}

.pedi-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.page-pediatria .pedi-story .reveal > .eyebrow {
  margin-bottom: 14px;
}

.page-pediatria .pedi-story h2 {
  margin: 0 0 18px;
  line-height: 1.14;
}

.page-pediatria .pedi-story p {
  margin: 0 0 16px;
  line-height: 1.75;
  max-width: 66ch;
}

.page-pediatria .pedi-story .feature-list {
  margin-top: 14px;
}

.page-pediatria .pedi-story .feature-list li {
  padding: 12px 0;
  line-height: 1.65;
}

.pedi-frame {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 52px -36px rgba(18, 62, 60, 0.44);
  overflow: hidden;
}

.pedi-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pedi-ronanzinho {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.pedi-ronan-main {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 26px;
  margin-top: 28px;
}

.pedi-ronan-character {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f3f3e;
}

.pedi-ronan-character img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pedi-ronan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pedi-ronan-cards article {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.pedi-ronan-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pedi-ronan-cards h3 {
  font-size: 23px;
  line-height: 1.16;
  padding: 12px 12px 14px;
}

.pedi-benefits {
  padding-top: 34px;
}

.pedi-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.pedi-benefit-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.pedi-benefit-grid h3 {
  font-size: 27px;
  margin-bottom: 6px;
}

.pedi-benefit-grid p {
  color: var(--muted);
  font-size: 14px;
}

.pedi-step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.pedi-step-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.pedi-step-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pedi-step-grid article h3 {
  font-size: 30px;
  margin: 14px 16px 6px;
}

.pedi-step-grid article p {
  color: var(--muted);
  margin: 0 16px 16px;
}

.pedi-gallery {
  background: #fff;
}

.pedi-gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pedi-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.pedi-manifesto {
  margin-top: 30px;
  padding: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 90, 0.35);
  background: linear-gradient(145deg, rgba(251, 247, 237, 0.95), rgba(241, 233, 216, 0.9));
  box-shadow: 0 32px 58px -36px rgba(18, 62, 60, 0.44);
}

.pedi-manifesto img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.page-pediatria section[class*="pedi-"] img.pedi-zoomable {
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-pediatria section[class*="pedi-"] img.pedi-zoomable:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -24px rgba(15, 63, 62, 0.55);
}

.page-pediatria section[class*="pedi-"] img.pedi-zoomable:focus-visible {
  outline: 3px solid rgba(184, 148, 90, 0.75);
  outline-offset: 3px;
}

.pedi-lightbox-open {
  overflow: hidden;
}

.pedi-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 23, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pedi-lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pedi-lightbox-surface {
  position: relative;
  width: min(1120px, 100%);
}

.pedi-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 96px);
  border-radius: 14px;
  object-fit: contain;
  background: #ffffff;
}

.pedi-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  border: 1px solid rgba(216, 190, 140, 0.6);
  background: rgba(15, 63, 62, 0.85);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.pedi-lightbox-close:focus-visible {
  outline: 3px solid rgba(216, 190, 140, 0.8);
  outline-offset: 2px;
}

.pedi-faq {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.pedi-final-cta {
  background-image: linear-gradient(135deg, rgba(138, 109, 59, 0.95), rgba(184, 148, 90, 0.92)), url("../images/pediatria/pediatria-cirurgia-tranquila.png");
  background-image: linear-gradient(135deg, rgba(138, 109, 59, 0.95), rgba(184, 148, 90, 0.92)), url("../images/pediatria/pediatria-cirurgia-tranquila.webp");
  background-size: cover;
  background-position: center;
}

.page-pediatria .pedi-instagram {
  background: #fff;
  padding-top: 48px;
}

.page-pediatria .pedi-instagram .sec-head p {
  max-width: 70ch;
}

.pedi-instagram-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.pedi-instagram-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 44px -34px rgba(18, 62, 60, 0.45);
  overflow: hidden;
}

.pedi-instagram-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #f6f5f2;
}

.pedi-instagram-fallback {
  display: none;
  margin: 0;
  padding: 16px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff8ef;
}

.pedi-instagram-fallback a {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: underline;
}

.pedi-instagram-card.is-failed iframe {
  display: none;
}

.pedi-instagram-card.is-failed .pedi-instagram-fallback {
  display: block;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
}

.ebook-section {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.ebook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ebook-card,
.ebook-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 50px -36px rgba(18, 62, 60, 0.35);
}

.ebook-spotlight {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 22px;
  align-items: start;
}

.ebook-cover-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 42px -28px rgba(18, 62, 60, 0.45);
  background: #f4ebdb;
}

.ebook-cover-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ebook-tag {
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.ebook-card h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 10px;
}

.ebook-card p,
.ebook-form-card p {
  color: var(--muted);
}

.ebook-form-card h3 {
  font-size: 34px;
  margin-bottom: 4px;
}

.ebook-form {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.ebook-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.ebook-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.ebook-form input:focus {
  outline: 2px solid rgba(184, 148, 90, 0.35);
  border-color: var(--gold);
}

.ebook-form .cta {
  margin-top: 8px;
}

.ebook-download {
  margin-top: 14px;
  width: 100%;
}

.form-alert {
  margin-top: 14px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}

.form-alert p + p {
  margin-top: 6px;
}

.form-alert.success {
  background: #e8f7ee;
  border: 1px solid #98d6ae;
  color: #205a37;
}

.form-alert.error {
  background: #fff0f0;
  border: 1px solid #efb2b2;
  color: #7a1f1f;
}

.ebook-missing {
  margin-top: 14px;
  font-size: 13px;
  color: #7a1f1f;
}

.qa {
  border-bottom: 1px solid var(--line);
}

.qa button {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.qa .icon {
  color: var(--gold);
  font-size: 30px;
  transition: 0.2s;
}

.qa .ans {
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.qa.open .ans {
  max-height: 260px;
  padding-bottom: 18px;
}

.qa.open .icon {
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    background: #232324;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 28px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-130%);
    transition: 0.3s;
  }

  .menu-item.has-submenu {
    display: block;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin-top: 10px;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .menu.open {
    transform: none;
  }

  .menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu .cta {
    margin-top: 10px;
  }

  .submenu a {
    padding-left: 16px;
    font-size: 12.5px;
  }

  .burger {
    display: flex;
  }

  .nav > .cta {
    display: none;
  }

  .pedi-hero-grid,
  .pedi-split,
  .pedi-ronan-main {
    grid-template-columns: 1fr;
  }

  .pedi-hero-grid {
    gap: 28px;
  }

  .page-pediatria .pedi-hero p {
    margin-bottom: 18px;
    line-height: 1.65;
  }

  .page-pediatria .pedi-hero .pill-list {
    gap: 10px;
    margin-bottom: 22px;
  }

  .page-pediatria .pedi-hero .pill-list span {
    padding: 8px 14px;
  }

  .page-pediatria .pedi-hero .hero-cta {
    gap: 12px;
  }

  .page-pediatria .pedi-story h2 {
    margin-bottom: 14px;
  }

  .page-pediatria .pedi-story p {
    margin-bottom: 14px;
    line-height: 1.7;
  }

  .pedi-trust-grid,
  .pedi-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pedi-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pedi-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pedi-lightbox-overlay {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .hero .wrap,
  .split,
  .addresses .wrap {
    grid-template-columns: 1fr;
  }

  .ebook-grid {
    grid-template-columns: 1fr;
  }

  .ebook-spotlight {
    grid-template-columns: 1fr;
  }

  .ebook-cover-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .phero-grid {
    grid-template-columns: 1fr;
  }

  .phero-img {
    order: -1;
  }

  .body .wrap {
    grid-template-columns: 1fr;
  }

  aside {
    position: static;
  }

  .hero-media {
    order: -1;
  }

  .hero-media .badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-carousel .layout-split .wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 28px 70px;
  }

  .hero-carousel .layout-split .lead {
    margin-inline: auto;
  }

  .hero-carousel .layout-split .hc-cta {
    justify-content: center;
  }

  .hero-carousel .hc-media {
    order: -1;
  }

  .hero-carousel .hc-media .badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-carousel .layout-full {
    min-height: 520px;
  }

  .hero-carousel .layout-full .bg::after {
    background: linear-gradient(180deg, rgba(11, 42, 41, 0.82), rgba(18, 62, 60, 0.72));
  }

  .hero-carousel .layout-full .inner {
    text-align: center;
    margin-inline: auto;
  }

  .hero-carousel .layout-full .hc-cta {
    justify-content: center;
  }

  .hero-carousel .hc-arrow {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar .addr {
    display: none;
  }

  .strip .items {
    font-size: 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .ig-actions {
    grid-template-columns: 1fr;
  }

  .address-map,
  .location-map {
    height: 240px;
  }

  .single-location-body {
    padding: 20px 18px 20px;
  }

  .single-location-actions {
    flex-direction: column;
  }

  .single-location-actions .cta,
  .single-location-actions .btn-ghost {
    width: 100%;
  }

  .depo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .pedi-trust-grid,
  .pedi-benefit-grid,
  .pedi-step-grid,
  .pedi-ronan-cards {
    grid-template-columns: 1fr;
  }

  .pedi-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pedi-instagram-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-pediatria .pedi-instagram {
    padding-top: 36px;
  }

  .pedi-trust-strip {
    padding-top: 34px;
  }

  .pedi-hero .wrap {
    padding-bottom: 30px;
  }

  .page-pediatria .pedi-hero .pill-list {
    gap: 8px;
  }

  .page-pediatria .pedi-hero .pill-list span {
    font-size: 11.5px;
    padding: 7px 12px;
  }

  .page-pediatria .pedi-hero .hero-cta {
    gap: 10px;
  }

  .page-pediatria .pedi-hero .hero-cta .btn-light,
  .page-pediatria .pedi-hero .hero-cta .btn-ol {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .page-pediatria .pedi-story .feature-list {
    margin-top: 10px;
  }

  .page-pediatria .pedi-story .feature-list li {
    padding: 10px 0;
  }

  .pedi-lightbox-overlay {
    padding: 16px;
  }

  .pedi-lightbox-close {
    top: -38px;
    font-size: 12px;
    padding: 7px 12px;
  }

  .pedi-manifesto {
    padding: 10px;
    margin-top: 24px;
  }

  footer .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

  .hero .wrap {
    padding: 52px 20px 74px;
  }

  .sec {
    padding: 74px 0;
  }

  .qa button {
    font-size: 24px;
  }

  footer .wrap {
    grid-template-columns: 1fr;
  }
}

