/* ========================================================
   LINAJE HEALING CENTER - ESTILOS GLOBALES
   ======================================================== */

/* --- BODY Y ELEMENTOS GENERALES --- */
html {
    -webkit-text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(31, 95, 74, 0.28), transparent 60%),
        radial-gradient(circle at 78% 0%, rgba(192, 107, 59, 0.22), transparent 55%),
        radial-gradient(circle at 50% 85%, rgba(15, 42, 36, 0.35), transparent 62%),
        linear-gradient(180deg, #040605 0%, var(--color-black) 45%, #030504 100%);
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.6;
    background: transparent;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    opacity: 0.055;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 12%, rgba(0, 0, 0, 0.22), transparent 48%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.52) 70%, rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
    z-index: -1;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}


/* --- TIPOGRAFÍA - TÍTULOS PRINCIPALES (Cinzel — impacto ceremonial) --- */
h1, h2 {
    font-family: var(--font-title);
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

/* --- TIPOGRAFÍA - SUBTÍTULOS (Cormorant Garamond — elegante) --- */
h3, h4, h5, h6 {
    font-family: var(--font-subtitle);
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 700;
    letter-spacing: 4px;
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 600;
    letter-spacing: 3px;
}

h3 { 
    font-size: 1.75rem; 
    font-weight: 600;
    letter-spacing: 1.5px;
}

h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
    letter-spacing: 1.5px;
}

h5 { 
    font-size: 1.25rem; 
    font-weight: 400;
    letter-spacing: 1px;
}

h6 { 
    font-size: 1rem; 
    font-weight: 400;
    letter-spacing: 1px;
}

/* --- PÁRRAFOS Y TEXTO GENERAL --- */
p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
}

/* --- ENLACES --- */
a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

a:hover {
    color: var(--color-gold-light);
}

/* --- SECCIONES --- */
section {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

main > section:not(.hero)::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 140px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0)),
        radial-gradient(circle at 50% 0%, rgba(192, 107, 59, 0.16), transparent 60%),
        url('../img/shipibo-pattern-DLQBC06c.jpg');
    background-size: auto, auto, 520px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

main > section:not(.hero) > .container {
    position: relative;
    z-index: 1;
}

/* --- TÍTULOS DE SECCIÓN --- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--color-gold);
    position: relative;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin: 1rem auto 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    body { font-size: 17px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    section {
        padding: 4.25rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }

    section {
        padding: 3.25rem 0;
    }
}
