/* ================================================================
   K-BEAUTY LANDING PAGE - STYLES.CSS
   Diseño elegante y sofisticado siguiendo buenas prácticas CSS
   ================================================================ */

/* ===== VARIABLES CSS Y CONFIGURACIÓN BASE ===== */
:root {
  /* 🎨 Paleta de Colores - Inspiración K-Beauty */
  --color-white: #FFFFFF;
  --color-crema: #FEFCF8;
  --color-beige-seda: #F7F3ED;
  --color-gris-perla: #E8E6E3;
  --color-arena-dorada: #F0EBE1;

  --color-rosa-petal: #F8D7DA;
  --color-verde-bambu: #E3F2E1;
  --color-dorado-champan: #D4B896;
  --color-azul-serenidad: #E1F0F5;
  --color-rosa-hover: #d0a16c;
  --color-rosa-boton: #f7c387;

  /* 🎨 Colores de Texto */
  --text-primary: #2C2C2C;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --text-white: #FFFFFF;

  /* 🧱 Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* 🔠 Tipografía */
  --font-title: 'Playfair Display', serif;
  --font-subtitle: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* 📏 Tamaños de Tipografía */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.25rem;
  --text-lg: 1.50rem;
  --text-xl: 1.75rem;
  --text-2xl: 2rem;
  --text-3xl: 2.15rem;
  --text-4xl: 2.3rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* ⏱️ Transiciones */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* 🧩 Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* 🟦 Bordes */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* 📐 Layout */
  --max-width: 1200px;
  --container-padding: 1.5rem;
}

.py-5 {
  padding-top: 3rem;  /* 20px */
  padding-bottom: 3rem;
}
		
/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILIDADES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TIPOGRAFÍA ===== */
.section-title {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

/* ===== NAVEGACIÓN ===== */
.main-nav {
  background-color: #0e0e0e;
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .nav-logo {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #f7c387;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-subtitle);
  font-weight: 500;
  color: #F8D7DA;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-rosa-hover);
}

.nav-link.cta-nav {
  background-color: var(--color-rosa-boton);
  color: #0e0e0e;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-full);
  transition: all var(--transition-fast);
}

.nav-link.cta-nav:hover {
  background-color: var(--color-rosa-hover);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #1C1C1C;
  padding: var(--space-xl) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-title);
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero-title .highlight {
  color: var(--color-rosa-hover);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--text-xl);
  color: #f2f2f2;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.5;
}

.hero-benefits {
  margin-bottom: var(--space-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-family: var(--font-subtitle);
  font-weight: 400;
}

.benefit-image {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.hero-cta {
  margin-bottom: var(--space-md);
}

.cta-button {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  font-weight: 600;
  background-color: var(--color-rosa-boton);
  color: #0e0e0e;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background-color: var(--color-rosa-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-description {
  font-size: var(--text-base);
  color: #f7f7f7;
  margin-top: var(--space-xs);
  font-style: italic;
}

.legal-note {
  color: var(--text-light);
  font-size: var(--text-base);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image {
  width: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(244, 166, 163, 0.1) 0%, rgba(232, 145, 142, 0.05) 100%);
}

/* ===== PRUEBA SOCIAL ===== */
.social-proof {
  background-color: var(--color-gris-perla);
  padding: var(--space-lg) 0;
}

.social-proof-intro {
  text-align: center;
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.social-proof-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.social-proof-item:hover {
  transform: translateY(-2px);
}

/* ===== SOCIAL PROOF MEJORADO ===== */
.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
  text-align: left;
}

.social-proof-image {
  width: 400px;
  height: 400px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  align-self: flex-end;
}

.social-proof-content {
  width: 100%;
  text-align: left;
}

.proof-title {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.proof-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .social-proof-image {
    width: 100%;
    height: 250px;
    align-self: center;
  }
  
}

/* ===== INTRODUCCIÓN LUNA ===== */
.luna-intro {
  padding: var(--space-xl) 0;
  background-color: #181818;
}

.luna-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.luna-image {
  position: relative;
}

.luna-photo {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #ab416f;
  box-shadow: var(--shadow-card);
}

.luna-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--color-rosa-petal), var(--color-dorado-champan));
  border-radius: 50%;
  opacity: 0.8;
}

.luna-greeting {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--space-xs);
}

.luna-role {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  color: var(--color-rosa-hover);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.luna-story p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.luna-quote {
  background-color: var(--color-arena-dorada);
  padding: var(--space-md);
  border-left: 4px solid var(--color-rosa-petal);
  border-radius: var(--border-radius-md);
  font-style: italic;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

/* ===== LOS 3 SECRETOS ===== */
.secrets-section {
  padding: var(--space-xl) 0;
  background-color: #272727;
}

.secrets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.secret-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  position: relative;
}

.secret-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-arena-dorada);
}

.secret-image {
  width: 100%;
  object-fit: cover;
}

.secret-content {
  padding: var(--space-lg);
}

.secret-title {
  font-family: var(--font-title);
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.secret-subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  color: var(--color-rosa-hover);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.secret-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CURIOSIDADES ===== */
.curiosities-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-beige-seda);
}

.curiosities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.curiosity-card {
  background-color: var(--color-arena-dorada);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.curiosity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.curiosity-image {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 1px solid var(--color-gris-perla);
}

.curiosity-text {
  font-family: var(--font-subtitle);
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.5;
}

.curiosity-icon {
  font-size: 4rem; /* Tamaño del emoji */
  display: block;
  margin: 0 auto var(--space-md);
  text-align: center;
  line-height: 1;
}
		
/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-arena-dorada) 0%, var(--color-dorado-champan) 100%);
  text-align: center;
}

.cta-main-title {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-subtitle);
  font-weight: 500;
}

.benefit-image-small {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.cta-form {
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: var(--space-md);
  text-align: left;
}

.form-label {
  display: block;
  font-family: var(--font-subtitle);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-gris-perla);
  border-radius: var(--border-radius-md);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-rosa-boton);
}

.form-help {
  color: var(--text-light);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

.form-submit {
  width: 100%;
  margin-bottom: var(--space-md);
}

.form-legal {
  color: var(--text-light);
  font-size: var(--text-xs);
  text-align: center;
  line-height: 1.4;
}

/* ===== TESTIMONIOS ===== */
.testimonials-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.testimonial-card {
  background-color: var(--color-crema);
  padding: var(--space-lg);
  border-radius: var(--border-radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-white);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: var(--text-lg);
}

.testimonial-author {
  font-family: var(--font-subtitle);
  font-weight: 600;
  color: var(--color-rosa-hover);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.carousel-btn {
  background-color: var(--color-rosa-boton);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--color-rosa-hover);
}

.carousel-dots {
  display: flex;
  gap: var(--space-xs);
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-gris-perla);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  margin-bottom: var(--space-sm);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-toggle:hover {
  background-color: var(--color-beige-seda);
}

.faq-icon {
  font-size: var(--text-xl);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MANIFIESTO ===== */
.manifesto-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-verde-bambu);
  text-align: center;
}

.manifesto-title {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.manifesto-intro {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.manifesto-quote {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-xl);
  font-family: var(--font-title);
  font-size: var(--text-2xl);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-visual {
  margin-top: var(--space-lg);
}

.manifesto-image {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--text-primary);
  color: var(--text-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-title {
  font-family: var(--font-subtitle);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-rosa-petal);
}

.footer-text {
  color: #CCCCCC;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: #CCCCCC;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-rosa-petal);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: #CCCCCC;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--color-rosa-petal);
}

.social-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--border-radius-sm);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: var(--space-md);
  text-align: center;
}

.copyright {
  margin-bottom: var(--space-sm);
  color: #CCCCCC;
}

.disclaimer {
  color: #999;
  font-size: var(--text-sm);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Tablet - 768px */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --space-xl: 4rem;
    --space-lg: 3rem;
  }

  /* Navegación móvil */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    border-bottom: 1px solid var(--color-gris-perla);
  }

  .nav-link {
    display: block;
    padding: var(--space-md) var(--container-padding);
    width: 100%;
  }

  .nav-link.cta-nav {
    margin: var(--space-md) var(--container-padding);
    width: auto;
  }

  /* Hero responsive */
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-title {
    font-size: var(--text-6xl);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
  }

  /* Luna intro responsive */
  .luna-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .luna-photo {
    width: 300px;
    height: 300px;
  }

  /* Secrets responsive */
  .secrets-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Curiosidades responsive */
  .curiosities-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* CTA responsive */
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Testimonios responsive */
  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --space-xl: 3rem;
    --space-lg: 2rem;
    --container-padding: 1rem;
  }

  .hero-section {
    padding: var(--space-lg) 0;
    min-height: auto;
  }

  .hero-title {
    font-size: var(--text-5xl);
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  .benefit-image {
    width: 30px;
    height: 30px;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .section-subtitle {
    font-size: var(--text-base);
  }

  .cta-button {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
  }

  .secret-content {
    padding: var(--space-md);
  }

  .secret-title {
    font-size: var(--text-xl);
  }

  .curiosity-image {
    width: 300px;
    height: 300px;
  }

  .cta-form {
    padding: var(--space-md);
  }

  .manifesto-quote {
    padding: var(--space-md);
    font-size: var(--text-lg);
  }

  .testimonial-photo {
    width: 60px;
    height: 60px;
  }

  .testimonial-quote {
    font-size: var(--text-base);
  }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
  :root {
    --container-padding: 0.75rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
  }

  .hero-title {
    font-size: var(--text-2xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .cta-main-title {
    font-size: var(--text-2xl);
  }

  .manifesto-title {
    font-size: var(--text-2xl);
  }

  .luna-greeting {
    font-size: var(--text-2xl);
  }
}

/* ===== ESTADOS INTERACTIVOS ADICIONALES ===== */

/* Efectos hover mejorados */
.secret-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.secret-card:hover::before {
  opacity: 1;
}

/* Focus states para accesibilidad */
.cta-button:focus,
.nav-link:focus,
.form-input:focus,
.faq-toggle:focus {
  outline: 2px solid var(--color-rosa-boton);
  outline-offset: 2px;
}

/* Estados de loading para imágenes */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity var(--transition-medium);
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Mejoras de rendimiento */
.hero-image-container,
.secret-card,
.testimonial-card,
.curiosity-card {
  will-change: transform;
}

/* Reducir motion para usuarios sensibles */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-rosa-boton: #D63384;
    --color-rosa-hover: #B02A5B;
    --text-secondary: #333333;
  }
}

/* Dark mode preparation (opcional) */
@media (prefers-color-scheme: dark) {
  /* Se puede implementar un tema oscuro aquí si se desea */
}

/* ===== UTILIDADES ADICIONALES ===== */

/* Espaciado utilitario */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox utilities */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Grid utilities */
.grid-center {
  display: grid;
  place-items: center;
}

/* Border radius utilities */
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }
.rounded-full { border-radius: var(--border-radius-full); }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-card { box-shadow: var(--shadow-card); }

/* ===== PRINT STYLES ===== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .main-nav,
  .carousel-controls,
  .cta-button,
  .form-submit {
    display: none;
  }

  .hero-title,
  .section-title {
    page-break-after: avoid;
  }

  .secret-card,
  .testimonial-card {
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}
		
/* ===== FIN DEL ARCHIVO CSS ===== */