:root {
  --color-principal: #8e44ad;
  --color-acento: #f9f4ff;
  --color-texto: #333;
  --color-instagram: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  --fuente: 'Arial', sans-serif;
}

/* RESET GENERAL */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fuente);
  background-color: white;
  color: var(--color-texto);
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}
.fade-up {
  animation: fadeInUp 1s ease forwards;
}
/* 🌌 NAVEGACIÓN PRINCIPAL AURA MINERAL */
.main-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.main-nav a {
  color: var(--color-texto);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-principal);
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.main-nav a:hover::after,
.main-nav .active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--color-principal);
  transform: scale(1.05);
}


/* BANNER PROMOCIONAL */
.promo-banner {
  background: linear-gradient(90deg, #d88ce0, #f8a5c2, #d88ce0);
  color: white;
  text-align: center;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.promo-banner i {
  margin-right: 10px;
  font-size: 1.2rem;
  vertical-align: middle;
}
.promo-banner .promo-link {
  background: #962fbf;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 15px;
  font-weight: normal;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.promo-banner .promo-link:hover {
  background: white;
  color: #962fbf;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('images/galaxia.jpg') no-repeat center center/cover;
  color: white;
  overflow: hidden;
}
.hero .logo {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
  animation: fadeIn 1.2s ease forwards;
}
.hero h1 {
  font-size: 3.2rem;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.4s ease forwards;
}
.hero p {
  font-size: 1.3rem;
  margin: 12px 0 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.6s ease forwards;
}
.cta {
  background-color: var(--color-principal);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: fadeInUp 1.8s ease forwards;
}
.cta:hover {
  background-color: #732d91;
  transform: scale(1.05);
}

/* CATEGORÍAS */
.categorias {
  padding: 60px 20px;
  text-align: center;
}
.categorias h2 {
  animation: fadeInUp 1s ease forwards;
}
.categorias .productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.producto {
  animation: fadeInUp 1s ease;
}
.producto img {
  width: 160px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* TESTIMONIOS */
.testimonios {
  padding: 60px 20px;
  background-color: var(--color-acento);
  text-align: center;
}
.testimonios h2 {
  animation: fadeInUp 1s ease forwards;
}
.clientes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.testimonio {
  width: 260px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  text-align: center;
  animation: fadeInUp 1s ease;
}
.testimonio img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* SECCIONES DE CRISTALES */
.amatista, .lemurianos, .mandarina, .meteoritos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 30px;
}
.amatista img, .lemurianos img, .mandarina img, .meteoritos img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  background: transparent;
  animation: fadeIn 1s ease;
}
.texto-amatista, .lemurianos-texto, .mandarina-texto, .meteoritos-texto {
  max-width: 500px;
  animation: fadeInUp 1s ease;
}

/* POSICIONES ALTERNADAS */
.lemurianos { flex-direction: row-reverse; }
.meteoritos { flex-direction: row-reverse; }

/* INSTAGRAM */
.instagram {
  background: var(--color-instagram);
  color: white;
  padding: 50px 20px;
  text-align: center;
  animation: fadeIn 1s ease;
}
.cta-insta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: white;
  color: #962fbf;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.cta-insta:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 20px;
  text-align: center;
  animation: fadeIn 1s ease;
}
.footer-logo img {
  width: 150px;
}
.footer-nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  display: inline-block;
}
.footer-slogan {
  margin: 15px 0;
}
.footer-copy {
  font-size: 0.9rem;
  color: #aaa;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  font-size: 14px;
  animation: bounce 2.4s infinite ease-in-out; /* ← ya incluido por defecto */
}
.whatsapp i {
  margin-right: 8px;
  font-size: 18px;
}

/* ANIMACIÓN WHATSAPP */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero .logo {
    max-width: 300px;
  }
  .amatista, .lemurianos, .mandarina, .meteoritos {
    flex-direction: column !important;
    text-align: center;
  }
  .promo-banner {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  
/* === ✨ HERO SECCIÓN NOSOTROS === */
.hero-nosotros {
  background: url('images/nosotros.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.hero-nosotros::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-nosotros .contenido-hero {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-nosotros h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-nosotros p {
  font-size: 1.25rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  color: #f1e9ff;
}
/* === Secciones Místicas con marcas de agua === */
.seccion-mistica {
  position: relative;
  background-color: #fdf7ff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.seccion-mistica::before,
.seccion-mistica::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 150px auto;
  opacity: 0.06;
  z-index: 0;
}

.seccion-mistica::before {
  background-image: url('images/watermark-quartz-left.png');
  top: 20px;
  left: 0;
  width: 180px;
  height: 180px;
}

.seccion-mistica::after {
  background-image: url('images/watermark-quartz-right.png');
  bottom: 20px;
  right: 0;
  width: 180px;
  height: 180px;
}

.seccion-mistica h2 {
  font-size: 2rem;
  color: var(--color-principal);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.seccion-mistica h2 i {
  margin-right: 10px;
  color: #b97edc;
}

.seccion-mistica p,
.lista-valores {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  position: relative;
  z-index: 1;
}

/* Valores con íconos */
.lista-valores {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 700px;
  text-align: left;
}
.lista-valores li {
  margin: 18px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}
.lista-valores i {
  margin-right: 10px;
  color: var(--color-principal);
}

/* Responsive */
@media (max-width: 768px) {
  .seccion-mistica h2 {
    font-size: 1.6rem;
  }
  .lista-valores {
    padding: 0 10px;
  }
}


/* --- NOSOTROS: CONTENEDORES GENERALES --- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-principal);
}
.container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- NOSOTROS: VALORES --- */
.lista-valores {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.lista-valores li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lista-valores i {
  color: var(--color-principal);
  font-size: 1.3rem;
}

/* --- CIERRE INSPIRACIONAL --- */
.cierre-nosotros {
  background: var(--color-principal);
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.cierre-nosotros h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cierre-nosotros p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.cierre-nosotros .cta {
  background: white;
  color: var(--color-principal);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.cierre-nosotros .cta:hover {
  transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
  .hero-nosotros h1 {
    font-size: 2.2rem;
  }
  .hero-nosotros p {
    font-size: 1.1rem;
  }
  .lista-valores li {
    font-size: 1rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

/* =============================
   🔮 CARRUSELES DE PRODUCTOS
============================= */

.productos-page {
  padding: 60px 20px;
  background-color: white;
  color: var(--color-texto);
  text-align: center;
}

.productos-destacados h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.categoria-carrusel {
  margin-bottom: 60px;
}

.categoria-carrusel h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-principal);
  animation: fadeInUp 0.8s ease;
}

/* Estilo para productos en carrusel */
.splide__slide.producto {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.splide__slide.producto img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.splide__slide.producto p {
  margin: 0;
  font-weight: bold;
  color: var(--color-texto);
}
.splide__slide.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Flechas del carrusel */
.splide__arrow {
  background: var(--color-principal);
  border-radius: 50%;
  color: white;
  width: 35px;
  height: 35px;
  opacity: 0.9;
  transition: background 0.3s ease;
}
.splide__arrow:hover {
  background: #732d91;
}

/* Paginación (si decides activarla) */
.splide__pagination__page.is-active {
  background: var(--color-principal);
}

/* CTA Ver Todos */
.categoria-carrusel .cta {
  margin-top: 20px;
  display: inline-block;
}

/* =============================
   🪨 OTRAS CATEGORÍAS COMO GRID
============================= */

.otras-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
.otras-categorias a {
  display: block;
  text-decoration: none;
  color: var(--color-texto);
  text-align: center;
  transition: transform 0.3s ease;
}
.otras-categorias a img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.otras-categorias a p {
  margin-top: 10px;
  font-weight: bold;
}
.otras-categorias a:hover {
  transform: scale(1.05);
}

/* Responsive para sección de productos */
@media screen and (max-width: 768px) {
  .productos-destacados h1 {
    font-size: 2rem;
  }
  .categoria-carrusel h2 {
    font-size: 1.5rem;
  }
  .otras-categorias a img {
    width: 140px;
    height: 140px;
  }
}
.whatsapp-animada {
  animation: bounce 2.4s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* === 🌙 MENÚ ADAPTATIVO RESPONSIVE === */

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: var(--color-texto);
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .main-nav {
    position: relative;
    padding-right: 60px; /* espacio para el icono */
  }

  .main-nav ul.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 999;
    border-top: 1px solid #eee;
  }

  .menu-toggle:checked + .menu-icon + ul.menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .main-nav ul.menu li {
    width: 100%;
    text-align: center;
  }

  .main-nav ul.menu li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #eee;
    color: var(--color-texto);
    font-weight: bold;
    text-decoration: none;
  }

  .main-nav ul.menu li a:hover,
  .main-nav ul.menu li a.active {
    background-color: var(--color-acento);
    color: var(--color-principal);
  }
}
