:root {
  --blue: #0ea5e9;
  --blue-dark: #0284c7;
  --aqua: #e0f7ff;
  --teal: #14b8a6;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --green: #16a34a;
  --pink: #e1306c;
  --orange: #f59e0b;
  --ink: #0f172a;
  --muted: #5b6b7f;
  --soft: #f8fcff;
  --cream: #fbfaf4;
  --card: #ffffff;
  --border: #cdeeff;
  --shadow: 0 18px 45px rgba(14, 116, 144, 0.14);
  --radius: 8px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

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

.section-pad {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 238, 248, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
  min-width: 0;
}

.brand-logo {
  width: 178px;
  height: 56px;
  flex: 0 0 178px;
  border-radius: 0;
  background-color: transparent;
  background-size: contain;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-logo.has-image .brand-fallback {
  display: none;
}

.brand-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center start;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
}

.brand-text {
  display: none;
}

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

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #284257;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--aqua);
  color: var(--blue-dark);
  outline: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  margin: auto;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 247, 255, 0.95), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(37, 211, 102, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #effcff);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.lead {
  color: #1f4961;
  font-size: clamp(1.14rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-copy p,
.section-heading p,
.feature-copy p,
.contact-copy p {
  color: var(--muted);
  max-width: 640px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.icon svg,
[data-icon] svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 20px;
}

.icon-bubble svg,
.placeholder-content svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.26);
}

.btn-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.2);
}

.btn[data-link="whatsapp"],
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.btn[data-link="whatsapp"]:hover,
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.whatsapp-logo,
.btn .whatsapp-logo,
.icon-bubble .whatsapp-logo,
.floating-actions .whatsapp-logo,
[data-icon] .whatsapp-logo {
  fill: currentColor;
  stroke: none;
}

.whatsapp-logo path {
  fill: currentColor;
  stroke: none;
}

.btn-ghost {
  background: #fff;
  color: var(--blue-dark);
  border-color: var(--border);
}

.media-frame {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-visual {
  height: clamp(420px, 34vw, 470px);
  background-size: cover;
  background-position: center center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-placeholder {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(135deg, rgba(224, 247, 255, 0.94), rgba(220, 252, 231, 0.76));
}

.image-placeholder.has-image .placeholder-content {
  display: none;
}

.image-placeholder.has-image {
  background-size: cover;
  background-position: center center;
}

.hero-visual.has-image {
  background-size: cover;
  background-position: center center;
}

.placeholder-content {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: #16607c;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

.placeholder-content svg {
  width: 42px;
  height: 42px;
}

.placeholder-content small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.quick-info {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

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

.info-card,
.service-card,
.reason-card,
.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(14, 116, 144, 0.08);
}

.info-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
}

.icon-bubble {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, #dff6ff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.16), 0 10px 22px rgba(14, 165, 233, 0.12);
}

.icon-bubble.teal {
  color: #0f766e;
  background: #dffaf5;
}

.icon-bubble.icon-whatsapp {
  color: #128c3e;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.icon-bubble.icon-phone,
.icon-bubble.icon-route,
.icon-bubble.icon-check {
  color: var(--green);
  background: linear-gradient(135deg, #dcfce7, #ffffff);
}

.icon-bubble.icon-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f97316, var(--pink) 55%, #8b5cf6);
}

.icon-bubble.icon-map,
.icon-bubble.icon-clock {
  color: #0369a1;
  background: linear-gradient(135deg, #dff6ff, #eff6ff);
}

.icon-bubble.icon-shield,
.icon-bubble.icon-water,
.icon-bubble.icon-waves {
  color: #0f766e;
  background: linear-gradient(135deg, #ccfbf1, #e0f7ff);
}

.icon-bubble.icon-sparkle {
  color: var(--orange);
  background: linear-gradient(135deg, #fef3c7, #ffffff);
}

.icon-bubble.icon-heart {
  color: #e11d48;
  background: linear-gradient(135deg, #ffe4e6, #ffffff);
}

.icon-bubble.icon-sofa,
.icon-bubble.icon-search {
  color: #2563eb;
  background: linear-gradient(135deg, #dbeafe, #ffffff);
}

.info-card strong {
  display: block;
  line-height: 1.25;
}

.info-card span:last-child,
.service-card p,
.reason-card p,
.process-card p,
.contact-item span {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.46);
  box-shadow: 0 22px 45px rgba(14, 116, 144, 0.14);
}

.service-image {
  height: 210px;
  aspect-ratio: auto;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}

.service-body {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f4fcff 100%);
}

.service-body h3 {
  margin: 14px 0 8px;
}

.service-body p {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.service-body .btn {
  width: 100%;
  padding-inline: 12px;
}

.service-card::after {
  content: "";
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--whatsapp));
}

.soft-band {
  background:
    radial-gradient(circle at 86% 14%, rgba(37, 211, 102, 0.12), transparent 24%),
    linear-gradient(180deg, #f2fbff, #ffffff);
  border-top: 1px solid rgba(215, 238, 248, 0.8);
  border-bottom: 1px solid rgba(215, 238, 248, 0.8);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.hygiene-card {
  height: 330px;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

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

.reason-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fdff);
}

.reason-card h3 {
  margin: 13px 0 7px;
}

.reason-card p {
  margin: 0;
  font-size: 0.94rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f6feff);
}

.process-number {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(14, 165, 233, 0.24);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.process-card h3 {
  margin: 16px 0 8px;
}

.process-card p {
  margin: 0;
  font-size: 0.93rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  width: 100%;
  height: 230px;
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(14, 116, 144, 0.08);
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 3px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(224, 247, 255, 0.88), rgba(255, 255, 255, 0.96)),
    var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.contact-item strong {
  display: block;
  line-height: 1.2;
}

.map-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 430px;
  padding: 16px;
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-embed {
  position: relative;
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--aqua);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-card h3 {
  margin: 0 0 2px;
  font-size: 1.15rem;
}

.map-card p {
  margin: 0;
  color: var(--muted);
}

.map-card .btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.floating-actions button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(14, 116, 144, 0.22);
  cursor: pointer;
}

.floating-actions a:nth-child(1) {
  background: var(--whatsapp);
}

.floating-actions a:nth-child(3) {
  background: linear-gradient(135deg, #f97316, var(--pink) 55%, #8b5cf6);
}

.floating-actions button {
  background: var(--ink);
}

.site-footer {
  color: #dff6ff;
  background: #0b3446;
  padding: 46px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand,
.site-footer h3 {
  color: #fff;
}

.site-footer a[data-link="whatsapp"] {
  color: #86efac;
  font-weight: 800;
}

.site-footer p {
  max-width: 440px;
  color: #bad7e2;
}

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

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bad7e2;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  width: min(920px, 94vw);
  height: min(680px, 76vh);
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  background-color: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,0.36);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header: 68px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .brand-logo {
    width: 138px;
    height: 46px;
    flex-basis: 138px;
  }

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 16px 18px 22px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 34px rgba(14, 116, 144, 0.12);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    justify-content: center;
    background: var(--soft);
  }

  .hero-grid,
  .feature-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-visual {
    height: clamp(260px, 72vw, 320px);
    background-position: center center;
  }

  .quick-info {
    margin-top: 0;
    padding: 18px 0 0;
  }

  .quick-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-grid,
  .service-grid,
  .reason-grid,
  .process-list,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 82px;
  }

  .service-image {
    height: 200px;
  }

  .gallery-item {
    height: 220px;
    min-height: 0;
  }

  .map-card {
    min-height: 360px;
    padding: 14px;
  }

  .map-embed {
    min-height: 240px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-actions a,
  .floating-actions button {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
