/* ══════════════════════════════════════════
  SISTEMA DE COLOR — CC
  Base: Noche / Papel / Beige
  Acentos: Lila · Morado · Rosa · Salvia
══════════════════════════════════════════ */
:root {
    /* BASE */
    --noche: #0E0E0C;
    --papel: #FAF8F4;
    --beige: #E8E4DC;

    /* ACENTOS */
    --lila: #AFA9EC;
    /* emocional · énfasis · hover     */
    --morado: #534AB7;
    /* acción · CTAs · links            */
    --rosa: #E8A4B8;
    /* membresía · comunidad · B2C      */
    --salvia: #8DBFAA;
    /* empresas · calma · profesional   */

    /* SISTEMA */
    --lila-dim: rgba(175, 169, 236, .12);
    --morado-dim: rgba(83, 74, 183, .15);
    --salvia-dim: rgba(141, 191, 170, .12);
    --line-dark: rgba(250, 248, 244, .08);
    --line-light: rgba(14, 14, 12, .09);
    --mid: #7A7870;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {

    font-family: 'DM Sans', sans-serif;
    color: #0E0E0C !important;
    overflow-x: hidden;
    text-align: left;

}


h3,
h4,
h5 {
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    font-size: 20px;
    color: black;
}

/*navbar*/

.nav-link.active {

    color: #8DBFAA !important;
    padding: 20px 15px !important;

}

.navbar {

    background-color: black !important;
    color: white;
    font-size: 13px;
}

nav {
    position: sticky;
    gap: 20px;
    top: 0;
    font-size: 13px;

}

nav a {

    font-family: 'Space Mono', monospace;
    color: rgba(250, 248, 244, .45);
    text-decoration: none;
    padding: 20px 20px;
    display: inline-block;
    text-transform: uppercase;
    transition: all .5s ease;

}

nav img {
    max-width: 80px;
}

nav a:hover {

    color: var(--papel);
}

.nav-cta {
    background: var(--morado);
    color: var(--papel) !important;
    padding: 25px 20px;
    border-radius: 5px;
    font-size: 13px;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--lila) !important;
    color: var(--noche) !important;
}

/*inicio*/

.home {
    background: var(--papel);
    padding: 112px 64px !important;
}

.home h1 {

    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 60px;
    text-align: center;
}

.home h2 {

    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 5px;
    text-align: center;
}

.home-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "texto imagen"
        "bottom bottom";
    gap: 48px;
    align-items: start;
    margin-top: 56px;
    color: black;
}

.home-content {
    grid-area: texto;
}

.image {

    width: 100%;
    max-width: 380px;
    justify-self: center;
}

.image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.home-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin-bottom: 32px;
}

.home-statement em {
    font-style: italic;
    color: var(--morado);
    font-weight: 400;
}

.home-body ul li {
    list-style: none;
    padding: 10px;
    text-align: center;
}

.home-body p {
    font-size: 18px;
    line-height: 1.9;
    color: black;
    font-weight: 300;
    margin-bottom: 18px;
    text-align: left;
}

.home-body strong {
    color: black;
    font-weight: 500;
}

.home-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}


/* pull quote */
.pull {
    background: var(--noche);
    padding: 45px 64px;
    display: flex;
    align-items: end;
    gap: 28px;
    margin-top: 72px;
}

.pull-mark {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--lila);
    line-height: .9;
    flex-shrink: 0;
}

.pull-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 28px);

    font-weight: 400;
    color: rgba(250, 248, 244, .8);
    line-height: 1.5;
}

.pull-text strong {
    color: var(--lila);
    font-weight: 700;
}

.btn-res {
    display: inline-block;
    background: black;
    color: white;
    font-family: 'Space Mono', monospace;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 2px;
    transition: all .25s;
    align-self: flex-start;
}


/*nosotros*/

.nosotros {
    background: #E8E4DC;
    padding: 120px 64px;
}

.nosotros h1 {

    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 50px;
    text-align: center;
    font-size: 30px;
    margin-top: 40px;


}

.nosotros-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "imagen texto"
        "bottom bottom";
    gap: 48px;
    align-items: start;
    margin-top: 40px;
    color: black;
}

.nosotros-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin-bottom: 32px;
}

.nosotros-body p {
    font-size: 18px;
    line-height: 1.9;
    color: black;
    font-weight: 300;
    margin-bottom: 18px;
    text-align: left;
}

.nosotros-body strong {
    color: black;
    font-weight: 500;
}

.nosotros-content {
    grid-area: texto;
}

/* ── GALERÍA NOSOTROS ── */
.galeria-nosotros {
    background: var(--papel);
    padding: 80px 64px;
}

.galeria-nosotros h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--noche);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeria-grid a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(14, 14, 12, .10);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    padding: 0;
}

.galeria-grid a:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(14, 14, 12, .18);
}

.galeria-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.galeria-grid a:hover img {
    transform: scale(1.05);
}


/* ── GALERÍA EXPERIENCIAS ── */
.galeria-experiencias {
    background: var(--papel);
    padding: 80px 64px;
}

.galeria-experiencias h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    padding: 40px;
    color: var(--noche);
}

/*experiencias*/

.experiencias {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 60px;
}

.experiencias h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 40px;
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
}

.actividades {
    padding: 20px;
}

.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

.card h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    min-height: 70px;
    text-align: center;
}

/*tote bags*/

.tote {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.tote h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*gorras*/

.gorras {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.gorras h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*pulseras*/

.pulseras {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.pulseras h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*macetas*/

.macetas {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.macetas h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*espejos*/

.espejos {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.espejos h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*abanicos*/

.abanicos {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.abanicos h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*pinturas*/

.pinturas {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.pinturas h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*tazas*/

.tazas {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.tazas h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*pasteles*/

.pasteles {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.pasteles h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*milagritos*/

.milagritos {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.milagritos h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*ataditos*/

.ataditos {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.ataditos h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/*piñatas*/

.piñatas {
    background-image: url(../img/fondotalleres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 5%;
}

.piñatas h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

.galeria {
    padding: 20px;
}

.galeria img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

}

.galeria img:hover {
    transform: scale(1.03);
}

.item {
    margin-bottom: 30px;
}

/* alturas similares a la imagen */
.img-sm {
    height: 220px;
}

.img-md {
    height: 320px;
}

.img-lg {
    height: 420px;
}

.nav-link-custom {
    font-size: 1rem;
    font-weight: bold;
    transition: opacity 0.3s;
    color: black !important;

}

.nav-link-custom:hover {
    opacity: 0.6;
    color: rgb(65, 54, 54) !important;
}

/*Membresias*/

.membresias {
    background: var(--papel);
    padding: 120px 64px;
}

.membresias h1 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

.membresias img {
    max-width: 50%;
    height: auto;
    margin: auto;
    display: block;
}

/* ═══════ HERO — Noche · acento Lila ════════════ */
.hero {
    min-height: 100vh;
    background: var(--noche);
    padding: 140px 64px 100px;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

/* grid sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* gradiente lila ambient */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(175, 169, 236, .12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-sub {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.hero-sub-line {
    width: 36px;
    height: 1px;
    background: var(--lila);
    flex-shrink: 0;
}

.hero-sub-text {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lila);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 9vw, 130px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -3px;
    color: var(--papel);
    position: relative;
    z-index: 2;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--lila);
    display: block;
    letter-spacing: -2px;
}

.hero-title .outline {
    -webkit-text-stroke: 1.5px rgba(250, 248, 244, .2);
    color: transparent;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--line-dark);
    position: relative;
    z-index: 2;
}

.hero-copy {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(250, 248, 244, .55);
    font-weight: 300;
}

.hero-copy strong {
    color: var(--papel);
    font-weight: 400;
}

.hero-copy em {
    color: var(--lila);
    font-style: italic;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.btn-primary {
    display: inline-block;
    background: var(--morado);
    color: var(--papel);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 2px;
    transition: all .25s;
}

.btn-primary:hover {
    background: var(--lila);
    color: var(--noche);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(250, 248, 244, .3);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(250, 248, 244, .12);
    padding-bottom: 3px;
    transition: all .2s;
}

.btn-ghost:hover {
    color: var(--papel);
    border-color: var(--papel);
}

/* ── DIVIDER CON TABS ── */
.tabs-bar {
    background: var(--noche);
    padding: 0 64px;
    border-bottom: 1px solid var(--line-dark);
    display: flex;
    gap: 0;
}

.tab {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 28px;
    color: rgba(250, 248, 244, .3);
    border-bottom: 2px solid transparent;
    cursor: default;
    transition: all .2s;
}

.tab:hover {
    color: rgba(250, 248, 244, .6);
}

.tab.active {
    color: var(--salvia);
    border-bottom-color: var(--salvia);
}

/* ══════════════════════════════════════════
  ACTIVACIONES — Papel · acento Morado
══════════════════════════════════════════ */
.activaciones {
    background: var(--papel);
    padding: 120px 64px;
}

.section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mid);
    display: block;
    margin-bottom: 16px;
}

.act-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line-light);
}

.act-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1.5px;
}

.act-title em {
    font-style: italic;
    color: var(--morado);
    font-weight: 400;
}

.act-intro-desc {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(14, 14, 12, .58);
    font-weight: 300;
}

.act-intro-desc em {
    font-style: italic;
    color: var(--noche);
    font-weight: 400;
}

/* grid de activaciones */
.act-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.act-card {
    background: white;
    border: 1px solid var(--line-light);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: default;
}

.act-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--morado);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.act-card:hover {
    background: var(--noche);
}

.act-card:hover::after {
    transform: scaleX(1);
}

.act-card:hover .ac-tag {
    color: var(--lila);
}

.act-card:hover .ac-title {
    color: var(--papel);
}

.act-card:hover .ac-desc {
    color: rgba(250, 248, 244, .5);
}

.act-card:hover .ac-pill {
    background: var(--morado-dim);
    color: rgba(175, 169, 236, .7);
}

.ac-num {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(14, 14, 12, 0.18);
    position: absolute;
    top: -10px;
    right: 16px;
    line-height: 1;
    pointer-events: none;
    transition: color .3s;
}

.act-card:hover .ac-num {
    color: rgba(250, 248, 244, 0.116);
}

.ac-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 24px;
}

.ac-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--morado);
    display: block;
    margin-bottom: 12px;
    transition: color .3s;
}

.ac-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color .3s;
}

.ac-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(14, 14, 12, .6);
    font-weight: 300;
    transition: color .3s;
    margin-bottom: 20px;
}

.ac-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ac-pill {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--beige);
    color: rgba(14, 14, 12, .5);
    padding: 4px 10px;
    border-radius: 20px;
    transition: all .3s;
}



/* ═══════ LIENZOS — Noche · acento Salvia ════════ */
.lienzos {
    background: var(--noche);
    padding: 120px 64px;
}

.lienzos-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line-dark);
}

.lienzos-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1.5px;
    color: var(--papel) !important;
}

.lienzos-title em {
    font-style: italic;
    color: var(--salvia);
    font-weight: 400;
}

.lienzos-desc {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(250, 248, 244, .45);
    font-weight: 300;
}

.lienzo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-bottom: 2px;
}

.lienzo-card {
    background: rgba(250, 248, 244, .03);
    border: 1px solid var(--line-dark);
    padding: 40px 28px;
    transition: all .3s;
    cursor: default;
}

.lienzo-card:hover {
    background: var(--salvia-dim);
    border-color: rgba(141, 191, 170, .25);
}

.lienzo-card:hover .lz-emoji {
    filter: none;
    transform: scale(1.08);
}

.lz-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    filter: grayscale(1) brightness(1.6);
    transition: all .3s;
}

.lz-ref {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: rgba(250, 248, 244, .2);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.lz-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    color: var(--papel);
    margin-bottom: 10px;
    line-height: 1.2;
}

.lz-why {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--salvia);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.lz-desc {
    font-size: 13px;
    color: rgba(250, 248, 244, .38);
    line-height: 1.7;
    font-weight: 300;
}

.tecnicas-bar {
    padding: 26px 36px;
    background: rgba(250, 248, 244, .03);
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tec-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: rgba(250, 248, 244, .25);
    letter-spacing: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.tec-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tec {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(250, 248, 244, .6);
    background: rgba(250, 248, 244, .06);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
    transition: all .2s;
}

.tec:hover {
    background: var(--salvia-dim);
    color: var(--salvia);
}

/* ══════════════════════════════════════════
  POR QUÉ NOSOTROS — Beige · acento Lila
══════════════════════════════════════════ */
.porque {
    background: var(--beige);
    padding: 120px 64px;
}

.porque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.porque-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin-bottom: 32px;
}

.porque-statement em {
    font-style: italic;
    color: var(--morado);
}

.porque-body p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(14, 14, 12, .6);
    font-weight: 300;
    margin-bottom: 18px;
}

.porque-body strong {
    color: var(--noche);
    font-weight: 500;
}

/* diferenciadores */
.difs {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dif {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 28px;
    background: black;
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    transition: all .25s;
    cursor: default;
}


.dif-icon {
    font-size: 26px;
    line-height: 1.4;
    text-align: center;
}

.dif-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color .25s;
    color: white;
}

.dif-text {
    font-size: 14px;
    color: white;
    line-height: 1.65;
    font-weight: 300;
    transition: color .25s;
}

/* pull quote */
.pull {
    background: var(--noche);
    padding: 56px 64px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 72px;
}

.pull-mark {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--lila);
    line-height: .9;
    flex-shrink: 0;
}

.pull-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 28px);
    font-style: italic;
    font-weight: 400;
    color: rgba(250, 248, 244, .8);
    line-height: 1.5;
}

.pull-text strong {
    color: var(--lila);
    font-weight: 700;
}

/* ═════ ASÍ TRABAJAMOS ═══════ */
.proceso {
    background: var(--papel);
    padding: 120px 64px;
}

.proceso-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.proceso-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1.5px;
}

.proceso-title em {
    font-style: italic;
    color: #506B5F;
    font-weight: 400;
}

.proceso-desc {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(14, 14, 12, .58);
    font-weight: 300;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--line-light);
}

.t-step {
    padding: 0 24px 0 0;
}

.t-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--beige);
    border: 2px solid var(--line-light);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    cursor: default;
}

.t-step:hover .t-dot {
    background: #506B5F;
    border-color: #506B5F;
    box-shadow: 0 0 0 5px rgba(141, 191, 170, .18);
}

.t-step:first-child .t-dot {
    background: #506B5F;
    border-color: #506B5F;
    box-shadow: 0 0 0 5px rgba(141, 191, 170, .18);
}

.t-num {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--mid);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.t-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.t-desc {
    font-size: 13px;
    color: rgba(14, 14, 12, .55);
    line-height: 1.7;
    font-weight: 300;
}

/* paso 5 — cierre emocional */
.t-step:last-child .t-title {
    color: black;
}

/* ═════ CTA FINAL — Morado · acento Lila ═════ */
.cta-section {
    background: var(--morado);
    padding: 120px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(175, 169, 236, .15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(250, 248, 244, .5);
    display: block;
    margin-bottom: 24px;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
    color: white;
}

.cta-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--lila);
    display: block;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-sub {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    font-weight: 300;
    margin-bottom: 8px;
}

.cta-sub strong {
    color: var(--papel);
    font-weight: 400;
}

.btn-cta {
    display: inline-block;
    background: var(--papel);
    color: var(--morado);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 2px;
    transition: all .25s;
    align-self: flex-start;
}

.btn-cta:hover {
    background: var(--lila);
    color: var(--noche);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14, 14, 12, .25);
}

.btn-outline {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(250, 248, 244, .4);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(250, 248, 244, .15);
    padding-bottom: 3px;
    transition: all .2s;
    align-self: flex-start;
}

.btn-outline:hover {
    color: var(--papel);
    border-color: var(--papel);
}

/* ── INSCRÍBETE ── */


/* Hero de la sección */
.inscribete-hero {
    background: var(--noche);
    padding: 160px 64px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inscribete-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(175, 169, 236, .18), transparent);
    pointer-events: none;
}

.inscribete-hero .eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lila);
    margin-bottom: 20px;
}

.inscribete-hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(250, 248, 244, .55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 20px
}

/* CONTENIDO */
.contenido-hero {
    position: relative;
    z-index: 2;
}

/* GLOW */
.glow {

    position: absolute;

    width: 700px;
    height: 700px;

    background: #6c5ce7;

    filter: blur(180px);

    opacity: 0.30;

    border-radius: 80%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


/* MINI TEXTO */
.mini-texto {

    color: #9b7bff;

    letter-spacing: 4px;

    font-size: 0.8rem;

    margin-bottom: 20px;

    padding: 20px;
}

/* TITULO */
.titulo-principal {

    font-size: clamp(3rem, 8vw, 6.5rem);

    color: white;

    font-weight: 500;

    line-height: 1.1;
}

.titulo-principal span {

    color: #9b7bff;

    font-style: italic;
}

/* BOTÓN PREMIUM */
.btn-premium {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    padding: 18px 34px;

    background: rgba(108, 92, 231, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(12px);

    color: white;

    text-decoration: none;

    border-radius: 18px;

    font-weight: 600;

    transition: all 0.4s ease;

    box-shadow:
        0 0 20px rgba(108, 92, 231, 0.2);
}

/* HOVER */
.btn-premium:hover {

    transform: translateY(-4px);

    background: rgba(108, 92, 231, 0.25);

    color: white;

    box-shadow:
        0 0 35px rgba(108, 92, 231, 0.4);
}

/* FLECHA */
.flecha {

    display: inline-block;

    animation: flotar 1.5s infinite;

    font-size: 1.2rem;
}

/* ANIMACIÓN ENTRADA */
.fade-up {

    opacity: 0;

    transform: translateY(40px);

    animation: aparecer 1s ease forwards;
}

.fade-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-up:nth-child(3) {
    animation-delay: 0.4s;
}

.fade-up:nth-child(4) {
    animation-delay: 0.6s;
}

/* SEGUNDA SECCIÓN */
.segunda-seccion {
    background-color: var(--papel);
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.segunda-seccion h2 {
    font-family: 'Playfair Display', serif;
    color: black;
    position: relative;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

/* Estilo iframe */

.iframe-responsive {

    width: 100%;

    height: 100vh;

    border: none;

    display: block;

}

/* IFRAME */
.iframe-mobile {

    width: 1px;

    min-width: 100%;

    height: 100dvh;

    border: none;

    display: block;

    overflow: hidden;

}


/* ANIMACIÓN FLECHA */
@keyframes flotar {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(6px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes aparecer {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ── FOOTER ── */
.footer {
    background-color: var(--noche);
    padding: 40px 64px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    color: white;
}

.footer-brand .sub {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--salvia);
}

.footer-sep {
    color: rgba(250, 248, 244, .15);
}

.footer-info {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: white;
    letter-spacing: 1px;
    line-height: 2;
    text-align: right;
}

.footer-info a {
    color: var(--salvia);
    text-decoration: none;
}

.footer-note {
    font-size: 9px;
    color: white;
    margin-top: 4px;
}


/* Responsiveness */
@media (max-width: 1024px) {

    a.nav-link {
        border-left: none;
        text-align: center;

    }

    .navbar p {
        padding: 16px;
    }

    .navbar button {
        background-color: white;
    }

    .borde-derecho {
        border-right: none;
    }

    .nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .home {
        padding: 112px 15px !important;
    }

    .home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros {
        padding: 80px 15px;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "imagen"
            "texto"
            "bottom";
        gap: 32px;
    }


    .galeria-nosotros {
        padding: 60px 32px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 110px 24px 80px;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        align-items: flex-start;
    }

    .galeria-experiencias {
        padding: 60px 32px;
    }

    .activaciones,
    .lienzos,
    .porque,
    .proceso {
        padding: 80px 24px;
    }

    .act-intro,
    .lienzos-intro,
    .porque-grid,
    .proceso-intro,
    .cta-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .act-grid {
        grid-template-columns: 1fr;
    }

    .lienzo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .footer {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 992.98px) {
    a.nav-link {
        border-left: none;
        text-align: center;

    }

    .navbar p {
        padding: 16px;
    }

    .navbar button {
        background-color: white;
    }

    .borde-derecho {
        border-right: none;
    }

    .home {
        padding: 112px 30px !important;
    }

    .home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros {
        padding: 80px 15px;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "imagen"
            "texto"
            "bottom";
        gap: 32px;
    }

    .galeria-nosotros {
        padding: 60px 32px;
    }

    .galeria-experiencias {
        padding: 60px 32px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiencias {
        padding: 100px 30px;
    }

    .experiencias h1 {
        padding: 59px;
    }

    .card img {
        height: 220px;
    }

    .actividades {
        padding: 35px;
    }

    .membresias img {
        max-width: 100%;
        height: auto;
        margin: auto;
        display: block;
    }

    .footer {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

}


/* Small devices (less than 768px) */
@media (max-width: 768px) {
    nav a {
        font-size: 13px;
        padding: 20px 10px;
        text-align: center;
    }

    nav {
        position: static;
    }

    nav a {
        display: block;
    }

    .home {
        padding: 112px 15px 60px !important;
    }

    .home h1 {
        font-size: clamp(28px, 7vw, 42px);
        padding: 20px 10px;
    }

    .home h5 {
        font-size: 16px;
        padding: 0 10px;
    }

    .home-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "texto"
            "imagen"
            "bottom";
        gap: 32px;
    }

    .home-bottom {
        justify-content: flex-start;
    }

    .home-body ul li {
        text-align: left;
    }

    .home-statement {
        font-size: clamp(22px, 5.5vw, 30px);
        margin-bottom: 20px;
    }

    .home-body p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }

    .home-body ul li {
        font-size: 15px;
    }

    .btn-res {
        font-size: 12px;
        padding: 14px 16px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .nosotros h1 {
        padding: 30px;

    }

    .nosotros {
        padding: 80px 15px;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "imagen"
            "texto"
            "bottom";
        gap: 32px;
    }

    .img-sm,
    .img-md,
    .img-lg {
        height: auto;
    }

    .nosotros-statement {
        font-size: clamp(22px, 5.5vw, 30px);
        margin-bottom: 20px;
    }

    .galeria-nosotros {
        padding: 60px 16px;
    }

    .galeria-experiencias {
        padding: 60px 16px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid img {
        height: 220px;
    }

    .nosotros h1 {
        padding: 30px;

    }

    .carrusel-exp .item img {
        height: 280px;
        object-fit: contain;
    }

    .carrusel-label {
        font-size: 16px;
    }


    .experiencias {
        padding: 80px 20px;
    }

    .experiencias h1 {
        padding: 59px;
        font-size: 2rem;
    }

    .card {
        margin-bottom: 18px;
    }

    .card img {
        height: 250px;
    }

    .card p {
        min-height: auto;
    }

    .actividades {
        padding: 35px;
    }

}

.membresias img {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.hero-sub {
    padding: 20px;
}


.inscribete-section {
    padding: 50px 16px 70px;
}

.iframe-mobile {

    height: 1400px;

    transform: scale(0.85);

    transform-origin: top left;

    width: 118%;
}


/* Extra small devices (less than 576px) */
@media (max-width: 576px) {

    nav {
        position: static;
    }

    nav a {
        display: block;
        text-align: center;
    }

    .home {
        padding: 112px 15px !important;
    }

    .home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros {
        padding: 80px 15px;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "imagen"
            "texto"
            "bottom";
        gap: 32px;
    }

    .galeria-nosotros {
        padding: 60px 16px;
    }

    .galeria-experiencias {
        padding: 60px 16px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid img {
        height: 220px;
    }

    .nosotros h1 {
        padding: 30px;

    }

    .carrusel-exp .item img {
        height: 240px;
        object-fit: contain;
    }


    .experiencias {
        padding: 70px 15px;
    }

    .experiencias h1 {
        padding: 59px;
    }

    .card img {
        height: 220px;
    }

    .actividades {
        padding: 35px;
    }

}

.membresias img {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}