:root {
  --green: #008d3b;
  --green-dark: #006e34;
  --green-soft: #e6f7ee;
  --blue: #006ea8;
  --ink: #10231b;
  --muted: #5c6f65;
  --line: #d7e7dd;
  --cream: #fbfcf7;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(0, 67, 38, 0.16), 0 4px 12px rgba(0, 67, 38, 0.08);
  --deep-shadow: 0 30px 90px rgba(0, 67, 38, 0.24), 0 8px 22px rgba(0, 67, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f4fbf7 0%, #ffffff 42%, #f7fbfa 100%);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(0, 141, 59, 0.2);
  }
  50% {
    box-shadow: 0 16px 38px rgba(0, 141, 59, 0.34);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(99, 240, 142, 0.18);
  }
  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 9px rgba(99, 240, 142, 0.08);
  }
}

@keyframes slowZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes carouselSlide {
  0%,
  28% {
    transform: translateX(0);
  }
  34%,
  62% {
    transform: translateX(calc(-100% - 18px));
  }
  68%,
  94% {
    transform: translateX(calc(-200% - 36px));
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes galleryFade {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }
  26%,
  95% {
    opacity: 0;
    transform: scale(1.025);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 4px clamp(14px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 231, 221, 0.9);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 142px;
  height: 74px;
  object-fit: contain;
}

nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: #33473c;
  font-weight: 700;
  font-size: 0.95rem;
}

nav a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.icon-button,
.header-whatsapp,
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.mobile-menu {
  display: none;
}

.header-whatsapp,
.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(0, 141, 59, 0.2);
}

.header-whatsapp,
.hero-actions .button.primary {
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.header-whatsapp {
  min-width: 152px;
  padding: 0 16px;
  white-space: nowrap;
}

.header-whatsapp:hover,
.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100svh - 76px);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 29, 19, 0.86), rgba(8, 29, 19, 0.54) 42%, rgba(8, 29, 19, 0.16)),
    linear-gradient(180deg, rgba(8, 29, 19, 0.1), rgba(8, 29, 19, 0.34));
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - 76px);
  width: min(760px, 100%);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 76px);
  color: var(--white);
}

.hero-logo-mark {
  width: clamp(110px, 12vw, 148px);
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 8px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.2));
  animation: fadeUp 0.7s ease-out both, softFloat 5.5s ease-in-out 1.2s infinite;
}

.hero-brand-title {
  margin: 0 0 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(0, 110, 52, 0.95),
    0 5px 0 rgba(0, 79, 38, 0.72),
    0 14px 28px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.7s ease-out both;
}

.hero-overlay .eyebrow {
  color: #9be6bc;
  animation: fadeUp 0.7s ease-out 0.08s both;
}

.hero-overlay h1 {
  animation: fadeUp 0.7s ease-out 0.18s both;
}

.hero-lead {
  animation: fadeUp 0.7s ease-out 0.28s both;
}

.hero-actions {
  animation: fadeUp 0.7s ease-out 0.38s both;
}

.quick-info {
  animation: fadeUp 0.7s ease-out 0.48s both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(2.75rem, 5.7vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-title-break {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.hero-lead,
.section p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 520;
}

.hero-actions,
.quick-info,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 30px 0 24px;
}

.button {
  padding: 0 18px;
  text-align: center;
}

.hero-actions .button.primary.hero-whatsapp {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon label"
    "icon number";
  justify-items: start;
  min-height: 68px;
  padding: 10px 20px;
  text-align: left;
  background: rgba(0, 141, 59, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  animation: fadeUp 0.7s ease-out 0.38s both;
}

.hero-actions .button.primary.hero-whatsapp:hover {
  background: rgba(0, 110, 52, 0.56);
}

.hero-whatsapp svg {
  grid-area: icon;
  align-self: center;
}

.hero-whatsapp span {
  grid-area: label;
  font-size: 1rem;
}

.hero-whatsapp strong {
  grid-area: number;
  font-size: 1.2rem;
  line-height: 1.1;
}

.quick-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 750;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  animation: galleryFade 16s ease-in-out infinite;
}

.hero-slide img {
  position: absolute;
  inset: 0;
}

.hero-slide-bg {
  display: none;
}

.hero-carousel .hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-carousel .hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.hero-carousel .hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.hero-carousel .hero-slide:nth-child(4) {
  animation-delay: 12s;
}

.floating-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  width: fit-content;
  margin-top: 18px;
  padding: 16px;
  color: var(--white);
  background: rgba(0, 110, 52, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  animation: fadeUp 0.7s ease-out 0.65s both;
}

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

.floating-card span {
  opacity: 0.86;
}

.floating-card::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #63f08e;
  box-shadow: 0 0 0 5px rgba(99, 240, 142, 0.18);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.floating-card.is-closed {
  background: rgba(72, 88, 78, 0.9);
}

.floating-card.is-closed::before {
  background: #ffcc66;
  box-shadow: 0 0 0 5px rgba(255, 204, 102, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.insurance-marquee {
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  margin-bottom: 22px;
  background: var(--green-dark);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marqueeMove 42s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.care-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  min-height: clamp(360px, 50vw, 620px);
  border-radius: 8px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.care-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.care-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 27, 0.72), rgba(16, 35, 27, 0.24) 48%, rgba(16, 35, 27, 0.02));
}

.care-slide div {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 5vw, 62px);
  bottom: clamp(22px, 5vw, 58px);
  display: grid;
  gap: 10px;
  max-width: 560px;
  color: var(--white);
}

.care-slide span {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.care-slide strong {
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6dfd1;
}

.carousel-dots span:first-child {
  background: var(--green);
}

.trust-item {
  display: grid;
  align-content: center;
  gap: 0;
  min-height: 86px;
  padding: 18px;
  background: var(--white);
  border: 0;
  color: var(--green-dark);
  font: inherit;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.trust-item {
  animation: fadeUp 0.65s ease-out both;
}

.trust-item:nth-child(2) {
  animation-delay: 0.08s;
}

.trust-item:nth-child(3) {
  animation-delay: 0.16s;
}

.trust-item:nth-child(4) {
  animation-delay: 0.24s;
}

.trust-item-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-item-copy {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: #496155;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.4;
  opacity: 0;
  transition: max-height 0.25s ease, margin-top 0.25s ease, opacity 0.25s ease;
}

.trust-item.is-open .trust-item-copy {
  max-height: 100px;
  margin-top: 10px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 76px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 16px;
  background: var(--green-soft);
  border: 1px solid #ccebd9;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 67, 38, 0.11), 0 3px 8px rgba(0, 67, 38, 0.06);
  color: var(--green-dark);
  font-weight: 850;
}

.service-card svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.image-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding-top: 0;
}

.image-panel,
.review-panel {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--green-soft);
  border: 1px solid var(--line);
}

.turno-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  padding: clamp(26px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 141, 59, 0.96), rgba(0, 110, 52, 0.96)),
    var(--green);
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.turno-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.turno-label svg,
.calendar-symbol {
  color: #9be6bc;
}

.turno-label span:last-child {
  width: fit-content;
  padding: 8px 12px;
  color: #dff8e9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.turno-card h2 {
  margin-bottom: 0;
}

.turno-card p {
  margin-bottom: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
}

.turno-card .button {
  width: fit-content;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: none;
}

.review-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 141, 59, 0.08), transparent 42%),
    var(--white);
  box-shadow: var(--shadow);
}

.review-panel .google-logo {
  width: min(300px, 88%);
  height: auto;
  object-fit: contain;
  justify-self: center;
}

.review-panel .qr-clean {
  width: min(230px, 68vw);
  height: auto;
  padding: 14px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-panel p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.reviews-section {
  background: #eef8f2;
}

.reviews-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 18px;
  background: rgba(0, 141, 59, 0.08);
  border-radius: 999px;
}

.reviews-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.reviews-heading h2 span {
  color: #f5a400;
  font-size: 0.9em;
}

.reviews-heading p:last-child {
  margin-bottom: 0;
  color: #40564b;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 236px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 67, 38, 0.13), 0 4px 10px rgba(0, 67, 38, 0.06);
}

.review-card:nth-child(4) {
  grid-column: 2;
}

.stars {
  color: #f5a400;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: #30483b;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
}

.review-card strong {
  color: var(--ink);
  font-weight: 900;
}

.info-section {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.info-section .eyebrow,
.info-section p {
  color: #9be6bc;
}

.hours-list,
.map-card,
.duty-card,
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
}

.hours-list {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.hours-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  border: 9px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hours-list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 34px;
  border-left: 8px solid rgba(255, 255, 255, 0.055);
  border-bottom: 8px solid rgba(255, 255, 255, 0.055);
  transform: translate(-3px, -28px);
  transform-origin: left bottom;
  pointer-events: none;
}

.hours-list div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: #c7ded2;
  font-size: 1.02rem;
}

.hours-list strong {
  font-size: 1.12rem;
}

.map-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(rgba(8, 29, 19, 0.68), rgba(8, 29, 19, 0.68)),
    url("/assets/fachada-morris-bg.png") center / cover;
  border-color: rgba(255, 255, 255, 0.2);
}

.map-card > * {
  position: relative;
  z-index: 1;
}

.map-card strong,
.map-card svg {
  color: var(--white);
}

.map-card span,
.duty-card span,
.contact-card span,
.footer span {
  display: block;
  color: var(--muted);
}

.map-card span {
  color: rgba(255, 255, 255, 0.86);
}

.map-card a {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.day-selector {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.day-selector button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 15px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.day-selector button.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.duty-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.duty-card svg {
  color: var(--green);
}

.duty-card p {
  margin-bottom: 0;
}

.duty-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 12px;
  padding: 0;
  list-style: none;
}

.duty-list li {
  padding: 10px 12px;
  color: #27463a;
  background: var(--green-soft);
  border: 1px solid #ccebd9;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.35;
}

.duty-card small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.duty-actions {
  display: grid;
  gap: 10px;
  align-self: stretch;
  align-content: center;
}

.duty-actions input {
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: 0;
}

.contact-copy img {
  width: 150px;
  margin-bottom: 24px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 16px 34px rgba(0, 67, 38, 0.13), 0 3px 8px rgba(0, 67, 38, 0.06);
}

.contact-card svg {
  grid-row: span 2;
  color: var(--green);
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.contact-card.highlight {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.contact-card.highlight span,
.contact-card.highlight svg {
  color: rgba(255, 255, 255, 0.84);
}

.social-contact-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.social-contact-card > span {
  color: var(--ink);
  font-weight: 900;
}

.social-contact-card > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #ccebd9;
  border-radius: 8px;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .image-feature,
  .info-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .duty-card {
    grid-template-columns: 1fr;
  }

  .duty-card .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 66px;
    padding: 8px 16px;
  }

  .brand img {
    width: 116px;
    height: 42px;
  }

  .mobile-menu {
    display: inline-flex;
    justify-self: end;
    width: auto;
    min-width: 74px;
    padding: 0 12px;
  }

  nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 13px 12px;
    background: rgba(230, 247, 238, 0.65);
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: min(700px, calc(100svh - 214px));
    min-height: min(700px, calc(100dvh - 214px));
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 22, 15, 0.68) 0%, rgba(4, 22, 15, 0.28) 34%, rgba(4, 22, 15, 0.68) 74%, rgba(4, 22, 15, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 22, 15, 0.58), rgba(4, 22, 15, 0.14) 54%, rgba(4, 22, 15, 0.44));
  }

  .hero-overlay {
    align-content: start;
    min-height: min(700px, calc(100svh - 214px));
    min-height: min(700px, calc(100dvh - 214px));
    padding: 24px 14px 10px;
    text-align: center;
    justify-items: center;
  }

  .hero-carousel {
    background: #071c12;
  }

  .hero-carousel::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(4, 22, 15, 0.16) 42%, rgba(4, 22, 15, 0.74) 76%, rgba(4, 22, 15, 0.92) 100%);
  }

  .hero-slide-bg {
    display: block;
    inset: -9%;
    width: 118%;
    height: 118%;
    object-fit: cover;
    object-position: center center;
    filter: blur(18px) saturate(1.05);
    opacity: 0.74;
    transform: scale(1.02);
  }

  .hero-slide-main {
    inset: 16%;
    width: 68%;
    height: 68%;
    object-fit: cover;
    object-position: center center;
    filter: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%);
  }

  .hero-overlay > * {
    position: relative;
    z-index: 1;
  }

  .hero-overlay::before {
    display: none;
  }

  .hero-logo-mark {
    width: 126px;
    margin: 0 auto 16px;
  }

  .hero-brand-title {
    margin: 0 0 8px;
    font-size: clamp(1.85rem, 8.8vw, 2.7rem);
    line-height: 1;
    text-shadow:
      0 2px 0 rgba(0, 110, 52, 0.95),
      0 5px 0 rgba(0, 79, 38, 0.72),
      0 12px 24px rgba(0, 0, 0, 0.72);
  }

  .hero-overlay .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.48rem, 6.8vw, 2.05rem);
    line-height: 1.04;
    margin-bottom: 10px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-lead,
  .section p,
  .contact-copy p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero-lead {
    max-width: 34rem;
    margin-inline: auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
  }

  .hero-actions {
    margin: min(5dvh, 38px) 0 6px;
    gap: 7px;
  }

  .hero-actions .button,
  .quick-info span {
    width: 100%;
    min-height: 40px;
    justify-content: center;
  }

  .hero-whatsapp {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "number";
    justify-items: center;
    min-height: 54px;
    padding: 7px 14px;
    text-align: center;
  }

  .hero-whatsapp svg {
    display: none;
  }

  .hero-whatsapp span {
    font-size: 0.96rem;
  }

  .hero-whatsapp strong {
    font-size: 1.18rem;
  }

  .quick-info {
    gap: 7px;
  }

  .quick-info span {
    align-items: flex-start;
    justify-content: center;
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: center;
  }

  .floating-card {
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    padding: 7px 12px;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 12px 26px rgba(0, 67, 38, 0.16);
  }

  .trust-strip {
    margin: 0 16px;
  }

  .insurance-marquee {
    position: relative;
    z-index: 4;
    padding: 9px 0;
    margin-top: 0;
    margin-bottom: 14px;
    box-shadow: none;
  }

  .marquee-track {
    animation-duration: 32s;
  }

  .marquee-track span {
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .care-slide {
    flex-basis: 88%;
    min-height: 430px;
    scroll-snap-align: center;
  }

  .care-slide::after {
    background: linear-gradient(180deg, rgba(16, 35, 27, 0.05), rgba(16, 35, 27, 0.74));
  }

  .care-slide div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .care-slide strong {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .trust-item {
    min-height: 62px;
    padding: 14px;
  }

  .service-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 16px;
  }

  .two-column,
  .contact-section {
    gap: 24px;
  }

  .service-card {
    min-height: 62px;
    padding: 15px;
  }

  .image-feature {
    gap: 12px;
    padding-top: 0;
  }

  .image-panel,
  .review-panel {
    min-height: 260px;
  }

  .turno-card {
    min-height: 280px;
  }

  .turno-card .button {
    width: 100%;
  }

  .review-panel {
    padding: 24px 18px;
  }

  .reviews-heading {
    margin-bottom: 22px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card,
  .review-card:nth-child(4) {
    grid-column: auto;
  }

  .review-card {
    min-height: auto;
    padding: 22px;
  }

  .info-section {
    gap: 16px;
  }

  .hours-list div {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
  }

  .map-card {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .day-selector {
    gap: 7px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    scroll-snap-type: x proximity;
  }

  .day-selector button {
    min-height: 42px;
    padding: 0 13px;
    scroll-snap-align: start;
  }

  .duty-card {
    gap: 14px;
    margin-top: 12px;
    padding: 18px;
  }

  .duty-actions {
    width: 100%;
  }

  .duty-actions .button,
  .duty-actions input {
    width: 100%;
  }

  .contact-copy img {
    width: 122px;
    margin-bottom: 18px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .social-contact-card > div {
    display: flex;
  }

  .contact-card svg {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
    padding: 24px 16px;
  }

  .social-links {
    gap: 8px 14px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 12px;
  }

  .hero,
  .section {
    padding-inline: 12px;
  }

  .trust-strip {
    margin-inline: 12px;
  }

  h1 {
    font-size: clamp(1.46rem, 7vw, 1.95rem);
  }

  .hero-brand-title {
    font-size: clamp(1.62rem, 8vw, 2.12rem);
  }

  .hero-actions {
    margin-top: min(4dvh, 28px);
  }

  .button {
    padding-inline: 12px;
    font-size: 0.95rem;
  }

  .day-selector {
    margin-inline: -12px;
    padding-inline: 12px;
  }
}
