:root {
  --blue-950: #0a2540;
  --blue-800: #0d4d75;
  --blue-600: #1477a8;
  --blue-400: #4ab5df;
  --sky-100: #e9f8ff;
  --sky-50: #f6fcff;
  --white: #ffffff;
  --ink: #173247;
  --muted: #64798a;
  --line: #d9edf7;
  --shadow: 0 24px 70px rgba(13, 77, 117, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 237, 247, 0.86);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(13, 77, 117, 0.08);
}

.topbar {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 38px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.topbar-link {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

.topbar-link:hover {
  color: var(--blue-400);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 160ms ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-800));
  box-shadow: 0 8px 18px rgba(20, 119, 168, 0.28);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: var(--blue-950);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:not(.btn) {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-950);
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 200ms ease;
}

.nav-links a:not(.btn):hover,
.nav-links a.is-active {
  color: var(--blue-600);
  background: var(--sky-100);
}

.nav-links a.is-active::after,
.nav-links a:not(.btn):hover::after {
  width: 22px;
}

.text-link:hover,
.footer a:hover {
  color: var(--blue-600);
}

.btn-wa {
  margin-left: 12px;
  gap: 8px;
  padding: 0 20px;
  background: linear-gradient(135deg, #1ebe5a, #128c3a);
  box-shadow: 0 12px 28px rgba(30, 190, 90, 0.32);
}

.btn-wa:hover {
  background: linear-gradient(135deg, #25d366, #128c3a);
  box-shadow: 0 16px 36px rgba(30, 190, 90, 0.4);
}

.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue-950);
}

.section {
  padding: 96px 0;
}

.soft {
  background:
    radial-gradient(circle at top left, rgba(74, 181, 223, 0.22), transparent 34%),
    linear-gradient(180deg, var(--sky-50), #ffffff);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 80px;
  background:
    linear-gradient(135deg, rgba(233, 248, 255, 0.98), rgba(255, 255, 255, 0.94)),
    url("https://storage.googleapis.com/msgsndr/JIqGSgDxlED3T0tNUQO2/media/6897e709ea5db735689f9d35.png") center/cover;
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 181, 223, 0.28), rgba(13, 77, 117, 0.08));
}

.hero-grid,
.offer-grid,
.reservation-grid,
.contact-grid,
.split {
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.04fr 0.96fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--blue-400);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--blue-950);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-copy > p,
.section-heading p,
.reservation-copy > p,
.contact-grid p,
.offer-grid > div > p {
  max-width: 580px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 16px 34px rgba(20, 119, 168, 0.28);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20, 119, 168, 0.34);
}

.btn-secondary {
  color: var(--blue-800);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(217, 237, 247, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(13, 77, 117, 0.08);
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--blue-950);
  font-size: 1.26rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: var(--white);
  background: rgba(10, 37, 64, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.align-left {
  margin: 0;
  text-align: left;
}

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

.card,
.case-card,
.form-card,
.price-card,
.contact-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(13, 77, 117, 0.08);
}

.card {
  padding: 30px;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-800);
  background: var(--sky-100);
  font-weight: 800;
}

.split {
  grid-template-columns: 0.78fr 1.22fr;
}

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

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.case-card h3,
.case-card p {
  padding: 0 22px;
}

.case-card h3 {
  margin-top: 20px;
}

.case-card p {
  padding-bottom: 22px;
  font-size: 0.94rem;
}

.text-link {
  color: var(--blue-600);
  font-weight: 800;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.doctor-media {
  position: relative;
}

.doctor-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.doctor-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(13, 77, 117, 0.18);
}

.doctor-badge strong {
  color: var(--blue-950);
  font-size: 1.02rem;
}

.doctor-badge span {
  color: var(--muted);
  font-size: 0.82rem;
}

.doctor-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.doctor-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--sky-50);
}

.doctor-list strong {
  color: var(--blue-950);
}

.doctor-list span {
  color: var(--muted);
}

.doctor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calendar-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  padding: 0 6px 18px;
  border-bottom: 1px solid var(--line);
}

.cal-month {
  color: var(--blue-950);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.cal-nav {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sky-50);
  color: var(--blue-800);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.cal-nav:hover:not(:disabled) {
  background: var(--blue-600);
  color: var(--white);
}

.cal-nav:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.cal-grid {
  display: grid;
  gap: 8px;
}

.cal-weekdays,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.cal-weekdays {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cal-days button {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--sky-50);
  color: var(--blue-950);
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border 160ms ease;
}

.cal-days button:hover:not(:disabled) {
  border-color: var(--blue-400);
  background: var(--white);
  transform: translateY(-1px);
}

.cal-days button.is-blank {
  background: transparent;
  pointer-events: none;
}

.cal-days button.is-disabled {
  color: #b0c1cd;
  background: transparent;
  cursor: not-allowed;
}

.cal-days button.is-today {
  border-color: var(--blue-400);
}

.cal-days button.is-active {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(20, 119, 168, 0.32);
}

.cal-slots {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--sky-50);
}

.cal-slots-header strong,
.cal-slots-header span {
  display: block;
}

.cal-slots-header strong {
  color: var(--blue-950);
  font-size: 1rem;
  text-transform: capitalize;
}

.cal-slots-header span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.slots-grid button {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 700;
  cursor: pointer;
  transition: border 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.slots-grid button:hover {
  border-color: var(--blue-400);
  transform: translateY(-1px);
}

.slots-grid button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(20, 119, 168, 0.3);
}

.slots-empty {
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.selected-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 14px 18px;
  border: 1px solid var(--blue-400);
  border-radius: 16px;
  background: var(--sky-50);
}

.selected-slot span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.selected-slot strong {
  flex: 1 1 auto;
  color: var(--blue-950);
  font-size: 1rem;
  text-transform: capitalize;
}

.video-band {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.video-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 40px;
  color: var(--white);
}

.video-card h2,
.video-card p {
  color: var(--white);
}

.video-card p {
  color: rgba(255, 255, 255, 0.72);
}

.video-card .eyebrow {
  color: #b9efff;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-width: 120px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 26px;
}

.steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700, #0f6592));
  font-weight: 800;
}

.offer {
  background:
    radial-gradient(circle at 86% 20%, rgba(74, 181, 223, 0.26), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.offer-grid {
  grid-template-columns: 1fr 380px;
}

.offer h2,
.offer p,
.offer li,
.offer .eyebrow {
  color: var(--white);
}

.offer p,
.offer li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: #b9efff;
  font-weight: 900;
}

.price-card {
  padding: 34px;
  text-align: center;
}

.price-card span,
.price-card del,
.price-card strong {
  display: block;
}

.price-card span {
  color: var(--muted);
  font-weight: 700;
}

.price-card del {
  margin: 6px 0;
  color: #93a9b8;
  font-size: 1.5rem;
}

.price-card strong {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: clamp(3rem, 7vw, 4.6rem);
  letter-spacing: -0.08em;
}

.reservation-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
  display: grid;
  gap: 6px;
  max-width: 440px;
  margin-top: 28px;
  padding: 24px;
}

.contact-card strong {
  color: var(--blue-950);
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--blue-600);
  font-weight: 800;
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 800;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--sky-50);
  outline: none;
  transition:
    border 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 181, 223, 0.16);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  text-align: center;
}

.contact-grid {
  grid-template-columns: 1fr 0.9fr;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--blue-800);
  background: var(--white);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  font-weight: 900;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-950);
}

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

.footer div div {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .topbar-divider,
  .topbar .topbar-item:not(.topbar-link) {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    padding: 12px 16px;
    border-radius: 14px;
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-links a.is-active {
    background: var(--sky-100);
  }

  .btn-wa {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero-grid,
  .split,
  .video-card,
  .offer-grid,
  .reservation-grid,
  .contact-grid,
  .doctor-grid,
  .calendar-card {
    grid-template-columns: 1fr;
  }

  .calendar-card {
    padding: 22px;
  }

  .doctor-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-media img {
    max-height: 420px;
  }

  .benefits-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid {
    gap: 32px;
  }

  .price-card {
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .trust-row,
  .benefits-grid,
  .case-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .hero-media img {
    max-height: 360px;
    aspect-ratio: 1 / 1;
    border-width: 6px;
    border-radius: 22px;
  }

  .brand-text small {
    display: none;
  }

  .floating-card {
    left: 16px;
    right: 16px;
  }

  .form-card,
  .price-card,
  .card,
  .steps article {
    padding: 24px;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
  }
}
/* Contenedor principal del mapa */
.contenedor-mapa {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Relación de aspecto 16:9 (puedes ajustarlo cambiando el porcentaje) */
    padding-top: 56.25%; 
    border-radius: 8px; /* Opcional: bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Opcional: sombra elegante */
}

/* Estilos para el iframe dentro del contenedor */
.contenedor-mapa iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}