/* ── Ghangah – Estilos públicos ─────────────────────────────────────────── */
:root {
    --gh-arena:    #f5f0e8;
    --gh-arena-d:  #e8dfc8;
    --gh-tierra:   #8b6f47;
    --gh-tierra-d: #5c4530;
    --gh-musgo:    #5a7a5a;
    --gh-cielo:    #7a9eb5;
    --gh-texto:    #2d2416;
    --gh-gris:     #888;
    --gh-radio:    8px;
    --gh-font:     'Georgia', 'Times New Roman', serif;
}

/* ══════════════════════════════════════════════════════════════════════════
   FULL-SCREEN PAGE  [ghangah]
   ══════════════════════════════════════════════════════════════════════════ */

/* Rompe el contenedor del tema y ocupa 100vw */
.ghangah-page {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left:  -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow-x: hidden;
    font-family: var(--gh-font);
    color: var(--gh-texto);
}

/* Cada sección ocupa la pantalla completa */
.ghangah-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    box-sizing: border-box;
    position: relative;
}

/* Ancho del contenido interior */
.ghangah-screen__inner {
    max-width: 720px;
    width: 100%;
}

.ghangah-screen__inner--wide {
    max-width: 960px;
}

.ghangah-screen__inner--center {
    text-align: center;
}

/* H2 de sección */
.ghangah-screen__h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: inherit;
    letter-spacing: .06em;
    margin: 0 0 40px;
    text-align: center;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.ghangah-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    background: transparent;
    transition: background .35s, box-shadow .35s;
}

.ghangah-nav.is-scrolled {
    background: rgba(44, 24, 8, .95);
    box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.ghangah-nav__lista {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

.ghangah-nav__lista li a {
    display: block;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    font-family: var(--gh-font);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .2s;
}

.ghangah-nav__lista li a:hover,
.ghangah-nav__lista li a.is-active {
    color: #fff;
}

/* Compensa el menú fijo para que los anclas no queden tapados */
.ghangah-screen {
    scroll-margin-top: 60px;
}

@media (max-width: 700px) {
    .ghangah-nav { padding: 0 12px; }
    .ghangah-nav__lista li a {
        padding: 0 10px;
        font-size: .75rem;
        letter-spacing: .08em;
    }
}

/* ── ① HERO ─────────────────────────────────────────────────────────────── */
.ghangah-screen--hero {
    background-color: #3a2510;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
}

.ghangah-screen--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,15,5,.5) 0%, rgba(20,10,3,.75) 100%);
    pointer-events: none;
}

.ghangah-screen--hero .ghangah-screen__inner,
.ghangah-screen--hero .ghangah-scroll-hint {
    position: relative;
    z-index: 1;
}

.ghangah-breath-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 36px;
    overflow: hidden;
    animation: ghangah-inhale 6s ease-in-out infinite;
    box-shadow:
        0 0 0 3px rgba(255,255,255,.25),
        0 0 0 10px rgba(255,255,255,.07);
}

.ghangah-breath-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@keyframes ghangah-inhale {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 0 0 10px rgba(255,255,255,.07); }
    50%       { transform: scale(1.06); box-shadow: 0 0 0 4px rgba(255,255,255,.4),  0 0 0 18px rgba(255,255,255,.12); }
}

.ghangah-titulo {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    letter-spacing: .14em;
    color: #fff;
    margin: 0 0 .3em;
    font-weight: normal;
}

.ghangah-subtitulo {
    font-size: clamp(.85rem, 2vw, 1.1rem);
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin: 0;
}

/* Indicador de scroll */
.ghangah-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: rgba(255,255,255,.45);
    animation: ghangah-bounce 2s ease-in-out infinite;
    user-select: none;
}

@keyframes ghangah-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── ② QUÉ ES ────────────────────────────────────────────────────────────── */
.ghangah-screen--que-es {
    background: #fff;
}

.ghangah-screen--que-es h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gh-tierra-d);
    border-bottom: 1px solid var(--gh-arena-d);
    padding-bottom: .4em;
    margin: 0 0 1em;
}

.ghangah-screen--que-es p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.9;
    color: #444;
    margin: 0 0 1.2em;
}

/* ── ③ FUNDADOR ──────────────────────────────────────────────────────────── */
.ghangah-screen--fundador {
    background: var(--gh-arena);
    padding: 0;
}

.ghangah-fundador__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

.ghangah-fundador__imagen {
    overflow: hidden;
}

.ghangah-fundador__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ghangah-fundador__texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
    border-left: 4px solid var(--gh-tierra);
}

.ghangah-fundador__texto h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gh-tierra-d);
    margin: 0 0 .8em;
}

.ghangah-fundador__texto p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.9;
    color: #555;
    margin: 0;
}

@media (max-width: 700px) {
    .ghangah-fundador__grid {
        grid-template-columns: 1fr;
    }
    .ghangah-fundador__imagen {
        height: 55vw;
    }
    .ghangah-fundador__texto {
        padding: 40px 24px;
        border-left: none;
        border-top: 4px solid var(--gh-tierra);
    }
}

/* ── ④ PILARES ───────────────────────────────────────────────────────────── */
.ghangah-screen--pilares {
    background: var(--gh-tierra-d);
    color: #fff;
}

.ghangah-screen--pilares .ghangah-screen__h2 {
    color: rgba(255,255,255,.85);
}

.ghangah-pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.ghangah-pilar {
    text-align: center;
    padding: 36px 28px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--gh-radio);
    transition: background .3s;
}

.ghangah-pilar:hover {
    background: rgba(255,255,255,.13);
}

.ghangah-pilar__icono {
    display: block;
    font-size: 2.6rem;
    color: var(--gh-arena);
    margin-bottom: 14px;
}

.ghangah-pilar h3 {
    font-size: 1.1rem;
    letter-spacing: .1em;
    color: #fff;
    margin: 0 0 10px;
}

.ghangah-pilar p {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* ── ⑤ TALLERES ──────────────────────────────────────────────────────────── */
.ghangah-screen--talleres {
    background: #fafaf8;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
}

.ghangah-screen--talleres .ghangah-screen__h2 {
    color: var(--gh-tierra-d);
}

.ghangah-talleres__lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ghangah-taller {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--gh-arena-d);
    border-radius: var(--gh-radio);
    padding: 24px;
    transition: box-shadow .3s;
}

.ghangah-taller:hover {
    box-shadow: 0 6px 24px rgba(139,111,71,.12);
}

.ghangah-taller--agotado { opacity: .65; }

.ghangah-taller__fecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.ghangah-taller__dia {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--gh-tierra);
    line-height: 1;
}

.ghangah-taller__mes {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gh-gris);
    margin-top: 2px;
}

.ghangah-taller__nombre {
    font-size: 1.2rem;
    color: var(--gh-tierra-d);
    margin: 0 0 8px;
}

.ghangah-taller__desc {
    color: #555;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 12px;
}

.ghangah-taller__meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: .88rem;
    color: var(--gh-gris);
}

/* ══════════════════════════════════════════════════════════════════════════
   SHORTCODES INDIVIDUALES  (fallback sin full-screen)
   ══════════════════════════════════════════════════════════════════════════ */

.ghangah-presentacion {
    font-family: var(--gh-font);
    color: var(--gh-texto);
    max-width: 900px;
    margin: 0 auto;
}

.ghangah-presentacion__hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(160deg, var(--gh-arena) 0%, #fff 100%);
}

.ghangah-presentacion__breath-circle {
    width: 180px;
    height: 180px;
    border: 2px solid var(--gh-tierra);
    border-radius: 50%;
    margin: 0 auto 30px;
    opacity: .35;
    animation: ghangah-inhale 6s ease-in-out infinite;
}

.ghangah-presentacion__titulo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: .12em;
    color: var(--gh-tierra-d);
    margin: 0 0 .4em;
}

.ghangah-presentacion__subtitulo {
    font-size: 1.1rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gh-gris);
    margin: 0;
}

.ghangah-presentacion__contenido { padding: 40px 20px 60px; }

.ghangah-presentacion__bloque {
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

.ghangah-presentacion__bloque h2 {
    font-size: 1.5rem;
    color: var(--gh-tierra-d);
    border-bottom: 1px solid var(--gh-arena-d);
    padding-bottom: .4em;
    margin-bottom: .8em;
}

.ghangah-presentacion__bloque--destacado {
    background: var(--gh-arena);
    padding: 32px 40px;
    border-radius: var(--gh-radio);
    border-left: 4px solid var(--gh-tierra);
}

.ghangah-presentacion__pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ghangah-talleres {
    font-family: var(--gh-font);
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
}

.ghangah-talleres__titulo {
    font-size: 1.8rem;
    color: var(--gh-tierra-d);
    letter-spacing: .06em;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gh-arena-d);
    padding-bottom: .5em;
}

/* ══════════════════════════════════════════════════════════════════════════
   BOTONES
   ══════════════════════════════════════════════════════════════════════════ */

.ghangah-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--gh-radio);
    font-family: var(--gh-font);
    font-size: .95rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: background .25s, transform .15s;
}

.ghangah-btn--inscribir {
    background: var(--gh-tierra);
    color: #fff;
}

.ghangah-btn--inscribir:hover {
    background: var(--gh-tierra-d);
    color: #fff;
    transform: translateY(-1px);
}

.ghangah-btn--enviar {
    background: var(--gh-musgo);
    color: #fff;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    letter-spacing: .05em;
}

.ghangah-btn--enviar:hover { background: #3d5a3d; }

.ghangah-badge-agotado {
    display: inline-block;
    padding: 6px 14px;
    background: #e5e5e5;
    border-radius: 20px;
    font-size: .85rem;
    color: var(--gh-gris);
}

/* ══════════════════════════════════════════════════════════════════════════
   MODAL DE INSCRIPCIÓN
   ══════════════════════════════════════════════════════════════════════════ */

.ghangah-form-wrap {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: ghangah-fadein .25s ease;
}

@keyframes ghangah-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ghangah-form-wrap__inner {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    max-width: 580px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.ghangah-form-wrap__cerrar {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gh-gris);
    line-height: 1;
}

.ghangah-form-wrap__inner h3 {
    font-size: 1.4rem;
    color: var(--gh-tierra-d);
    margin: 0 0 4px;
}

.ghangah-form__fecha {
    font-size: .88rem;
    color: var(--gh-gris);
    margin: 0 0 24px;
}

.ghangah-form .ghangah-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ghangah-form label {
    display: flex;
    flex-direction: column;
    font-size: .9rem;
    color: var(--gh-texto);
    gap: 5px;
    margin-bottom: 14px;
}

.ghangah-form input,
.ghangah-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--gh-arena-d);
    border-radius: 6px;
    font-family: var(--gh-font);
    font-size: .95rem;
    color: var(--gh-texto);
    transition: border-color .2s;
}

.ghangah-form input:focus,
.ghangah-form textarea:focus {
    outline: none;
    border-color: var(--gh-tierra);
}

.ghangah-form__footer { margin-top: 20px; }

.ghangah-form__respuesta {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: .9rem;
    display: none;
}

.ghangah-form__respuesta.exito {
    background: #eaf5ea;
    color: var(--gh-musgo);
    display: block;
}

.ghangah-form__respuesta.error {
    background: #fdf0f0;
    color: #c0392b;
    display: block;
}

/* ══════════════════════════════════════════════════════════════════════════
   UTILIDADES
   ══════════════════════════════════════════════════════════════════════════ */

.ghangah-vacio,
.ghangah-empty {
    text-align: center;
    color: var(--gh-gris);
    font-style: italic;
    padding: 40px 20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 700px) {
    .ghangah-screen { padding: 48px 20px; }

    .ghangah-screen--fundador .ghangah-screen__inner {
        padding-left: 20px;
        border-left-width: 3px;
    }

    .ghangah-taller {
        grid-template-columns: 1fr;
    }

    .ghangah-taller__fecha {
        flex-direction: row;
        gap: 8px;
        align-items: baseline;
    }

    .ghangah-form .ghangah-form__row {
        grid-template-columns: 1fr;
    }

    .ghangah-form-wrap__inner {
        padding: 24px 20px;
    }
}
