:root {
  --pink: #ef8eaa;
  --pink-strong: #eb5f90;
  --teal: #1bb7c8;
  --teal-dark: #0d7f8c;
  --cream: #fff7f4;
  --ink: #253240;
  --muted: #6d7783;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(34, 55, 73, 0.12);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.8rem 0; }
.alt { background: #fff7fa; }
.eyebrow {
  margin: 0 0 .5rem;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head.left { text-align: left; }
.section-head h2, .intro-card h2, .story-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}
.hero {
  min-height: 92vh;
  background:
    linear-gradient(120deg, rgba(17,29,39,.78), rgba(15,83,96,.45)),
    url('assets/img/portada.jpg') center/cover no-repeat;
  color: var(--white);
  position: relative;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 800;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
}
.nav-links {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(92vh - 86px);
}
.hero-copy {
  max-width: 650px;
  padding: 2rem;
}
.glass {
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: .98;
}
.hero p { font-size: 1.05rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; }
.btn-secondary { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.34); }
.intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.intro-card, .map-card, .contact-form, .story-images img, .promo-card, .service-card, .contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-card { padding: 2rem; }
.intro-card p, .story-copy p, .service-card p, .contact-card span { color: var(--muted); line-height: 1.7; }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pill {
  background: linear-gradient(135deg, #fff, #fff1f6);
  border: 1px solid #ffd1df;
  padding: 1.3rem;
  border-radius: 22px;
  font-weight: 700;
}
.services-grid, .promo-grid, .gallery-grid, .contact-cards {
  display: grid;
  gap: 1.2rem;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 1.5rem; }
.service-card h3 { margin-top: 0; }
.promo-grid { grid-template-columns: repeat(3, 1fr); }
.promo-card { overflow: hidden; }
.promo-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.brand-story { background: linear-gradient(180deg, #fff, #fff3f7); }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rounded { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.video-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.video-wrap iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
}
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  border: none;
  background: #fff;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-cards { grid-template-columns: repeat(2, 1fr); margin-bottom: 1rem; }
.contact-card {
  padding: 1.3rem;
  border: 1px solid #ffd9e5;
}
.contact-card strong { display: block; margin-bottom: .35rem; }
.contact-form { padding: 1.2rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #e7d9df;
  background: #fff;
}
.map-card { overflow: hidden; min-height: 100%; }
.map-card iframe { width: 100%; min-height: 620px; border: 0; }
.site-footer {
  background: #1f2d39;
  color: rgba(255,255,255,.86);
  padding: 1.3rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer a { color: #9be7f0; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #0ea54a);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  z-index: 40;
}
.whatsapp-float svg { width: 33px; fill: #fff; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 25, .88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 980px) {
  .intro, .story-grid, .contact-grid, .services-grid, .promo-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-wrap iframe, .map-card iframe { min-height: 420px; }
}
@media (max-width: 720px) {
  .nav { flex-direction: column; gap: 1rem; }
  .nav-links { justify-content: center; }
  .hero-content { min-height: auto; padding: 2rem 0 4rem; }
  .intro, .story-grid, .contact-grid, .services-grid, .promo-grid, .gallery-grid, .field-row, .contact-cards, .intro-grid, .story-images { grid-template-columns: 1fr; }
  .hero-copy { padding: 1.5rem; }
  .section { padding: 3.6rem 0; }
  .video-wrap iframe { min-height: 300px; }
  .map-card iframe { min-height: 340px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
