* {
  box-sizing: border-box;
}

:root {
  --purple: #391064;
  --purple-light: #6e26a3;
  --pink: #ed0874;
  --pink-light: #fff0f7;
  --blue: #1aa7e8;
  --green: #19be64;
  --yellow: #ffb515;
  --text: #392f45;
  --muted: #706979;
  --border: #eee8f2;
  --soft: #faf8fc;
  --white: #ffffff;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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


/* HEADER */

.header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #f0edf2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 270px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
}

.menu a:not(.btn):hover,
.menu .active {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 34px;
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  padding: 15px 26px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(237,8,116,.18);
  transition: .2s ease;
}

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

.btn-small {
  padding: 12px 21px;
}

.btn-whatsapp {
  background: var(--green);
}

.btn-white {
  background: white;
  color: var(--pink);
}


/* HERO */

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 610px;
  align-items: center;
  gap: 55px;
}

.hero-content {
  padding: 60px 0;
}

.eyebrow {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -2.5px;
}

.hero h1 span {
  color: var(--pink);
  display: block;
}

.hero-text {
  max-width: 660px;
  font-size: 19px;
  color: var(--muted);
  margin: 27px 0;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 38px;
}

.trust strong,
.trust span {
  display: block;
}

.trust strong {
  color: var(--purple);
}

.trust span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}


/* HERO VISUAL */

.hero-visual {
  min-height: 470px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,181,21,.65), transparent 20%),
    radial-gradient(circle at 78% 26%, rgba(237,8,116,.35), transparent 23%),
    radial-gradient(circle at 70% 80%, rgba(26,167,232,.32), transparent 25%),
    linear-gradient(135deg,#fff2f7,#fff9e8 45%,#f1ebff);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  width: 170px;
  height: 170px;
  background: rgba(237,8,116,.16);
  right: -25px;
  top: 35px;
}

.hero-visual::after {
  width: 130px;
  height: 130px;
  background: rgba(26,167,232,.18);
  left: 35px;
  bottom: 30px;
}

.hero-card {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: 45px;
  z-index: 3;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(57,16,100,.12);
}

.hero-card h2 {
  font-size: 31px;
  line-height: 1.1;
  color: var(--purple);
  margin: 12px 0;
}

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

.hero-sticker {
  display: inline-block;
  background: var(--yellow);
  color: var(--purple);
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 30px;
}


/* SECTIONS */

.section {
  padding: 85px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.section-heading h2 {
  font-size: clamp(34px,4vw,48px);
  color: var(--purple);
  margin: 0 0 7px;
  line-height: 1.1;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
}


/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.service-card,
.place-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: white;
  box-shadow: 0 10px 35px rgba(57,16,100,.05);
  transition: .2s ease;
}

.service-card:hover,
.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(57,16,100,.1);
}

.service-card h3,
.place-card h3 {
  color: var(--purple);
  margin: 15px 0 8px;
  font-size: 21px;
}

.service-card p,
.place-card p {
  color: var(--muted);
  margin: 0;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 29px;
}

.icon.pink { background:#ffe4f0; }
.icon.yellow { background:#fff1cc; }
.icon.blue { background:#e1f5ff; }
.icon.green { background:#e6f8ec; }
.icon.purple { background:#f0e5fc; }


/* PLACES */

.places-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.place-card {
  text-align: center;
}

.place-icon {
  font-size: 45px;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.text-link {
  color: var(--pink);
  font-weight: 900;
}


/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}

.steps article {
  text-align: center;
}

.steps span {
  width: 55px;
  height: 55px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 23px;
  font-weight: 900;
}

.steps article:nth-child(2) span {
  background: var(--blue);
}

.steps article:nth-child(3) span {
  background: var(--yellow);
  color: var(--purple);
}

.steps h3 {
  color: var(--purple);
  font-size: 21px;
  margin: 15px 0 6px;
}

.steps p {
  color: var(--muted);
}


/* CTA */

.cta {
  margin: 20px;
  border-radius: 32px;
  background: linear-gradient(135deg,var(--purple),#77108a);
  color: white;
}

.cta-inner {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  font-size: 38px;
  margin: 0;
}

.cta p {
  margin: 6px 0 0;
  opacity: .85;
}


/* FOOTER */

.footer {
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer strong {
  color: var(--purple);
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}

.footer a,
.footer span,
.footer p {
  display: block;
  color: var(--muted);
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 13px;
  padding: 35px 20px 0;
}


/* MOBILE */

@media (max-width: 850px) {

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

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 215px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 5px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-content {
    padding: 45px 0 20px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 28px;
  }

  .hero-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 24px;
  }

  .hero-card h2 {
    font-size: 27px;
  }

  .section {
    padding: 65px 0;
  }

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

  .service-card {
    padding: 21px;
  }

  .places-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 0;
  }

  .cta h2 {
    font-size: 31px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


@media (max-width: 520px) {

  .hero h1 {
    font-size: 41px;
    letter-spacing: -1.5px;
  }

  .brand img {
    width: 190px;
  }

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

  .section-heading {
    text-align: left;
  }

  .section-heading p {
    font-size: 16px;
  }

}


/* =========================================================
   PÁGINAS INTERIORES
   ========================================================= */

.page-hero {
  padding: 95px 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,181,21,.14), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(237,8,116,.10), transparent 25%),
    linear-gradient(180deg,#fff,#fcf9fd);
}

.narrow {
  max-width: 900px;
}

.page-hero h1 {
  color: var(--purple);
  font-size: clamp(42px,6vw,70px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 auto 25px;
}

.page-hero p {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 28px;
}

.centered-actions {
  justify-content: center;
}


.section-kicker {
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

.content-title {
  color: var(--purple);
  font-size: clamp(32px,4vw,48px);
  line-height: 1.1;
  margin: 0 0 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.content-grid p {
  color: var(--muted);
  font-size: 17px;
}

.highlight-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 15px 45px rgba(57,16,100,.07);
}

.highlight-box h3 {
  color: var(--purple);
  font-size: 25px;
  margin-top: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  padding: 9px 0 9px 31px;
  position: relative;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}


.large-card {
  text-align: left;
}

.large-card h2 {
  color: var(--purple);
  font-size: 25px;
}

.large-card p {
  color: var(--muted);
}


/* FAQ */

.faq-wrap {
  max-width: 900px;
}

.faq-wrap details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 0 22px;
}

.faq-wrap summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--purple);
  font-weight: 800;
  font-size: 17px;
}

.faq-wrap details p {
  color: var(--muted);
  margin-top: 0;
  padding-bottom: 20px;
}


/* CONTACTO */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-options {
  margin-top: 35px;
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.contact-card > span {
  font-size: 31px;
}

.contact-card strong {
  color: var(--purple);
  font-size: 18px;
}

.contact-card p {
  color: var(--muted);
  margin: 2px 0 0;
}

.form-shell {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 15px 50px rgba(57,16,100,.08);
}

.form-shell h2 {
  color: var(--purple);
  margin-top: 0;
  font-size: 30px;
}

.form-shell form {
  display: grid;
  gap: 10px;
}

.form-shell label {
  font-weight: 800;
  color: var(--purple);
  margin-top: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  font: inherit;
  padding: 14px 15px;
  border: 1px solid #ded7e4;
  border-radius: 13px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(237,8,116,.08);
}

.form-shell textarea {
  resize: vertical;
}

.form-shell .btn {
  border: 0;
  cursor: pointer;
  margin-top: 10px;
}

.form-note {
  color: #999;
  font-size: 12px;
  margin: 4px 0 0;
}


@media (max-width: 850px) {

  .page-hero {
    padding: 65px 0 55px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .highlight-box,
  .form-shell {
    padding: 25px;
  }

}


@media (max-width: 520px) {

  .page-hero {
    text-align: left;
  }

  .page-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .page-hero p {
    margin-left: 0;
  }

  .centered-actions {
    justify-content: flex-start;
  }

}

/* HERO CUMPLEAÑOS */

.page-hero-cumpleanos {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 85px;

  background:
    linear-gradient(
      rgba(255,255,255,.68),
      rgba(255,255,255,.68)
    ),
    url("../img/hero_cumple.png")
    center center / cover no-repeat;
}

.page-hero-cumpleanos .narrow {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 38px 35px;
  border-radius: 30px;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 55px rgba(57,16,100,.08);
}

@media (max-width: 850px) {

  .page-hero-cumpleanos {
    min-height: auto;
    padding: 65px 0 55px;
    background-position: center center;
  }

  .page-hero-cumpleanos .narrow {
    padding: 25px 20px;
    border-radius: 22px;
  }
}

/* HERO TALLERES */

.page-hero-talleres {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 85px;

  background:
    linear-gradient(
      rgba(255,255,255,.68),
      rgba(255,255,255,.68)
    ),
    url("../img/hero_talleres.png")
    center center / cover no-repeat;
}

.page-hero-talleres .narrow {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 38px 35px;
  border-radius: 30px;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 55px rgba(57,16,100,.08);
}

@media (max-width: 850px) {

  .page-hero-talleres {
    min-height: auto;
    padding: 65px 0 55px;
    background-position: center center;
  }

  .page-hero-talleres .narrow {
    padding: 25px 20px;
    border-radius: 22px;
  }
}

/* HERO TALLERES */

.page-hero-talleres {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 85px;

  background:
    linear-gradient(
      rgba(255,255,255,.68),
      rgba(255,255,255,.68)
    ),
    url("../img/hero_talleres.png")
    center center / cover no-repeat;
}

.page-hero-talleres .narrow {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 38px 35px;
  border-radius: 30px;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 55px rgba(57,16,100,.08);
}

@media (max-width: 850px) {

  .page-hero-talleres {
    min-height: auto;
    padding: 65px 0 55px;
    background-position: center center;
  }

  .page-hero-talleres .narrow {
    padding: 25px 20px;
    border-radius: 22px;
  }
}

/* HERO CUMPLEAÑOS */

.page-hero-cumpleanos {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 85px;

  background:
    linear-gradient(
      rgba(255,255,255,.68),
      rgba(255,255,255,.68)
    ),
    url("../img/hero_cumple.png")
    center center / cover no-repeat;
}

.page-hero-cumpleanos .narrow {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 38px 35px;
  border-radius: 30px;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 55px rgba(57,16,100,.08);
}

@media (max-width: 850px) {

  .page-hero-cumpleanos {
    min-height: auto;
    padding: 65px 0 55px;
    background-position: center center;
  }

  .page-hero-cumpleanos .narrow {
    padding: 25px 20px;
    border-radius: 22px;
  }
}

/* TALLER DESTACADO */

.workshop-feature {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 28px;
  align-items: stretch;
}

.workshop-main,
.workshop-booking {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(57,16,100,.07);
}

.workshop-main {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 25px;
  padding: 38px;
}

.workshop-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 38px;
  background: #fff0f7;
}

.workshop-main h3 {
  margin: 13px 0 12px;
  color: var(--purple);
  font-size: 30px;
  line-height: 1.1;
}

.workshop-lead {
  font-size: 18px;
  color: var(--text);
}

.workshop-main p {
  color: var(--muted);
}

.workshop-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.workshop-badges span {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.workshop-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-top: 22px;
}

.workshop-points div {
  background: var(--soft);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.workshop-booking {
  padding: 32px;
}

.workshop-booking h3 {
  color: var(--purple);
  font-size: 34px;
  margin: 12px 0 8px;
}

.workshop-booking p {
  color: var(--muted);
}

.workshop-label {
  display: inline-block;
  background: #e9f1ff;
  color: #1755a6;
  font-weight: 900;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
}

.btn-bluupi {
  width: 100%;
  margin-top: 20px;
  background: #1473e6;
}

.workshop-whatsapp {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 850px) {

  .workshop-feature {
    grid-template-columns: 1fr;
  }

  .workshop-main {
    grid-template-columns: 1fr;
    padding: 26px;
  }

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

  .workshop-booking {
    padding: 26px;
  }

}

/* PRIVACIDAD FORMULARIO CONTACTO */

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 4px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400 !important;
}

.privacy-check input {
  width: auto;
  margin-top: 5px;
  flex: 0 0 auto;
}

.privacy-check a {
  color: var(--pink);
  font-weight: 800;
}



/* FORMULAIRE CONTACTO FONCTIONNEL */

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status:empty {
  display: none;
}

.form-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 14px;
}

.form-message-success {
  background: #eefbf3;
  border: 1px solid #bfe8cd;
  color: #176b38;
}

.form-message-error {
  background: #fff1f1;
  border: 1px solid #f0c1c1;
  color: #9d2525;
}

.form-message strong {
  font-size: 15px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400 !important;
}

.privacy-check input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 4px;
}

.privacy-check a {
  color: var(--pink);
  font-weight: 800;
}

