/* =====================================================
   TOTTI Y BOLI — Consolidated stylesheet
   Brand fonts, design tokens, base reset, page layout,
   shared nav, modals, popup. No external framework.
   ===================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Chalkboard';
  src: url('../fonts/Chalkboard.ttc');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Softiemarker';
  src: url('../fonts/SoftieMarker-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --hueso:    #fcf7ed;
  --azul:     #465ae1;
  --rojo:     #f75b32;
  --gris:     #606060;
  --rosa:     #ff7be6;
  --amarillo: #efbf48;
  --verde:    #addb09;
  --morado:   #9255a0;
}

/* ---------- Minimal reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gris);
  background-color: var(--hueso);
  min-height: 100vh;
}
body.modal-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---------- Page bodies (padding for fixed nav) ---------- */
.body, .body-4, .body-5 {
  padding-top: 64px;
  background-color: var(--hueso);
}

/* =====================================================
   FIXED NAV (shared across pages)
   ===================================================== */
.section-2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(252, 247, 237, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease;
  z-index: 100;
}
.div-block-3 {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.div-block-2 {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 18px;
}
/* Bouncing dot aligned with the period at the end of "boli." in the logo.
   Logo is 44px tall, vertically centered in 64px nav; period sits ~78%
   down the logo image — dot offset +8px from the nav's vertical center. */
.nav-logo::after {
  content: "";
  position: absolute;
  top: calc(50% + 8px);
  right: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 2px 6px rgba(255, 123, 230, 0.45);
  animation: dotBounce 1.6s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes dotBounce {
  0%   { transform: translateY(0) scale(1);            background: var(--rosa); }
  22%  { transform: translateY(-14px) scale(1.06);     background: var(--amarillo); }
  38%  { transform: translateY(0) scaleX(1.35) scaleY(0.65); background: var(--rosa); }
  52%  { transform: translateY(-8px) scale(1.04);      background: var(--azul); }
  68%  { transform: translateY(0) scaleX(1.2) scaleY(0.8);   background: var(--rosa); }
  82%  { transform: translateY(-3px) scale(1);         background: var(--verde); }
  100% { transform: translateY(0) scale(1);            background: var(--rosa); }
}
.image-3 {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.barra {
  position: relative;
  color: var(--gris);
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 15px;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.barra::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rosa);
  transition: width 0.25s ease, left 0.25s ease;
}
.barra:hover { color: var(--rosa); }
.barra:hover::after,
.barra.is-active::after { width: 100%; left: 0; }
.barra.is-active { color: var(--rosa); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}
.nav-icon {
  display: flex;
  align-items: center;
}
.logos {
  height: 30px;
  width: auto;
  transition: transform 0.25s ease;
}
.nav-icon:hover .logos { transform: scale(1.15) rotate(-6deg); }
.boton {
  border: 2px solid var(--azul);
  color: var(--azul);
  letter-spacing: 1px;
  background-color: transparent;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.boton:hover { border-color: var(--rojo); color: var(--rojo); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--azul);
  color: var(--azul);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 18px;
  line-height: 1;
}
.menu-toggle:hover { background: var(--azul); color: var(--hueso); }

@media (max-width: 820px) {
  .barra { font-size: 14px; }
  .div-block-2 { gap: 16px; }
}
@media (max-width: 720px) {
  .section-2 { padding: 0 12px; }
  .image-3 { height: 36px; }
  .nav-logo { padding-right: 14px; }
  .nav-logo::after { width: 7px; height: 7px; top: calc(50% + 6px); right: 3px; }
  .div-block-3 { gap: 8px; }
  .div-block-2 {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(252, 247, 237, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .div-block-2.open { display: flex; }
  .div-block-2 .barra { text-align: center; padding: 10px; font-size: 15px; }
  .menu-toggle { display: inline-block; }
  .nav-actions { gap: 8px; }
  .logos { height: 26px; }
  .boton { font-size: 11px; padding: 5px 10px; letter-spacing: 0.3px; }
}
@media (max-width: 420px) {
  .boton { display: none; }
}

/* =====================================================
   HOME PAGE
   ===================================================== */

/* HERO */
.section {
  width: 100%;
  height: 78vh;
  min-height: 520px;
  max-height: 820px;
  padding: 40px 20px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.section .image {
  width: min(70%, 900px);
  height: auto;
  max-height: 85%;
  object-fit: contain;
  animation: heroWave 5s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 20px 30px rgba(255, 123, 230, 0.18));
}
@keyframes heroWave {
  0%, 100% { transform: translateY(0) rotate(0) scale(1); }
  20%      { transform: translateY(-18px) rotate(-1.8deg) scale(1.015); }
  50%      { transform: translateY(-4px) rotate(0) scale(1); }
  75%      { transform: translateY(-14px) rotate(1.8deg) scale(1.01); }
}
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rosa);
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  animation: bounceY 2s ease-in-out infinite;
  opacity: 0.9;
  padding: 6px 14px;
  z-index: 5;
}
.scroll-hint:hover { opacity: 1; color: var(--rojo); }
@keyframes bounceY {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}

/* La-Buena hero photo (sits above section-3 fondo) */
.image-7 {
  width: min(82%, 1400px);
  height: auto;
  display: block;
  margin: 40px auto 0;
  border: 7px solid var(--hueso);
  border-radius: 50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}
.image-7._2 {
  margin: 30px auto 60px;
  position: static;
  z-index: auto;
}

/* SOMOS — fondo background pulled up behind image-7 */
.section-3 {
  width: 100%;
  margin-top: -150px;
  padding: 230px 20px 80px;
  overflow: hidden;
  background-image: url('../images/home/fondo.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.image-6 {
  width: min(70%, 1100px);
  height: auto;
  display: block;
  margin: 0 auto;
  transform-origin: center;
  transform: scale(var(--somos-scale, 1));
  will-change: transform;
}

/* SERVICIOS */
.section-4 {
  width: min(92%, 1240px);
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 51px;
}
.image-8 { width: min(40%, 420px); height: auto; }
.texto {
  color: var(--gris);
  text-align: center;
  font-family: Chalkboard, Arial, sans-serif;
  line-height: 1.65;
  max-width: 760px;
  padding: 0 10px;
  font-size: 16px;
}
.texto.specs { text-transform: capitalize; line-height: 1.45; }
.div-block-4 {
  width: 100%;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.div-block-5 {
  background-color: var(--hueso);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  gap: 19px;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  cursor: pointer;
  min-height: 280px;
  outline: none;
}
.div-block-5 img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.div-block-5:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}
.div-block-5:hover img { transform: scale(1.04); }
.div-block-5:focus-visible {
  box-shadow: 0 0 0 3px var(--rosa), 0 18px 38px rgba(0,0,0,0.18);
}
.div-block-6 {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.nombres {
  color: var(--gris);
  text-align: center;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 22px;
  line-height: 1.35;
}
.nombres._2 { font-size: 18px; }
.nombres.big {
  color: var(--rosa);
  font-size: 80px;
  line-height: 1;
}
.links {
  display: inline-block;
  padding: 7px 22px;
  margin-top: 4px;
  border: 2px solid currentColor;
  border-radius: 24px;
  color: var(--rosa);
  font-family: Chalkboard, Arial, sans-serif;
  font-weight: 500;
  transition: all 0.25s ease;
}
.links:hover { color: var(--rojo); }
.div-block-5:hover .links {
  background-color: var(--rojo);
  color: var(--hueso);
  border-color: var(--rojo);
}

/* curva + section-5 closing block */
.image-9 {
  width: 100%;
  height: auto;
  display: block;
  margin: 60px 0 90px;
}
.section-5 {
  width: 100%;
  margin: 40px 0 100px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
.div-block-7 {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 640px;
  padding-top: 20px;
}
.image-11 { width: 100px; height: auto; }

/* =====================================================
   SHARED MODAL BASE
   ===================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 30, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }

/* Service modal card */
.modal-card {
  background: var(--hueso);
  border-radius: 28px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-backdrop.open .modal-card { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: var(--gris);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif;
  padding: 0;
  transition: all 0.25s ease;
}
.modal-close:hover { background: var(--rojo); color: var(--hueso); transform: rotate(90deg); }
.modal-title {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 54px; line-height: 1;
  margin: 0 0 10px; text-align: center;
  letter-spacing: -1px;
}
.modal-tag-wrap { text-align: center; margin-bottom: 18px; }
.modal-tag {
  display: inline-block;
  padding: 5px 16px; border-radius: 20px;
  color: var(--hueso);
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 14px; letter-spacing: 0.5px;
}
.modal-desc {
  color: var(--gris);
  font-family: Chalkboard, Arial, sans-serif;
  line-height: 1.65; font-size: 15px;
  margin: 0 0 22px;
  text-align: center;
}
.modal-features { list-style: none; padding: 0; margin: 0 0 24px; }
.modal-features li {
  padding: 11px 16px; margin-bottom: 8px;
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  color: var(--gris);
  font-family: Chalkboard, Arial, sans-serif;
  font-size: 14px;
  display: flex; align-items: center; gap: 12px;
}
.modal-features li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.modal-cta {
  display: block;
  padding: 14px;
  border-radius: 30px;
  color: var(--hueso);
  text-align: center;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 20px; letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.modal-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

/* =====================================================
   POLITICAS POPUP
   ===================================================== */
.pol-pop-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 30, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 10000;
  padding: 28px 18px;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}
.pol-pop-backdrop.open { display: flex; opacity: 1; }
.pol-pop-shell {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 123, 230, 0.18), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(70, 90, 225, 0.15), transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(239, 191, 72, 0.12), transparent 55%),
    var(--hueso);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pol-pop-backdrop.open .pol-pop-shell { transform: scale(1) translateY(0); }
.pol-pop-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pol-pop-confetti span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  opacity: 0.32;
  animation: confettiDrift 12s ease-in-out infinite;
}
.pol-pop-confetti span:nth-child(1) { top: 10%; left: 8%;  background: var(--rosa); }
.pol-pop-confetti span:nth-child(2) { top: 28%; left: 92%; background: var(--azul); width: 10px; height: 10px; animation-delay: 1.2s; }
.pol-pop-confetti span:nth-child(3) { top: 58%; left: 5%;  background: var(--amarillo); width: 18px; height: 18px; animation-delay: 2.4s; }
.pol-pop-confetti span:nth-child(4) { top: 80%; left: 88%; background: var(--verde); animation-delay: 3.6s; }
.pol-pop-confetti span:nth-child(5) { top: 45%; left: 50%; background: var(--morado); width: 12px; height: 12px; animation-delay: 4.8s; }
.pol-pop-confetti span:nth-child(6) { top: 15%; left: 70%; background: var(--rojo); animation-delay: 6s; }
.pol-pop-confetti span:nth-child(7) { top: 70%; left: 30%; background: var(--rosa); width: 16px; height: 16px; animation-delay: 7.2s; }
.pol-pop-confetti span:nth-child(8) { top: 90%; left: 55%; background: var(--azul); animation-delay: 8.4s; }
@keyframes confettiDrift {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  33%      { transform: translate(20px, -30px) rotate(120deg); }
  66%      { transform: translate(-15px, 20px) rotate(240deg); }
}
.pol-pop-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: var(--gris);
  font-size: 24px; line-height: 1;
  font-family: Arial, sans-serif;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: all 0.25s ease;
}
.pol-pop-close:hover { background: var(--rojo); color: var(--hueso); transform: rotate(90deg); }
.pol-pop-hero {
  position: relative;
  z-index: 2;
  padding: 56px 28px 24px;
  text-align: center;
}
.pol-pop-kicker {
  display: inline-block;
  padding: 6px 18px;
  background: var(--rosa);
  color: var(--hueso);
  border-radius: 20px;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  transform: rotate(-2deg);
  animation: kickerSway 3s ease-in-out infinite;
}
@keyframes kickerSway {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}
.pol-pop-title {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.15;
  padding-top: 0.12em;
  letter-spacing: -2px;
  margin: 0 0 14px;
  background: linear-gradient(120deg, var(--rosa) 0%, var(--azul) 50%, var(--amarillo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pol-pop-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-family: Chalkboard, Arial, sans-serif;
  color: var(--gris);
  font-size: 16px;
  line-height: 1.55;
}
.pol-pop-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 28px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pol-pop-card {
  --accent: var(--rosa);
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border: 3px solid var(--accent);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  overflow: hidden;
  min-height: 180px;
}
.pol-pop-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.12;
  transition: transform 0.4s ease;
}
.pol-pop-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 18px 38px rgba(0,0,0,0.13);
}
.pol-pop-card:hover::before { transform: scale(1.6); }
.pol-pop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--hueso);
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 26px;
  letter-spacing: -1px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px -4px var(--accent);
  position: relative;
  z-index: 1;
}
.pol-pop-head {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  color: var(--accent);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.pol-pop-body {
  font-family: Chalkboard, Arial, sans-serif;
  color: var(--gris);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* =====================================================
   SERVICIO DETAIL PAGES (/servicios/*.html)
   ===================================================== */
.section-6 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 40px 20px;
  gap: 40px;
}
.div-block-8 {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
}
.div-block-9 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 380px;
  max-width: 100%;
  gap: 19px;
}
.image-12 {
  width: 380px;
  max-width: 100%;
  height: auto;
}
.precio {
  background-color: var(--rosa);
  color: var(--hueso);
  letter-spacing: -1px;
  border-radius: 50px;
  padding: 5px 20px;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 21px;
  line-height: 1.5;
}
/* Service-specific accents (toddler/teen/coloring/yummy/merch/mini) */
.nombres.mini,        .precio.mini        { color: var(--rosa);     background-color: transparent; }
.nombres.big.mini,    .precio.mini        { color: var(--hueso); }
.precio.mini { background-color: var(--rosa); }
.nombres.big.toddler  { color: var(--azul); }
.precio.toddler       { background-color: var(--azul); }
.nombres.big.teen     { color: var(--rojo); }
.precio.teen          { background-color: var(--rojo); }
.nombres.big.color    { color: var(--amarillo); }
.precio.color         { background-color: var(--amarillo); }
.nombres.big.yummy    { color: var(--verde); }
.precio.yummy         { background-color: var(--verde); }
.nombres.big.merch    { color: var(--morado); }
.precio.merch         { background-color: var(--morado); }

@media (max-width: 991px) {
  .section { height: auto; min-height: 56vh; padding: 60px 20px; }
  .section .image { width: min(85%, 720px); }
  .div-block-4 { grid-template-columns: 1fr 1fr; gap: 22px; }
  .image-7 { width: 88%; margin: 30px auto 0; }
  .section-3 { margin-top: -110px; padding: 170px 20px 60px; background-attachment: scroll; }
  .image-8 { width: 55%; }
  .section-5 { margin: 30px 0 60px; }
}
@media (max-width: 720px) {
  .section { min-height: 48vh; padding: 40px 16px; }
  .section .image { width: 92%; }
  .image-7 { width: 92%; border-width: 5px; border-radius: 32px; margin: 24px auto 0; box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
  .image-7._2 { margin: 16px auto 40px; }
  .section-3 { margin-top: -70px; padding: 110px 16px 50px; background-attachment: scroll; }
  .image-6 { width: 92%; }
  .section-4 { width: 94%; padding: 40px 0; }
  .image-8 { width: 72%; }
  .texto { font-size: 14px; line-height: 1.55; }
  .div-block-4 { grid-template-columns: 1fr; gap: 20px; }
  .div-block-5 { min-height: 240px; }
  .div-block-5 img { max-height: 200px; }
  .section-5 { margin: 20px auto 40px; }
  .div-block-7 { padding-top: 10px; }
  .image-9 { margin: 30px 0 10px; }
  .modal-card { padding: 32px 22px 26px; border-radius: 22px; }
  .modal-title { font-size: 40px; }
  .modal-close { top: 10px; right: 10px; width: 34px; height: 34px; font-size: 20px; }
  .scroll-hint { font-size: 13px; bottom: 14px; }
  .pol-pop-backdrop { padding: 16px 10px; }
  .pol-pop-shell { border-radius: 22px; }
  .pol-pop-hero { padding: 48px 18px 16px; }
  .pol-pop-grid { grid-template-columns: 1fr; padding: 10px 18px 36px; gap: 16px; }
  .pol-pop-card { padding: 22px 20px; min-height: 0; }
  .pol-pop-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 22px; }
  .nombres.big { font-size: 60px; }
}
@media (max-width: 420px) {
  .section .image { width: 96%; }
  .nombres { font-size: 20px; }
}

/* =====================================================
   CONTACT SECTION (home, bottom)
   ===================================================== */
.section-contact {
  padding: 80px 20px 100px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 123, 230, 0.12), transparent 50%),
    radial-gradient(circle at 88% 85%, rgba(70, 90, 225, 0.10), transparent 50%),
    var(--hueso);
}
.contact-wrap {
  width: min(96%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.contact-info .contact-kicker {
  display: inline-block;
  padding: 6px 18px;
  background: var(--amarillo);
  color: var(--gris);
  border-radius: 22px;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}
.contact-info .contact-title {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 1.3;
  padding-top: 0.12em;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  background: linear-gradient(120deg, var(--rosa) 0%, var(--azul) 50%, var(--morado) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-info .contact-desc {
  font-family: Chalkboard, Arial, sans-serif;
  color: var(--gris);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 42ch;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 2px solid transparent;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 12px 26px rgba(0,0,0,0.12); }
.contact-card.wa:hover    { border-color: var(--verde); }
.contact-card.tel:hover   { border-color: var(--azul); }
.contact-card.mail:hover  { border-color: var(--rojo); }
.contact-card.ig:hover    { border-color: var(--rosa); }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 22px;
}
.contact-icon img { width: 26px; height: 26px; }
.contact-card.wa   .contact-icon { background: #25D366; }
.contact-card.tel  .contact-icon { background: var(--azul); }
.contact-card.mail .contact-icon { background: var(--rojo); }
.contact-card.ig   .contact-icon { background: linear-gradient(135deg, var(--rosa), var(--morado)); }

.contact-label {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris);
  opacity: 0.7;
}
.contact-val {
  font-family: Chalkboard, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gris);
  margin-top: 2px;
}

.contact-form {
  background: #fff;
  border-radius: 26px;
  padding: clamp(28px, 3.5vw, 42px);
  border: 2px solid rgba(70, 90, 225, 0.08);
  box-shadow: 0 18px 40px rgba(70, 90, 225, 0.08);
}
.contact-form h3 {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 32px;
  color: var(--rosa);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.contact-form .form-sub {
  font-family: Chalkboard, Arial, sans-serif;
  color: var(--gris);
  font-size: 14px;
  margin-bottom: 22px;
  opacity: 0.75;
}
.contact-form .field { display: grid; gap: 6px; margin-bottom: 14px; }
.contact-form .field label {
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--azul);
}
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 2px solid rgba(70, 90, 225, 0.12);
  background: var(--hueso);
  font-family: Chalkboard, Arial, sans-serif;
  font-size: 15px;
  color: var(--gris);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--rosa);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 123, 230, 0.18);
}
.contact-form .field textarea { min-height: 110px; resize: vertical; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(120deg, var(--rosa) 0%, var(--rojo) 100%);
  color: #fff;
  font-family: Softiemarker, Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 10px 24px rgba(255, 123, 230, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 123, 230, 0.45); }
.contact-submit:active { transform: translateY(0); }
.contact-form .form-note {
  font-family: Chalkboard, Arial, sans-serif;
  font-size: 12px;
  color: var(--gris);
  opacity: 0.7;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 820px) {
  .section-contact { padding: 56px 16px 72px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 26px 22px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .nav-logo::after,
  .section .image,
  .scroll-hint,
  .pol-pop-kicker,
  .pol-pop-confetti span,
  .image-6 { animation: none; }
  .div-block-5, .modal-card, .modal-backdrop, .pol-pop-shell,
  .contact-card, .contact-submit { transition: none; }
}
