/**
 * Estilos principales del tema
 * Terapias para el Alma
 */

/* ============================================
   PALETA CROMÁTICA
   ============================================ */
:root {
    /* Colores de la paleta */
    --color-pureza: #F9F6F2;
    /* Pureza, calma, acogimiento - Fondo claro */
    --color-humano: #998B7B;
    /* Calma, acogedor, humano - Rosa suave */
    --color-naturaleza: #B6B29E;
    /* Naturaleza, equilibrio - Gris verdoso */
    --color-estabilidad: #8D8A85;
    /* Estabilidad, neutralidad - Gris oscuro */
    --color-espiritualidad: #DDC4A0;
    /* Luz, propósito, espiritualidad - Beige dorado */

    /* Fuentes */
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-estabilidad);
    background-color: var(--color-pureza);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Utilidades */
.container {
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-banner {
    padding: 80px;
}

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

/* Tipografía */
.h1banner {
    line-height: 80px;
    letter-spacing: -2%;
    font-weight: 500;
    font-family: var(--font-heading);
}

.Display02 {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -2%;
}

.Display03 {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -2%;
}

.txtbannerh5 {
    line-height: 28px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-heading);
}

h1,
h2,
h3,
h6 {
    font-family: var(--font-heading);
}

h1 {
    line-height: 52px;
    letter-spacing: -2%;
}

h3 {
    line-height: 36px;
    letter-spacing: -2%;
    font-weight: 500;
}

h4 {
    font-family: var(--font-body);
    line-height: 32px;
    letter-spacing: -2%;
    font-weight: 500;
}

h5 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -2%;
}

/* Secciones con scroll offset */
.template-landing__section {
    scroll-margin-top: 100px;
    padding: 60px 0;
}

.ButtonSession:hover {
    background-color: var(--color-naturaleza) !important;
    border-color: var(--color-naturaleza) !important;
}

/* Responsive - Móviles */
@media (max-width: 768px) {

    .container,
    .container-main {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h4 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    h5 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .template-landing__section {
        scroll-margin-top: 80px;
        padding: 40px 0;
    }
}

.fondo1 img,
.fondo2 img {
    width: 100%;
}

/* Responsive - Móviles pequeños */
@media (max-width: 480px) {

    .container,
    .container-main {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .template-landing__section {
        padding: 30px 0;
    }
}