:root {
  --rosa: #ff6fa5;
  --rosa-dark: #e8558d;
  --rosa-light: #ffe0ec;
  --rosa-bg: #fff5f9;
  --verde: #6fbf8f;
  --verde-dark: #4a9c6d;
  --lila: #b79cff;
  --amarillo: #ffe08a;
  --ink: #35232b;
  --ink-soft: #6d5560;
  --bg: #ffffff;
  --border: #f0dde6;
  --shadow: 0 18px 40px -18px rgba(232, 85, 141, 0.35);
  --radius: 18px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

a { color: var(--rosa-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

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

/* ---------- Barra superior ---------- */
.topbar { background: var(--verde-dark); color: #fff; font-size: 0.85rem; }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 7px; padding-bottom: 7px; gap: 12px;
}
.topbar a { color: #fff; font-weight: 600; }
@media (max-width: 520px) { .topbar-contact { display: none; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo { width: 38px; height: 38px; color: var(--rosa-dark); }
.brand-text { font-size: 1.35rem; font-weight: 800; letter-spacing: 0.2px; }
.brand-text em { color: var(--rosa-dark); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--ink-soft); font-weight: 600; }
.main-nav a:hover { color: var(--rosa-dark); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--rosa-gradient, var(--rosa));
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-dark) 100%);
  color: #fff; padding: 9px 18px; border-radius: 999px;
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 10px; border-radius: 8px;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 3px; margin: 4px 0; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, var(--rosa-bg), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--rosa-bg) 100%);
  padding: 70px 0 90px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-eyebrow {
  color: var(--verde-dark); font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; font-size: 0.8rem; margin: 0 0 14px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 18px; }
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-dark) 100%);
  color: #fff; box-shadow: var(--shadow);
}
.btn-ghost { background: #fff; color: var(--rosa-dark); border-color: var(--rosa); }

.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; color: var(--ink-soft); font-weight: 600; }

/* Hero art */
.hero-art { position: relative; min-height: 360px; display: grid; place-items: center; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.blob-a { width: 300px; height: 300px; background: radial-gradient(circle, var(--rosa-light), #ffc7dd 70%); }
.blob-b { width: 220px; height: 220px; background: radial-gradient(circle, var(--lila), #d7c8ff 70%); right: 10%; bottom: 5%; opacity: 0.7; }
.hero-flower { width: 300px; height: 300px; color: var(--verde-dark); position: relative; z-index: 2; filter: drop-shadow(0 10px 20px rgba(232,85,141,0.25)); }

/* ---------- Secciones ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--rosa-bg); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 12px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* Nosotros */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.about-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.about-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.about-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.about-card p { margin: 0; color: var(--ink-soft); }

/* Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon { font-size: 1.8rem; }
.service-card h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--ink-soft); }

/* Galería */
.filter-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  border: 1px solid var(--rosa); background: #fff; color: var(--rosa-dark);
  padding: 8px 20px; border-radius: 999px; font-weight: 700; cursor: pointer; transition: 0.2s;
}
.filter-btn:hover { background: var(--rosa-light); }
.filter-btn.is-active { background: linear-gradient(135deg, var(--rosa), var(--rosa-dark)); color: #fff; border-color: transparent; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; border: none; padding: 0; cursor: pointer;
  background: var(--rosa-light); box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.g-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.g-art { position: absolute; inset: 0; display: grid; place-items: center; }
.g-cat {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(255,255,255,0.9); color: var(--rosa-dark);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 999px;
}
.g-caption {
  position: absolute; inset: auto 0 0 0; z-index: 3; padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(40, 20, 28, 0.8));
  color: #fff; font-weight: 600; font-size: 0.92rem;
}

/* Testimonios */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.t-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.t-quote { color: var(--ink-soft); font-style: italic; margin: 0 0 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; color: #fff; flex-shrink: 0;
}
.t-stars { color: #ffb400; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 8px; }
.t-author strong { display: block; }
.t-author span { color: var(--ink-soft); font-size: 0.85rem; }

/* Contacto */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info h3 { margin: 0 0 18px; }
.info-list { list-style: none; margin: 0 0 26px; padding: 0; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; }
.info-icon { font-size: 1.3rem; }
.info-list strong { display: block; }
.info-list p { margin: 2px 0 0; color: var(--ink-soft); }

.social-list { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-dark)); color: #fff;
  transition: transform 0.15s;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-3px); text-decoration: none; }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--rosa-bg); transition: border 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rosa); background: #fff; }
.btn-block { display: block; width: 100%; }
.form-note { margin: 14px 0 0; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: var(--verde-dark); }
.form-note.err { color: var(--rosa-dark); }

/* Footer */
.site-footer { background: var(--ink); color: #e9d9e0; padding-top: 50px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.brand-footer { color: #fff; }
.footer-brand p { color: #c3aeba; font-size: 0.9rem; }
.footer-nit { font-weight: 700; color: var(--rosa)!important; }
.footer-col h4 { color: #fff; margin: 0 0 14px; }
.footer-col a { color: #c3aeba; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: #c3aeba; font-size: 0.9rem; margin: 0 0 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; padding-bottom: 18px; text-align: center; color: #a78f9a; font-size: 0.85rem; }

/* WhatsApp flotante */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  animation: float 2.5s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { text-decoration: none; transform: scale(1.06); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; background: rgba(30, 15, 22, 0.92);
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-art { width: min(520px, 90vw); }
.lightbox-title { color: #fff; margin-top: 16px; font-size: 1.2rem; }
.lightbox-close {
  position: absolute; top: -14px; right: -14px; width: 40px; height: 40px;
  border-radius: 50%; border: 0; background: var(--rosa); color: #fff;
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 260px; }
  .hero-flower { width: 220px; height: 220px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(280px, 80vw);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 80px 24px 24px; box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease; z-index: 90;
  }
  .main-nav.is-open { right: 0; }
  .main-nav a { font-size: 1.1rem; padding: 8px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { gap: 10px 14px; }
}