@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta Infantil Pastel y Alegre */
  --bg-primary: hsl(200, 100%, 98.5%); /* Celeste nube muy claro */
  --bg-secondary: hsl(45, 100%, 96.5%); /* Amarillo pastel suave */
  --bg-third: hsl(150, 80%, 97%); /* Verde menta claro */
  --bg-fourth: hsl(340, 100%, 98%); /* Rosa chicle claro */
  
  --text-primary: hsl(215, 60%, 22%); /* Azul marino escolar */
  --text-secondary: hsl(215, 25%, 45%);
  
  --primary: hsl(340, 85%, 65%); /* Rosa Chicle / Coral */
  --primary-hover: hsl(340, 80%, 58%);
  --primary-shadow: hsl(340, 80%, 50%);
  --primary-light: hsl(340, 95%, 95%);
  
  --secondary: hsl(45, 95%, 60%); /* Amarillo Sol */
  --secondary-hover: hsl(45, 90%, 53%);
  --secondary-shadow: hsl(45, 90%, 45%);
  
  --accent-blue: hsl(195, 85%, 60%); /* Azul Cielo */
  --accent-blue-shadow: hsl(195, 80%, 48%);
  --accent-blue-light: hsl(195, 90%, 94%);
  
  --accent-green: hsl(150, 70%, 55%); /* Verde Menta */
  --accent-green-shadow: hsl(150, 65%, 45%);
  --accent-green-light: hsl(150, 85%, 94%);
  
  --accent-purple: hsl(275, 70%, 65%); /* Violeta Dulce */
  
  --white: hsl(0, 0%, 100%);
  --success: hsl(145, 63%, 45%);
  
  /* Medidas y Bordes */
  --max-width: 1200px;
  --header-height: 90px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 50px;
  
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: 0.3s ease-out;
}

/* Reset general */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

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

/* Scrollbar Bubbly */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: var(--radius-xl);
  border: 3px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '🎈';
  position: absolute;
  top: -20px;
  right: -35px;
  font-size: 1.8rem;
  animation: float-balloon 4s infinite ease-in-out;
}

@keyframes float-balloon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Botones Bubbly/Rebote */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 0 var(--primary-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--primary-shadow);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--primary-shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 3px solid var(--accent-blue);
  box-shadow: 0 6px 0 var(--accent-blue-shadow);
}

.btn-secondary:hover {
  background: var(--accent-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--accent-blue-shadow);
}

.btn-secondary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--accent-blue-shadow);
}

.text-accent {
  color: var(--primary);
}

/* Ondas divisoras (Wave Dividers) */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}

.wave-top {
  top: 0;
  transform: translateY(-98%);
}

.wave-bottom {
  bottom: 0;
  transform: translateY(98%);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* Nubes y estrellas flotantes de fondo */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco-cloud {
  position: absolute;
  background: var(--white);
  width: 120px;
  height: 40px;
  border-radius: 100px;
  opacity: 0.6;
  animation: float-cloud 20s infinite linear;
}

.deco-cloud::before, .deco-cloud::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.deco-cloud::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 20px;
}

.deco-cloud::after {
  width: 70px;
  height: 70px;
  top: -35px;
  right: 20px;
}

.cloud-1 { top: 15%; left: -150px; animation-duration: 25s; }
.cloud-2 { top: 60%; left: -150px; animation-duration: 35s; animation-delay: 5s; }

@keyframes float-cloud {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 300px)); }
}

.deco-star {
  position: absolute;
  color: var(--secondary);
  font-size: 1.5rem;
  animation: spin-star 6s infinite linear;
  opacity: 0.5;
}

.star-1 { top: 25%; right: 10%; animation-duration: 8s; }
.star-2 { bottom: 20%; left: 8%; animation-duration: 12s; }

@keyframes spin-star {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* HEADER Y MENÚ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(240, 248, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 4px solid var(--accent-blue-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 75px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
    align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 1px 1px 0 var(--white);
}

.logo-icon {
  color: var(--primary);
  font-size: 2.2rem;
  animation: wiggle 3s infinite ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(10deg); }
}

.nav-menu {
flex: 1;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.nav-menu .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    text-decoration: none;
    white-space: nowrap;      /* Evita que el texto se divida en dos líneas */
    line-height: 1;
}

.nav-link {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* HERO SECTION (INICIO) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: radial-gradient(circle at 70% 30%, var(--bg-secondary) 0%, var(--bg-primary) 80%);
  overflow: hidden;
}

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

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  font-family: 'Fredoka', sans-serif;
  border: 2px dashed var(--primary);
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 2px 2px 0 var(--white);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 38px;
  max-width: 500px;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 3px solid var(--accent-blue-light);
  box-shadow: 0 8px 0 var(--accent-blue-light);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

/* Marco en forma de Nube / Glob */
.hero-image-card {
  width: 95%;
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  animation: blobby-morph 8s infinite ease-in-out;
  transition: var(--transition-smooth);
}

@keyframes blobby-morph {
  0%, 100% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
  50% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
}

.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* SECCIÓN: QUIÉNES SOMOS */
.about {
  background-color: var(--white);
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-card {
  padding: 30px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 3px solid transparent;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 0 var(--accent-blue-light);
}

/* Colores de bordes dinámicos infantiles */
.value-card:nth-child(1) { border-color: var(--accent-blue-light); }
.value-card:nth-child(2) { border-color: var(--primary-light); }
.value-card:nth-child(3) { border-color: var(--secondary-light); }
.value-card:nth-child(4) { border-color: var(--accent-green-light); }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 0 rgba(0,0,0,0.03);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.value-card:nth-child(1) .value-icon { background: var(--accent-blue); }
.value-card:nth-child(2) .value-icon { background: var(--primary); }
.value-card:nth-child(3) .value-icon { background: var(--secondary); }
.value-card:nth-child(4) .value-icon { background: var(--accent-green); }

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* SECCIÓN: SERVICIOS */
.services {
  background-color: var(--bg-secondary);
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  border: 4px solid transparent;
  box-shadow: 0 10px 0 rgba(0,0,0,0.02);
}

/* Colores de cartas individuales */
.service-card:nth-child(1) { border-color: var(--primary-light); box-shadow: 0 10px 0 var(--primary-light); }
.service-card:nth-child(2) { border-color: var(--accent-blue-light); box-shadow: 0 10px 0 var(--accent-blue-light); }
.service-card:nth-child(3) { border-color: var(--accent-green-light); box-shadow: 0 10px 0 var(--accent-green-light); }
.service-card:nth-child(4) { border-color: var(--secondary-light); box-shadow: 0 10px 0 var(--secondary-light); }

.service-card:hover {
  transform: translateY(-12px);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
  color: var(--white);
  transition: var(--transition-bounce);
}

.service-card:nth-child(1) .service-icon { background: var(--primary); }
.service-card:nth-child(2) .service-icon { background: var(--accent-blue); }
.service-card:nth-child(3) .service-icon { background: var(--accent-green); }
.service-card:nth-child(4) .service-icon { background: var(--secondary); }

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-10deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 600;
}

.service-features {
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 600;
}

.service-features i {
  color: var(--accent-green);
}

.service-card .btn {
  width: 100%;
}

.service-card:nth-child(1) .btn { background: var(--primary); box-shadow: 0 5px 0 var(--primary-shadow); }
.service-card:nth-child(2) .btn { background: var(--accent-blue); box-shadow: 0 5px 0 var(--accent-blue-shadow); color: var(--white); }
.service-card:nth-child(3) .btn { background: var(--accent-green); box-shadow: 0 5px 0 var(--accent-green-shadow); color: var(--white); }
.service-card:nth-child(4) .btn { background: var(--secondary); box-shadow: 0 5px 0 var(--secondary-shadow); }

/* SECCIÓN: NIÑERAS */
.nannies {
  background-color: var(--white);
  z-index: 2;
}

.nannies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.nanny-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--accent-blue-light);
  box-shadow: 0 12px 0 var(--accent-blue-light);
  transition: var(--transition-smooth);
}

.nanny-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.nanny-image-container {
  position: relative;
  height: 320px;
  overflow: hidden;
  padding: 15px;
}

.nanny-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; /* Bubbly frame */
  border: 5px solid var(--white);
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: var(--transition-bounce);
}

.nanny-card:hover .nanny-image-container img {
  border-radius: 50% 50% 50% 50%;
  transform: scale(1.02);
}

.nanny-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--secondary);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nanny-info {
  padding: 0 30px 30px 30px;
}

.nanny-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.nanny-info h3 {
  font-size: 1.5rem;
}

.nanny-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffb800;
  font-size: 1rem;
  font-weight: 700;
}

.nanny-specialty {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.nanny-bio {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 20px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 600;
}

.nanny-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.nanny-tag {
  background: var(--white);
  border: 2px solid var(--bg-secondary);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
}

.nanny-card .btn {
  width: 100%;
}

/* SECCIÓN: CONTACTO */
.contact {
  background-color: var(--bg-third);
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-intro h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-intro p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--accent-green-light);
  box-shadow: 0 8px 0 var(--accent-green-light);
}

.contact-method-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-details h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-weight: 700;
}

.contact-method-details p {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Mapa Simulado Infantil */
.map-placeholder {
  position: relative;
  height: 200px;
  background: radial-gradient(circle, #e6f7ff 20%, #e1e7f0 80%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px dashed var(--accent-blue);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.map-pin {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(226, 94, 62, 0.3);
  margin-bottom: 12px;
  animation: bounce-pin 2s infinite ease-in-out;
}

@keyframes bounce-pin {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(-12px) rotate(-45deg); }
}

.map-pin i {
  color: var(--white);
  transform: rotate(45deg);
  font-size: 1.3rem;
}

.map-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.map-overlay p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 700;
}

/* Formulario */
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--accent-green-light);
  box-shadow: 0 12px 0 var(--accent-green-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 3px solid var(--bg-primary);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-green);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.contact-form-card .btn {
  width: 100%;
}

/* PIE DE PÁGINA (FOOTER) */
.footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 100px 0 30px 0;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: #c8d6e5;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-bounce);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px) rotate(15deg);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #c8d6e5;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #c8d6e5;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.footer-contact-list i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #8395a7;
  font-size: 0.9rem;
  font-weight: 600;
}

/* MODAL DE NIÑERA INFANTIL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 41, 62, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--white);
  width: 90%;
  max-width: 750px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 6px solid var(--accent-blue-light);
  transform: scale(0.85);
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-bounce);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(90deg);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.modal-sidebar {
  background: var(--bg-primary);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 4px dashed var(--accent-blue-light);
}

.modal-nanny-img {
  width: 140px;
  height: 140px;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.modal-sidebar h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-sidebar .nanny-specialty {
  margin-bottom: 12px;
}

.modal-sidebar-stats {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed var(--accent-blue-light);
}

.modal-stat-box h4 {
  font-size: 1.3rem;
  color: var(--primary);
}

.modal-stat-box p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.modal-main-content {
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-section-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.modal-detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.modal-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.modal-detail-item i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-detail-item span {
  font-weight: 700;
}

.modal-skills {
  margin-bottom: 28px;
}

.modal-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-skill-badge {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--secondary-light);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 700;
}

.modal-reviews-section {
  border-top: 2px dashed var(--accent-blue-light);
  padding-top: 24px;
}

.review-item {
  background: var(--bg-primary);
  padding: 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  margin-bottom: 12px;
  border: 2px solid var(--accent-blue-light);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
}

.review-author {
  font-weight: 700;
}

.review-text {
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 600;
}

/* ALERTA TOAST BUBBLY */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
}

.toast {
  background: var(--white);
  border: 4px solid var(--accent-green);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-content h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.toast-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ANIMACIONES AL SCROLL (POPIN) */
.reveal {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-grid, .about-grid, .contact-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 5px solid var(--accent-blue-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
    margin-bottom: 20px;
  }
  
  .hero-image-card {
    width: 70%;
    margin: 0 auto;
  }

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

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

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }

  .modal-body-grid {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modal-sidebar {
    border-right: none;
    border-bottom: 4px dashed var(--accent-blue-light);
    padding: 30px;
  }

  .modal-main-content {
    padding: 30px;
    max-height: none;
    overflow-y: visible;
  }
  
  .modal-detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-image-card {
    width: 90%;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .toast-container {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .toast {
    width: 100%;
  }
}
