/* =========================================
   VARIABLES (Paleta Lupita - Lia Luz Interior)
   ========================================= */
:root {
    --amatista: #9370DB;
    --morado-profundo: #4b2c71;
    --dorado: #d4af37;
    --crema: #fdfbf7;
    --lila-claro: #f3ebff;
    --texto: #4A4A4A;
    --blanco: #ffffff;
    --fuente-titulos: 'Cormorant Garamond', serif;
    --fuente-cuerpo: 'Inter', sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-cuerpo);
    background-color: var(--crema);
    color: var(--texto);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--fuente-titulos);
    color: var(--morado-profundo);
    font-weight: 600;
}

/* =========================================
   NAVBAR (Idéntica a la tuya)
   ========================================= */
.navbar {
    background-color: var(--morado-profundo);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--dorado);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: var(--blanco);
    font-size: 1.2rem;
    margin-left: 0;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--lila-claro);
}

.nav-cta {
    color: var(--dorado) !important;
    font-weight: 600;
}

/* =========================================
   HERO (Con Imagen de fondo y Texto Superpuesto)
   ========================================= */
.hero-image {
    width: 100%;
}

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

.hero-purple {
    background-color: var(--morado-profundo);
    padding: 5.5rem 2rem;
    text-align: center;
}

.hero {
    max-width: 1200px;
    margin: auto;
}

.hero h1 {
    color: var(--lila-claro);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    color: var(--lila-claro);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* RESPIRADOR GHO INTEGRADO */
.gho-respirador {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dorado);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 2rem;
    color: var(--blanco);
    transition: all 0.3s;
}

.gho-respirador:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--dorado);
    border-radius: 50%;
    animation: breathe 4s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2); opacity: 1; }
}

/* =========================================
   SECCIONES SPLIT (Intercaladas)
   ========================================= */
.section {
    padding: 6rem 2rem;
    max-width: 95%;
    margin: auto;
}

.split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split-image, .split-text {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   BOTONES
   ========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--dorado);
    color: var(--morado-profundo);
}

.btn-primary:hover {
    background-color: var(--amatista);
    color: var(--blanco);
    transform: translateY(-3px);
}

/* =========================================
   CARDS
   ========================================= */
.cards {
    background: linear-gradient(to bottom, white 0%, var(--lila-claro) 50%, white 100%);
    width: 100vw;
    position: relative;
  
   margin:auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.card {
    background: var(--blanco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--dorado);
    transition: transform 0.3s;
    text-align: center;
}

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

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

.card-body {
    padding: 2.5rem;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card a {
    color: var(--amatista);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

/* =========================================
   CTA FINAL
   ========================================= */
.cta-final {
    text-align: center;
    background-color: var(--crema);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* =========================================
   SOCIAL PORTAL (Glassmorphism)
   ========================================= */
.social-portal {
    background: linear-gradient(to bottom, var(--blanco), var(--lila-claro));
    padding: 6rem 2rem;
    text-align: center;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--dorado);
    margin: 1.5rem auto 3.5rem;
}

.spiritual-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--amatista);
    font-weight: 600;
}

.glass-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    min-width: 220px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--dorado);
}

.icon-wrapper img {
    width: 45px;
    margin-bottom: 1.5rem;
}

.glass-card span {
    display: block;
    color: var(--morado-profundo);
    font-weight: 500;
    font-size: 0.9rem;
}

.final-mantra {
    margin-top: 4rem;
    font-style: italic;
    color: var(--amatista);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .split, .split.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}