:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #f2f8ff;
  --primary: #0ea5e9;
  --primary-strong: #0284c7;
  --text: #1e293b;
  --muted: #64748b;
  --line: #dbe7f3;
  --radius: 18px;
  --shadow: 0 14px 32px rgba(14, 46, 80, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #eef8ff 0%, var(--bg) 52%, #ffffff 100%);
}

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

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

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e0f2fe, #bae6fd);
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  font-weight: 800;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #334155;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e0f2fe;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #334155;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-nav a {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.45rem;
}

.hero {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #eef8ff);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05;
}

.hero p {
  color: #475569;
  line-height: 1.7;
}

.cta-row {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-point {
  border: 1px solid #d5e7f4;
  border-radius: 12px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.55rem;
  align-items: center;
}

.hero-point img {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #d7e8f5;
  background: #eaf4fb;
}

.hero-point-body {
  display: grid;
}

.hero-point strong {
  display: block;
  font-size: 0.9rem;
}

.hero-point span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.hero-point .hero-price {
  margin-top: 0.15rem;
  display: inline-block;
  font-weight: 800;
  color: #0284c7;
  font-size: 0.95rem;
}

.hero-point .hero-desc {
  display: block;
  margin-top: 0.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-soft {
  background: #fff;
  border-color: #c7deef;
}

.hero-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem;
}

.hero-card img {
  border-radius: 14px;
  min-height: 260px;
  object-fit: cover;
}

.section {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid-3 {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 0.75rem;
}

.card h3 {
  margin: 0.65rem 0 0.45rem;
}

.card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d7e8f5;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #e7f2fb;
}

.services-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-item {
  border: 1px solid #d5e8f6;
  border-radius: 14px;
  padding: 0.7rem;
  background: #fff;
}

.reviews-wrap {
  margin-top: 0.85rem;
  position: relative;
}

.reviews-track {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.reviews-marquee {
  display: flex;
  gap: 0.7rem;
  will-change: transform;
}

.review-card {
  flex: 0 0 280px;
  border: 1px solid #d8e8f5;
  border-radius: 16px;
  background: #fff;
  padding: 0.85rem;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.review-head strong {
  font-size: 0.95rem;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.06em;
}

.review-card p {
  margin: 0.5rem 0 0;
  color: #475569;
  line-height: 1.6;
}

.form-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
}

.form-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
}

form {
  display: grid;
  gap: 0.65rem;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
}

label input[type='checkbox'] {
  width: auto;
  margin-right: 0.45rem;
  vertical-align: middle;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c9dff0;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-frame {
  margin-top: 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5e6f5;
}

.map-frame iframe {
  width: 100%;
  min-height: 200px;
  border: 0;
}

.gallery-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.7rem;
  font-size: 0.9rem;
  color: #475569;
}

.site-footer {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
  animation: wpPulse 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 920px) {
  .hero,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-point {
    grid-template-columns: 72px 1fr;
  }

  .hero-point img {
    width: 72px;
    height: 72px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .grid-3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
