/* 1. VARIABLES Y GENERALES */
:root {
  --green-dark: #0f2f2a;
  --green-soft: #e7efe9;
  --text-light: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
    padding-top: 130px; /* AJUSTA según la altura real del header */

}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}


/* 2. HEADER (Limpiado de duplicados) */
.site-header .navbar {
  background: linear-gradient(180deg, var(--green-dark) 0%, rgba(15, 47, 42, 0.9) 100%);
  padding: 10px 0; /* Ajustado para que el logo respire */
}

.logo {
  height: 100px; /* Reducido un poco para que no choque en móviles */
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.logo:hover {
  transform: scale(1.03);
}

.btn-menu {
  background: none;
  border: none;
  color: white !important; /* Forzado blanco */
  font-size: 28px;
}

.nav-icons .icon-link {
  color: white !important; /* Evita que se pongan azules */
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.nav-icons .icon-link:hover {
  opacity: 0.7;
}

.lang-switch {
  color: white;
  font-size: 14px;
  opacity: 0.85;
}

/* 3. HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
}

.btn-primary {
  background-color: var(--green-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
}

/* 4. SIDEBAR (Tus animaciones exactas) */
.vika-sidebar {
  background: linear-gradient(180deg, #0f2f2a 0%, #163f39 60%, #0b2320 100%);
  width: 300px;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
}

.vika-menu {
  list-style: none;
  padding: 40px 20px;
}

.vika-menu li {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideIn 0.6s ease forwards;
}

/* Bucle de delays mantenido */
.vika-menu li:nth-child(1) { animation-delay: 0.1s; }
.vika-menu li:nth-child(2) { animation-delay: 0.2s; }
.vika-menu li:nth-child(3) { animation-delay: 0.3s; }
.vika-menu li:nth-child(4) { animation-delay: 0.4s; }
.vika-menu li:nth-child(5) { animation-delay: 0.5s; }
.vika-menu li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.vika-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vika-menu a:hover i {
  transform: translateX(4px);
}

/* 5. SECCIONES DE CONTENIDO */
.wellness-section, .services-section {
  padding: 100px 0;
}

.wellness-section h2, .services-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
}

.wellness-image img {
  width: 100%;
  border-radius: 24px;
  height: 420px;
  object-fit: cover;
}

/* CARDS */
.service-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
  height: 100%;
}

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

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-content { padding: 28px; }

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
}

/* Estilos adicionales para Servicios */
.hero-mini {
    height: 40vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.badge {
    background-color: var(--green-soft);
    color: var(--green-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 6px 12px;
}

/* Animación SOLO cuando se usa AOS */
[data-aos] .service-card,
.service-card[data-aos] {
    opacity: 0;
    transform: translateY(20px);
}

[data-aos].aos-animate .service-card,
.service-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}


[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora para los textos largos en servicios */
.service-content p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* SERVICE CARD BASE */
.service-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card:hover img {
  transform: scale(1.08);
}

/* TEXT SMOOTHNESS */
.service-card .card-body {
  transition: transform 0.3s ease;
}

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

/* STORE */
.store-section {
  background: #f7faf8;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-body {
  padding: 16px;
  text-align: center;
}

.product-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-body .price {
  display: block;
  font-weight: 600;
  color: #2f4f4f;
}

/* DEMO BADGE */
.demo-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15,47,42,0.9);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}
