/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* =========================================================
   MANDALA IMPRESIONES
   SISTEMA VISUAL GLOBAL
   ========================================================= */

:root {
    --mi-black: #090909;
    --mi-black-soft: #131313;
    --mi-white: #ffffff;
    --mi-bg-soft: #f7f5f1;
    --mi-text: #242424;
    --mi-text-soft: #666666;

    --mi-gold-light: #c6ab81;
    --mi-gold-dark: #987a4e;

    --mi-border: #e8e4dd;
    --mi-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

    --mi-radius-sm: 14px;
    --mi-radius: 22px;
    --mi-radius-lg: 34px;

    --mi-container: 1200px;
}

/* =========================================================
   BASE
   ========================================================= */

.mi-page {
    width: 100%;
    overflow: hidden;
    background: var(--mi-white);
    color: var(--mi-text);
}

.mi-page *,
.mi-page *::before,
.mi-page *::after {
    box-sizing: border-box;
}

.mi-container {
    width: min(calc(100% - 40px), var(--mi-container));
    margin-inline: auto;
}

.mi-section {
    position: relative;
    padding: 100px 0;
}

.mi-section--soft {
    background: var(--mi-bg-soft);
}

.mi-section--dark {
    background: var(--mi-black);
    color: var(--mi-white);
}

.mi-section--compact {
    padding: 70px 0;
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

.mi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--mi-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mi-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--mi-gold-light),
        var(--mi-gold-dark)
    );
}

.mi-eyebrow--light {
    color: var(--mi-gold-light);
}

.mi-title {
    max-width: 850px;
    margin: 0 0 24px;
    color: var(--mi-black);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.mi-title--medium {
    font-size: clamp(32px, 4vw, 48px);
}

.mi-title--small {
    font-size: clamp(27px, 3vw, 38px);
}

.mi-title--light {
    color: var(--mi-white);
}

.mi-title span {
    color: var(--mi-gold-dark);
}

.mi-lead {
    max-width: 780px;
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 19px;
    line-height: 1.7;
}

.mi-lead--light {
    color: rgba(255,255,255,.73);
}

.mi-text {
    color: var(--mi-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.mi-text p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   BOTONES
   ========================================================= */

.mi-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.mi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.mi-btn:hover {
    transform: translateY(-2px);
}

.mi-btn--gold {
    background: linear-gradient(
        135deg,
        var(--mi-gold-light),
        var(--mi-gold-dark)
    );
    color: #111 !important;
}

.mi-btn--outline-light {
    border-color: rgba(255,255,255,.38);
    color: #fff !important;
    background: transparent;
}

.mi-btn--outline-light:hover {
    border-color: var(--mi-gold-light);
    color: var(--mi-gold-light) !important;
}

.mi-btn--outline {
    border-color: var(--mi-gold-dark);
    color: var(--mi-black) !important;
    background: transparent;
}

/* =========================================================
   HERO
   ========================================================= */

.mi-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 110px 0 95px;
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(198,171,129,.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(152,122,78,.12),
            transparent 35%
        ),
        #080808;
    color: #fff;
}

.mi-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--mi-gold-light),
        transparent
    );
    opacity: .55;
}

.mi-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 70px;
    align-items: center;
}

.mi-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(45px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -0.045em;
    font-weight: 850;
}

.mi-hero h1 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(
        90deg,
        var(--mi-gold-light),
        var(--mi-gold-dark)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mi-hero__intro {
    max-width: 720px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 19px;
    line-height: 1.7;
}

.mi-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.mi-hero__point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(198,171,129,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.84);
    font-size: 13px;
    font-weight: 700;
}

.mi-hero__point::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mi-gold-light);
}

/* =========================================================
   HERO VISUAL / MOCKUPS
   ========================================================= */

.mi-visual {
    position: relative;
}

.mi-visual__frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198,171,129,.28);
    border-radius: var(--mi-radius-lg);
    background: #151515;
    box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.mi-visual__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.mi-visual__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(198,171,129,.25);
    border-radius: 16px;
    background: rgba(14,14,14,.92);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
}

.mi-visual__badge--top {
    top: -20px;
    right: -20px;
}

.mi-visual__badge--bottom {
    bottom: -22px;
    left: -25px;
}

.mi-visual__badge strong {
    display: block;
    font-size: 14px;
}

.mi-visual__badge span {
    color: var(--mi-gold-light);
    font-size: 12px;
}

/* =========================================================
   GRIDS
   ========================================================= */

.mi-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px;
    align-items: center;
}

.mi-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mi-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* =========================================================
   TARJETAS
   ========================================================= */

.mi-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--mi-border);
    border-radius: var(--mi-radius);
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.mi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(152,122,78,.35);
    box-shadow: var(--mi-shadow);
}

.mi-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(198,171,129,.23),
        rgba(152,122,78,.10)
    );
    color: var(--mi-gold-dark);
}

.mi-card__icon svg {
    width: 27px;
    height: 27px;
}

.mi-card h3 {
    margin: 0 0 13px;
    color: var(--mi-black);
    font-size: 21px;
    line-height: 1.25;
}

.mi-card p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 15.5px;
    line-height: 1.68;
}

/* =========================================================
   IMÁGENES EDITORIALES
   ========================================================= */

.mi-image {
    position: relative;
}

.mi-image img {
    width: 100%;
    display: block;
    border-radius: var(--mi-radius-lg);
    object-fit: cover;
}

.mi-image--shadow img {
    box-shadow: var(--mi-shadow);
}

.mi-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 55%;
    aspect-ratio: 1;
    right: -25px;
    bottom: -25px;
    border-radius: 50%;
    background: rgba(198,171,129,.15);
    filter: blur(4px);
}

/* =========================================================
   BLOQUE DESTACADO
   ========================================================= */

.mi-feature {
    padding: 40px;
    border-radius: var(--mi-radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(198,171,129,.14),
            rgba(152,122,78,.04)
        );
    border: 1px solid rgba(152,122,78,.18);
}

/* =========================================================
   CASOS REALES
   ========================================================= */

.mi-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
    margin-top: 45px;
}

.mi-case {
    overflow: hidden;
    border-radius: var(--mi-radius);
    border: 1px solid var(--mi-border);
    background: #fff;
}

.mi-case__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--mi-bg-soft);
}

.mi-case__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.mi-case:hover .mi-case__image img {
    transform: scale(1.035);
}

.mi-case__content {
    padding: 26px;
}

.mi-case__tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--mi-gold-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mi-case h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.mi-case p {
    margin: 0;
    color: var(--mi-text-soft);
    line-height: 1.65;
}

/* =========================================================
   PROCESO
   ========================================================= */

.mi-process {
    counter-reset: mi-process;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mi-process__item {
    counter-increment: mi-process;
    position: relative;
    padding: 28px;
    border-top: 2px solid var(--mi-gold-light);
}

.mi-process__item::before {
    content: "0" counter(mi-process);
    display: block;
    margin-bottom: 15px;
    color: var(--mi-gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
}

.mi-process__item h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.mi-process__item p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.mi-cta {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: var(--mi-radius-lg);
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(198,171,129,.16),
            transparent 30%
        ),
        var(--mi-black);
    color: #fff;
}

.mi-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -140px;
    border: 1px solid rgba(198,171,129,.18);
    border-radius: 50%;
}

.mi-cta h2 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px,4vw,52px);
    line-height: 1.08;
}

.mi-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================================
   FAQ
   ========================================================= */

.mi-faq {
    max-width: 920px;
    margin: 45px auto 0;
}

.mi-faq details {
    border-bottom: 1px solid var(--mi-border);
}

.mi-faq summary {
    position: relative;
    cursor: pointer;
    padding: 24px 45px 24px 0;
    list-style: none;
    color: var(--mi-black);
    font-size: 18px;
    font-weight: 800;
}

.mi-faq summary::-webkit-details-marker {
    display: none;
}

.mi-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 22px;
    color: var(--mi-gold-dark);
    font-size: 25px;
}

.mi-faq details[open] summary::after {
    content: "–";
}

.mi-faq__answer {
    padding: 0 0 24px;
    color: var(--mi-text-soft);
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

    .mi-hero__grid,
    .mi-grid-2 {
        grid-template-columns: 1fr;
    }

    .mi-hero {
        min-height: auto;
    }

    .mi-visual {
        max-width: 720px;
    }

    .mi-grid-4,
    .mi-process {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .mi-grid-3,
    .mi-cases {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 767px) {

    .mi-container {
        width: min(calc(100% - 28px), var(--mi-container));
    }

    .mi-section {
        padding: 70px 0;
    }

    .mi-hero {
        padding: 80px 0 70px;
    }

    .mi-hero__grid {
        gap: 50px;
    }

    .mi-hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .mi-hero__intro {
        font-size: 17px;
    }

    .mi-grid-3,
    .mi-grid-4,
    .mi-cases,
    .mi-process {
        grid-template-columns: 1fr;
    }

    .mi-card {
        padding: 25px;
    }

    .mi-cta {
        padding: 42px 28px;
    }

    .mi-visual__badge--top {
        top: -14px;
        right: 10px;
    }

    .mi-visual__badge--bottom {
        bottom: -18px;
        left: 10px;
    }

    .mi-actions {
        flex-direction: column;
    }

    .mi-btn {
        width: 100%;
    }
}
/* =========================================================
   MANDALA IMPRESIONES
   COMPONENTES VISUALES V2
   ========================================================= */

/* ---------- ENCABEZADOS DE SECCIÓN ---------- */

.mi-section-head {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.mi-section-head .mi-eyebrow {
    justify-content: center;
}

.mi-section-head .mi-eyebrow::before {
    display: none;
}

.mi-section-head .mi-title,
.mi-section-head .mi-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- HERO FIX ---------- */

.mi-visual__badge {
    min-width: 220px;
    align-items: flex-start;
    padding: 15px 18px;
}

.mi-visual__badge > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mi-visual__badge strong,
.mi-visual__badge span {
    position: static;
    display: block;
    line-height: 1.25;
}

.mi-visual__badge strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.mi-visual__badge span {
    color: var(--mi-gold-light);
    font-size: 11.5px;
}

/* ---------- MEDIA SPLIT ---------- */

.mi-media-split {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 60px;
    align-items: center;
}

.mi-media-split--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.mi-media-split__image {
    position: relative;
}

.mi-media-split__image::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(198,171,129,.17);
    filter: blur(8px);
    right: -35px;
    bottom: -35px;
}

.mi-media-split__image img {
    width: 100%;
    display: block;
    border-radius: 28px;
    box-shadow: var(--mi-shadow);
}

.mi-media-split__content .mi-text {
    max-width: 680px;
}

/* ---------- BENEFICIOS / FEATURES ---------- */

.mi-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
    margin-top: 40px;
}

.mi-benefit {
    position: relative;
    padding: 26px 22px;
    border: 1px solid var(--mi-border);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.mi-benefit::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--mi-gold-light),
        var(--mi-gold-dark)
    );
}

.mi-benefit__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: rgba(198,171,129,.13);
    color: var(--mi-gold-dark);
}

.mi-benefit__icon svg {
    width: 24px;
    height: 24px;
}

.mi-benefit h3 {
    margin: 0 0 8px;
    color: var(--mi-black);
    font-size: 18px;
}

.mi-benefit p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ---------- DARK BAND ---------- */

.mi-dark-band {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(198,171,129,.12),
            transparent 26%
        ),
        #0b0b0b;
    color: #fff;
}

.mi-dark-band::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(198,171,129,.08);
    border-radius: 50%;
    right: -190px;
    top: -230px;
}

.mi-dark-band__grid {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 70px;
    align-items: center;
}

.mi-dark-band h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px,4.5vw,54px);
    line-height: 1.05;
}

.mi-dark-band h2 span {
    color: var(--mi-gold-light);
}

.mi-dark-band p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
}

/* ---------- DARK ICON GRID ---------- */

.mi-dark-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.mi-dark-icon {
    padding: 23px;
    border: 1px solid rgba(198,171,129,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(5px);
}

.mi-dark-icon__symbol {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 13px;
    background: rgba(198,171,129,.12);
    color: var(--mi-gold-light);
}

.mi-dark-icon__symbol svg {
    width: 23px;
    height: 23px;
}

.mi-dark-icon h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 17px;
}

.mi-dark-icon p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- TARJETAS SERVICIOS V2 ---------- */

.mi-services-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}

.mi-service-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    border: 1px solid var(--mi-border);
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.mi-service-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(198,171,129,.11);
    transition: transform .35s ease;
}

.mi-service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--mi-shadow);
    border-color: rgba(152,122,78,.35);
}

.mi-service-card:hover::after {
    transform: scale(1.35);
}

.mi-service-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        rgba(198,171,129,.23),
        rgba(152,122,78,.08)
    );
    color: var(--mi-gold-dark);
}

.mi-service-card__icon svg {
    width: 29px;
    height: 29px;
}

.mi-service-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.2;
}

.mi-service-card p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- PROJECTS V2 ---------- */

.mi-projects {
    display: grid;
    gap: 32px;
    margin-top: 50px;
}

.mi-project {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr);
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--mi-border);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.mi-project:nth-child(even) {
    grid-template-columns: minmax(330px,.85fr) minmax(0,1.15fr);
}

.mi-project:nth-child(even) .mi-project__image {
    order: 2;
}

.mi-project__image {
    min-height: 400px;
    overflow: hidden;
}

.mi-project__image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.mi-project:hover .mi-project__image img {
    transform: scale(1.035);
}

.mi-project__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
}

.mi-project__tag {
    margin-bottom: 12px;
    color: var(--mi-gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.mi-project h3 {
    margin: 0 0 17px;
    font-size: clamp(27px,3vw,38px);
    line-height: 1.1;
}

.mi-project p {
    margin: 0 0 20px;
    color: var(--mi-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.mi-project__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mi-project__chips span {
    padding: 7px 11px;
    border: 1px solid rgba(152,122,78,.25);
    border-radius: 999px;
    color: var(--mi-gold-dark);
    font-size: 12px;
    font-weight: 800;
}

/* ---------- STATS ---------- */

.mi-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1px;
    margin-top: 45px;
    overflow: hidden;
    border: 1px solid rgba(198,171,129,.16);
    border-radius: 22px;
    background: rgba(198,171,129,.16);
}

.mi-stat {
    padding: 30px 24px;
    background: rgba(255,255,255,.04);
    text-align: center;
}

.mi-stat strong {
    display: block;
    margin-bottom: 7px;
    color: var(--mi-gold-light);
    font-size: 30px;
    line-height: 1;
}

.mi-stat span {
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

/* ---------- PROCESO V2 ---------- */

.mi-process-v2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 30px;
    margin-top: 50px;
}

.mi-process-v2::before {
    content: "";
    position: absolute;
    top: 37px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(152,122,78,.5),
        transparent
    );
}

.mi-process-v2__item {
    position: relative;
    text-align: center;
}

.mi-process-v2__number {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(152,122,78,.28);
    border-radius: 50%;
    background: #fff;
    color: var(--mi-gold-dark);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.mi-process-v2__item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.mi-process-v2__item p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- FAQ V2 ---------- */

.mi-faq-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px 26px;
    margin-top: 50px;
}

.mi-faq-grid details {
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--mi-border);
    border-radius: 18px;
    background: #fff;
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.mi-faq-grid details[open] {
    border-color: rgba(152,122,78,.32);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.mi-faq-grid summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 21px 52px 21px 22px;
    color: var(--mi-black);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.mi-faq-grid summary::-webkit-details-marker {
    display: none;
}

.mi-faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 17px;
    color: var(--mi-gold-dark);
    font-size: 25px;
    font-weight: 400;
}

.mi-faq-grid details[open] summary::after {
    content: "–";
}

.mi-faq-grid__answer {
    padding: 0 22px 24px;
    color: var(--mi-text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.mi-faq-grid__answer p {
    margin: 0 0 14px;
}

.mi-faq-grid__answer p:last-child {
    margin-bottom: 0;
}

/* ---------- CTA LINK ---------- */

.mi-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--mi-gold-dark);
    font-weight: 800;
    text-decoration: none;
}

.mi-text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.mi-text-link:hover::after {
    transform: translateX(4px);
}

/* ---------- RESPONSIVE V2 ---------- */

@media (max-width: 1024px) {

    .mi-media-split,
    .mi-media-split--reverse,
    .mi-dark-band__grid,
    .mi-project,
    .mi-project:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .mi-project:nth-child(even) .mi-project__image {
        order: 0;
    }

    .mi-benefits,
    .mi-stats,
    .mi-process-v2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .mi-services-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .mi-process-v2::before {
        display: none;
    }
}

@media (max-width: 767px) {

    .mi-section-head {
        margin-bottom: 35px;
    }

    .mi-services-grid,
    .mi-benefits,
    .mi-dark-icons,
    .mi-stats,
    .mi-process-v2,
    .mi-faq-grid {
        grid-template-columns: 1fr;
    }

    .mi-project__content {
        padding: 30px 24px;
    }

    .mi-project__image,
    .mi-project__image img {
        min-height: 270px;
    }

    .mi-dark-band {
        padding: 65px 0;
    }

    .mi-media-split {
        gap: 35px;
    }

    .mi-visual__badge {
        min-width: 190px;
    }
}

/* =========================================================
   MANDALA IMPRESIONES
   BLOG / CASOS REALES - FESTIVAL GUITARRA
   ========================================================= */

.mi-festival {
    background: #fff;
}

/* ---------- HERO EDITORIAL ---------- */

.mi-article-hero {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 150px 0 90px;
    background: #080808;
    color: #fff;
}

.mi-article-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.mi-article-hero__bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.035);
    animation: miHeroSlowZoom 16s ease-out both;
}

.mi-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.76) 42%,
            rgba(0,0,0,.38) 72%,
            rgba(0,0,0,.46) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.78) 0%,
            transparent 55%
        );
}

.mi-article-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 620px;
    height: 620px;
    top: -290px;
    right: -180px;
    border: 1px solid rgba(198,171,129,.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(198,171,129,.025),
        0 0 0 160px rgba(198,171,129,.015);
}

.mi-article-hero__content {
    max-width: 900px;
}

.mi-article-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    font-weight: 850;
    letter-spacing: -.045em;
}

.mi-article-hero h1 span {
    color: var(--mi-gold-light);
}

.mi-article-hero__intro {
    max-width: 760px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.mi-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.mi-article-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(198,171,129,.3);
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.mi-article-hero__meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--mi-gold-light);
}

/* ---------- INTRO EDITORIAL ---------- */

.mi-editorial-intro {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.mi-editorial-intro p {
    margin: 0 0 20px;
    color: var(--mi-text-soft);
    font-size: 18px;
    line-height: 1.8;
}

.mi-editorial-intro p:first-of-type {
    color: var(--mi-text);
    font-size: clamp(20px, 2.3vw, 25px);
    line-height: 1.65;
}

/* ---------- VIDEO ---------- */

.mi-video-feature {
    position: relative;
    max-width: 1080px;
    margin: 50px auto 0;
}

.mi-video-feature::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8% -3% -8%;
    border-radius: 40px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(198,171,129,.22),
            transparent 45%
        ),
        rgba(152,122,78,.05);
    filter: blur(10px);
}

.mi-video-feature__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(198,171,129,.24);
    border-radius: 28px;
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.mi-video-feature iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- MOSAICO VISUAL ---------- */

.mi-event-mosaic {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.mi-event-mosaic__item {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 26px;
    background: #111;
}

.mi-event-mosaic__item--main {
    grid-row: span 2;
}

.mi-event-mosaic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.mi-event-mosaic__item:hover img {
    transform: scale(1.055);
}

.mi-event-mosaic__caption {
    position: absolute;
    inset: auto 0 0;
    padding: 45px 25px 22px;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
    color: #fff;
}

.mi-event-mosaic__caption strong {
    display: block;
    font-size: 17px;
}

.mi-event-mosaic__caption span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

/* ---------- PIEZAS PRODUCIDAS ---------- */

.mi-production-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
    margin-top: 48px;
}

.mi-production-card {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    border: 1px solid var(--mi-border);
    border-radius: 24px;
    background: #fff;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.mi-production-card:hover {
    transform: translateY(-8px);
    border-color: rgba(152,122,78,.35);
    box-shadow: 0 25px 55px rgba(0,0,0,.09);
}

.mi-production-card__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(152,122,78,.13);
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
}

.mi-production-card__content {
    position: relative;
    z-index: 2;
    padding: 34px 30px;
}

.mi-production-card h3 {
    max-width: 230px;
    margin: 0 0 13px;
    color: var(--mi-black);
    font-size: 21px;
    line-height: 1.2;
}

.mi-production-card p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- GRAN IMAGEN ---------- */

.mi-wide-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 30px;
    background: #111;
    box-shadow: var(--mi-shadow);
}

.mi-wide-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.mi-wide-image:hover img {
    transform: scale(1.025);
}

.mi-wide-image__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 100px 45px 38px;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.88)
        );
    color: #fff;
}

.mi-wide-image__overlay h3 {
    max-width: 700px;
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(26px,3vw,38px);
}

.mi-wide-image__overlay p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

/* ---------- GALERÍA ---------- */

.mi-editorial-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0,1fr));
    gap: 18px;
    margin-top: 48px;
}

.mi-editorial-gallery figure {
    position: relative;
    grid-column: span 6;
    margin: 0;
    overflow: hidden;
    min-height: 350px;
    border-radius: 25px;
    background: var(--mi-bg-soft);
}

.mi-editorial-gallery figure:nth-child(3n) {
    grid-column: span 12;
    min-height: 520px;
}

.mi-editorial-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform .65s ease,
        filter .65s ease;
}

.mi-editorial-gallery figure:hover img {
    transform: scale(1.04);
}

.mi-editorial-gallery figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 55px 22px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
    color: rgba(255,255,255,.84);
    font-size: 13px;
}

/* ---------- CITA / MENSAJE ---------- */

.mi-event-quote {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 55px 70px;
    border-top: 1px solid rgba(198,171,129,.3);
    border-bottom: 1px solid rgba(198,171,129,.3);
    text-align: center;
}

.mi-event-quote::before {
    content: "“";
    display: block;
    height: 48px;
    color: var(--mi-gold-light);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
}

.mi-event-quote p {
    margin: 0;
    color: #fff;
    font-size: clamp(23px,3vw,34px);
    line-height: 1.45;
    font-weight: 650;
}

/* ---------- MOVIMIENTO ---------- */

@keyframes miHeroSlowZoom {
    from {
        transform: scale(1.085);
    }
    to {
        transform: scale(1.035);
    }
}

@keyframes miRevealUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes miRevealScale {
    from {
        opacity: .4;
        transform: scale(.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@supports (animation-timeline: view()) {

    .mi-reveal {
        animation: miRevealUp linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 30%;
    }

    .mi-reveal-scale {
        animation: miRevealScale linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 35%;
    }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {

    .mi-production-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .mi-event-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {

    .mi-article-hero {
        min-height: 620px;
        padding: 125px 0 60px;
    }

    .mi-article-hero::before {
        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.95) 0%,
                rgba(0,0,0,.66) 65%,
                rgba(0,0,0,.46) 100%
            );
    }

    .mi-article-hero h1 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .mi-article-hero__intro {
        font-size: 16.5px;
    }

    .mi-event-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mi-event-mosaic__item,
    .mi-event-mosaic__item--main {
        grid-row: auto;
        min-height: 320px;
    }

    .mi-production-grid {
        grid-template-columns: 1fr;
    }

    .mi-wide-image,
    .mi-wide-image img {
        min-height: 420px;
    }

    .mi-wide-image__overlay {
        padding: 80px 24px 25px;
    }

    .mi-editorial-gallery {
        grid-template-columns: 1fr;
    }

    .mi-editorial-gallery figure,
    .mi-editorial-gallery figure:nth-child(3n) {
        grid-column: auto;
        min-height: 330px;
    }

    .mi-event-quote {
        padding: 45px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mi-article-hero__bg img,
    .mi-reveal,
    .mi-reveal-scale {
        animation: none !important;
        transform: none !important;
    }

    .mi-event-mosaic img,
    .mi-editorial-gallery img,
    .mi-wide-image img,
    .mi-production-card {
        transition: none !important;
    }
}

/* =========================================================
   MANDALA IMPRESIONES
   FIX MÓVIL - SECCIONES OSCURAS + ANIMACIONES
   ========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       DESACTIVAR SCROLL ANIMATIONS EN MÓVIL
       Evita fallos de composición en algunos navegadores
       móviles con animation-timeline: view()
       ----------------------------------------------------- */

    .mi-page .mi-reveal,
    .mi-page .mi-reveal-scale {
        animation: none !important;
        animation-timeline: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }


    /* -----------------------------------------------------
       DARK BAND
       ----------------------------------------------------- */

    .mi-dark-band {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;

        padding: 65px 0 !important;

        background-color: #0b0b0b !important;
        background-image:
            radial-gradient(
                circle at 90% 5%,
                rgba(198,171,129,.12),
                transparent 35%
            ) !important;

        color: #fff !important;
        overflow: hidden !important;
        isolation: isolate;
    }

    .mi-dark-band::before {
        z-index: 0 !important;
        width: 300px !important;
        height: 300px !important;
        top: -150px !important;
        right: -150px !important;
        pointer-events: none;
    }

    .mi-dark-band .mi-container {
        position: relative;
        z-index: 2;
    }

    .mi-dark-band__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 38px !important;
        align-items: stretch !important;
    }

    .mi-dark-band__grid > * {
        width: 100% !important;
        min-width: 0 !important;
        position: relative !important;
        inset: auto !important;
        transform: none !important;
    }

    .mi-dark-band .mi-eyebrow {
        display: inline-flex !important;
        margin-bottom: 16px !important;
        color: var(--mi-gold-light) !important;
    }

    .mi-dark-band h2 {
        display: block !important;
        width: 100% !important;
        max-width: none !important;

        margin: 0 0 22px !important;

        color: #fff !important;
        font-size: clamp(31px, 9vw, 42px) !important;
        line-height: 1.08 !important;
        letter-spacing: -.025em !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .mi-dark-band h2 span {
        display: inline !important;
        position: static !important;
        color: var(--mi-gold-light) !important;
        transform: none !important;
    }

    .mi-dark-band p {
        display: block !important;
        position: static !important;

        margin: 0 0 18px !important;

        color: rgba(255,255,255,.75) !important;
        font-size: 16px !important;
        line-height: 1.72 !important;

        transform: none !important;
    }

    .mi-dark-band p:last-child {
        margin-bottom: 0 !important;
    }

    .mi-dark-band a {
        color: var(--mi-gold-light) !important;
    }


    /* -----------------------------------------------------
       TARJETAS OSCURAS
       ----------------------------------------------------- */

    .mi-dark-icons {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;

        width: 100% !important;
        margin: 0 !important;
    }

    .mi-dark-icon {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;

        padding: 22px !important;

        border: 1px solid rgba(198,171,129,.20) !important;
        border-radius: 18px !important;

        background: rgba(255,255,255,.045) !important;

        opacity: 1 !important;
        transform: none !important;
    }

    .mi-dark-icon__symbol {
        position: static !important;
        width: 45px !important;
        height: 45px !important;
        margin: 0 0 14px !important;

        color: var(--mi-gold-light) !important;
        background: rgba(198,171,129,.12) !important;
    }

    .mi-dark-icon h3 {
        display: block !important;
        margin: 0 0 7px !important;
        color: #fff !important;
        font-size: 17px !important;
        line-height: 1.35 !important;
    }

    .mi-dark-icon p {
        margin: 0 !important;
        color: rgba(255,255,255,.65) !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }


    /* -----------------------------------------------------
       CTA FINAL NEGRO
       ----------------------------------------------------- */

    .mi-cta {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;

        padding: 42px 24px !important;

        border-radius: 24px !important;

        background-color: #090909 !important;
        background-image:
            radial-gradient(
                circle at 90% 10%,
                rgba(198,171,129,.16),
                transparent 38%
            ) !important;

        color: #fff !important;

        overflow: hidden !important;
        isolation: isolate;
    }

    .mi-cta::after {
        z-index: 0 !important;
        width: 190px !important;
        height: 190px !important;
        right: -90px !important;
        bottom: -100px !important;
        pointer-events: none;
    }

    .mi-cta > * {
        position: relative;
        z-index: 2;
    }

    .mi-cta .mi-eyebrow {
        color: var(--mi-gold-light) !important;
    }

    .mi-cta h2 {
        display: block !important;
        width: 100% !important;

        margin: 0 0 18px !important;

        color: #fff !important;
        font-size: clamp(30px, 9vw, 40px) !important;
        line-height: 1.1 !important;
        letter-spacing: -.025em !important;

        transform: none !important;
    }

    .mi-cta p {
        display: block !important;

        margin: 0 !important;

        color: rgba(255,255,255,.74) !important;
        font-size: 16px !important;
        line-height: 1.7 !important;

        transform: none !important;
    }

    .mi-cta .mi-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;

        width: 100% !important;
        margin-top: 27px !important;
    }

    .mi-cta .mi-btn {
        width: 100% !important;
        min-height: 52px !important;
        margin: 0 !important;
    }


    /* -----------------------------------------------------
       EVITAR DESBORDAMIENTOS GENERALES EN ARTÍCULO
       ----------------------------------------------------- */

    .mi-festival h1,
    .mi-festival h2,
    .mi-festival h3,
    .mi-festival p,
    .mi-festival span,
    .mi-festival a {
        max-width: 100%;
    }

    .mi-festival img,
    .mi-festival iframe {
        max-width: 100%;
    }

}

/* =========================================================
   MANDALA IMPRESIONES
   EVERGREEN - GUÍA MATERIAL GRÁFICO PARA EVENTOS
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.mi-event-guide__hero .mi-article-hero__bg img {
    object-position: center 47%;
}

.mi-event-guide__hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.95) 0%,
            rgba(0,0,0,.79) 42%,
            rgba(0,0,0,.36) 76%,
            rgba(0,0,0,.42) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.82) 0%,
            transparent 60%
        );
}


/* ---------------------------------------------------------
   RECORRIDO DEL ASISTENTE
   --------------------------------------------------------- */

.mi-event-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px;
    margin-top: 65px;
}

.mi-event-journey__line {
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(152,122,78,.45) 12%,
            rgba(152,122,78,.45) 88%,
            transparent
        );
}

.mi-event-journey__item {
    position: relative;
    z-index: 2;
    padding: 0 12px;
    text-align: center;
}

.mi-event-journey__number {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(152,122,78,.28);
    border-radius: 50%;
    background: #fff;
    color: var(--mi-gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.mi-event-journey__item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mi-black);
    font-size: 19px;
}

.mi-event-journey__item p {
    max-width: 230px;
    margin: 0 auto;
    color: var(--mi-text-soft);
    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   NUMERACIÓN DE CAPÍTULOS
   --------------------------------------------------------- */

.mi-event-guide__chapter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.mi-event-guide__chapter > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 36px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--mi-gold-light),
            var(--mi-gold-dark)
        );
    color: #111;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.mi-event-guide__chapter p {
    margin: 0;
    color: var(--mi-text-soft);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mi-event-guide__chapter--light p {
    color: rgba(255,255,255,.58);
}


/* ---------------------------------------------------------
   IMÁGENES EDITORIALES
   --------------------------------------------------------- */

.mi-event-guide__image {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #111;
    box-shadow: 0 24px 65px rgba(0,0,0,.12);
}

.mi-event-guide__image::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: inherit;
}

.mi-event-guide__image img {
    width: 100%;
    min-height: 470px;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .8s ease;
}

.mi-event-guide__image:hover img {
    transform: scale(1.035);
}

.mi-event-guide__image figcaption {
    position: absolute;
    z-index: 4;
    inset: auto 0 0;
    padding: 70px 28px 24px;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.88)
        );
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.55;
}

.mi-event-guide__image figcaption strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 15px;
}


/* ---------------------------------------------------------
   CONSEJO DESTACADO
   --------------------------------------------------------- */

.mi-event-guide__note {
    position: relative;
    max-width: 920px;
    margin: 65px auto 0;
    padding: 34px 38px 34px 105px;
    border: 1px solid rgba(152,122,78,.22);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(198,171,129,.12),
            rgba(152,122,78,.035)
        );
}

.mi-event-guide__note::before {
    content: "!";
    position: absolute;
    left: 34px;
    top: 32px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--mi-gold-light),
            var(--mi-gold-dark)
        );
    color: #111;
    font-size: 20px;
    font-weight: 900;
}

.mi-event-guide__note-label {
    display: block;
    margin-bottom: 7px;
    color: var(--mi-gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.mi-event-guide__note p {
    margin: 0;
    color: var(--mi-text);
    font-size: 16px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FEATURE PROJECT
   --------------------------------------------------------- */

.mi-event-guide__feature-project h2 {
    margin: 0 0 18px;
    color: var(--mi-black);
    font-size: clamp(30px,3.6vw,44px);
    line-height: 1.08;
    letter-spacing: -.03em;
}


/* ---------------------------------------------------------
   ACREDITACIONES + PROGRAMAS
   --------------------------------------------------------- */

.mi-event-guide__editorial-pair {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 28px;
}

.mi-event-guide__editorial-card {
    overflow: hidden;
    border: 1px solid var(--mi-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.055);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.mi-event-guide__editorial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(0,0,0,.10);
}

.mi-event-guide__editorial-card figure {
    position: relative;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.mi-event-guide__editorial-card figure::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.16)
        );
    pointer-events: none;
}

.mi-event-guide__editorial-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .65s ease;
}

.mi-event-guide__editorial-card:hover img {
    transform: scale(1.035);
}

.mi-event-guide__editorial-card-content {
    padding: 32px;
}

.mi-event-guide__editorial-card-content > span {
    display: block;
    margin-bottom: 9px;
    color: var(--mi-gold-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mi-event-guide__editorial-card h3 {
    margin: 0 0 13px;
    color: var(--mi-black);
    font-size: 25px;
    line-height: 1.15;
}

.mi-event-guide__editorial-card p {
    margin: 0 0 22px;
    color: var(--mi-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.mi-event-guide__editorial-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mi-event-guide__editorial-card li {
    padding: 7px 11px;
    border: 1px solid rgba(152,122,78,.22);
    border-radius: 999px;
    color: var(--mi-gold-dark);
    font-size: 12px;
    font-weight: 800;
}


/* ---------------------------------------------------------
   STAND SECTION
   --------------------------------------------------------- */

.mi-event-guide__stand {
    display: grid;
    grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
    gap: 65px;
    align-items: center;
}

.mi-event-guide__stand-copy h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px,4.5vw,55px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.mi-event-guide__stand-copy > p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.75;
}

.mi-event-guide__stand-copy blockquote {
    position: relative;
    margin: 30px 0 0;
    padding: 22px 0 0 25px;
    border-top: 1px solid rgba(198,171,129,.25);
    border-left: 2px solid var(--mi-gold-light);
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.7;
}

.mi-event-guide__stand-image {
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 540px;
    border: 1px solid rgba(198,171,129,.18);
    border-radius: 30px;
    background: #111;
    box-shadow: 0 35px 90px rgba(0,0,0,.38);
}

.mi-event-guide__stand-image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.mi-event-guide__stand-image:hover img {
    transform: scale(1.03);
}

.mi-event-guide__stand-image figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 75px 25px 23px;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.86)
        );
    color: rgba(255,255,255,.72);
    font-size: 13px;
}


/* ---------------------------------------------------------
   PATROCINADORES
   --------------------------------------------------------- */

.mi-event-guide__sponsors {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,.8fr);
    gap: 50px;
    align-items: center;
}

.mi-event-guide__sponsor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.mi-event-guide__sponsor-list span {
    padding: 10px 15px;
    border: 1px solid rgba(152,122,78,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    color: var(--mi-gold-dark);
    font-size: 13px;
    font-weight: 800;
}


/* ---------------------------------------------------------
   CHECKLIST POR EVENTO
   --------------------------------------------------------- */

.mi-event-guide__check-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.mi-event-guide__check-card {
    position: relative;
    min-height: 410px;
    padding: 30px 26px;
    overflow: hidden;
    border: 1px solid var(--mi-border);
    border-radius: 24px;
    background: #fff;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.mi-event-guide__check-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(198,171,129,.10);
}

.mi-event-guide__check-card:hover {
    transform: translateY(-7px);
    border-color: rgba(152,122,78,.32);
    box-shadow: var(--mi-shadow);
}

.mi-event-guide__check-card > span {
    display: block;
    margin-bottom: 25px;
    color: rgba(152,122,78,.28);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.mi-event-guide__check-card h3 {
    margin: 0 0 18px;
    color: var(--mi-black);
    font-size: 22px;
}

.mi-event-guide__check-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mi-event-guide__check-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: var(--mi-text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.mi-event-guide__check-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mi-gold-dark);
}


/* ---------------------------------------------------------
   ERRORES
   --------------------------------------------------------- */

.mi-event-guide__mistakes .mi-section-head .mi-title span {
    color: var(--mi-gold-light);
}

.mi-event-guide__mistake-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 50px;
}

.mi-event-guide__mistake {
    position: relative;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(198,171,129,.16);
    border-radius: 21px;
    background: rgba(255,255,255,.035);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.mi-event-guide__mistake:hover {
    transform: translateY(-5px);
    border-color: rgba(198,171,129,.33);
    background: rgba(255,255,255,.055);
}

.mi-event-guide__mistake strong {
    display: block;
    margin-bottom: 24px;
    color: var(--mi-gold-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
}

.mi-event-guide__mistake h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
}

.mi-event-guide__mistake p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CASO REAL
   --------------------------------------------------------- */

.mi-event-guide__case-study {
    overflow: hidden;
}

.mi-event-guide__case-head {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(320px,.7fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 50px;
}

.mi-event-guide__case-head .mi-title,
.mi-event-guide__case-head .mi-lead {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   EFECTOS DE ENTRADA ADICIONALES
   --------------------------------------------------------- */

@keyframes miEventGuideSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes miEventGuideSlideRight {
    from {
        opacity: 0;
        transform: translateX(45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@supports (animation-timeline: view()) {

    .mi-event-guide .mi-media-split__content {
        animation: miEventGuideSlideLeft linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 28%;
    }

    .mi-event-guide .mi-media-split__image,
    .mi-event-guide .mi-event-guide__image {
        animation: miEventGuideSlideRight linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 30%;
    }

}


/* ---------------------------------------------------------
   RESPONSIVE TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .mi-event-journey {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 40px 25px;
    }

    .mi-event-journey__line {
        display: none;
    }

    .mi-event-guide__editorial-pair {
        grid-template-columns: 1fr;
    }

    .mi-event-guide__stand {
        grid-template-columns: 1fr;
    }

    .mi-event-guide__sponsors {
        grid-template-columns: 1fr;
    }

    .mi-event-guide__sponsor-list {
        justify-content: flex-start;
    }

    .mi-event-guide__check-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .mi-event-guide__mistake-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .mi-event-guide__case-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/* ---------------------------------------------------------
   RESPONSIVE MÓVIL
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .mi-event-guide__hero .mi-article-hero__bg img {
        object-position: 56% center;
    }

    .mi-event-journey {
        grid-template-columns: 1fr;
        gap: 27px;
        margin-top: 45px;
    }

    .mi-event-journey__item {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 17px;
        align-items: start;
        padding: 0;
        text-align: left;
    }

    .mi-event-journey__number {
        width: 54px;
        height: 54px;
        margin: 0;
    }

    .mi-event-journey__item p {
        max-width: none;
        margin: 0;
    }

    .mi-event-guide__chapter {
        margin-bottom: 30px;
    }

    .mi-event-guide__image img {
        min-height: 350px;
        aspect-ratio: auto;
    }

    .mi-event-guide__image figcaption {
        padding: 65px 20px 20px;
    }

    .mi-event-guide__note {
        padding: 85px 24px 25px;
    }

    .mi-event-guide__note::before {
        left: 24px;
        top: 24px;
    }

    .mi-event-guide__editorial-card-content {
        padding: 26px 22px;
    }

    .mi-event-guide__stand {
        gap: 35px;
    }

    .mi-event-guide__stand-image,
    .mi-event-guide__stand-image img {
        min-height: 370px;
    }

    .mi-event-guide__sponsors {
        padding: 28px 22px;
    }

    .mi-event-guide__check-grid,
    .mi-event-guide__mistake-grid {
        grid-template-columns: 1fr;
    }

    .mi-event-guide__check-card {
        min-height: 0;
    }

    .mi-event-guide__mistake {
        min-height: 0;
    }

}


/* ---------------------------------------------------------
   REDUCIR MOVIMIENTO
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .mi-event-guide *,
    .mi-event-guide *::before,
    .mi-event-guide *::after {
        scroll-behavior: auto !important;
    }

    .mi-event-guide .mi-media-split__content,
    .mi-event-guide .mi-media-split__image,
    .mi-event-guide .mi-event-guide__image {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .mi-event-guide__image img,
    .mi-event-guide__editorial-card img,
    .mi-event-guide__stand-image img,
    .mi-event-guide__editorial-card,
    .mi-event-guide__check-card,
    .mi-event-guide__mistake {
        transition: none !important;
    }

}


/* ---------------------------------------------------------
   FIX ANIMACIONES MÓVIL
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .mi-event-guide .mi-media-split__content,
    .mi-event-guide .mi-media-split__image,
    .mi-event-guide .mi-event-guide__image,
    .mi-event-guide .mi-event-guide__editorial-card,
    .mi-event-guide .mi-event-guide__mistake,
    .mi-event-guide .mi-event-guide__check-card {
        animation: none !important;
        animation-timeline: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

}
/* =========================================================
   IMÁGENES EDITORIALES SIN RECORTE
   MUPIS + SAN TELMO
   ========================================================= */

.mi-event-guide__image--contain {
    background:
        linear-gradient(
            135deg,
            #111,
            #1a1a1a
        );
}

.mi-event-guide__image--contain img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
}

.mi-event-guide__image--contain figcaption {
    position: relative;
    padding: 16px 22px 18px;
    background: #111;
}

/* =========================================================
   EVENT GUIDE · CHECKLIST
   Separación entre título, descripción y lista
========================================================= */

.mi-event-guide__check-description {
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

/* =========================================================
   MANDALA IMPRESIONES
   BLOG · CAJA GLOBAL DE AUTORÍA
   ========================================================= */

.mi-author {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 70px auto 0;
    border: 1px solid rgba(198,171,129,.20);
    border-radius: var(--mi-radius-lg);
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(198,171,129,.14),
            transparent 32%
        ),
        var(--mi-black);
    color: var(--mi-white);
    box-shadow: 0 25px 70px rgba(0,0,0,.14);
}

.mi-author::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -125px;
    bottom: -145px;
    border: 1px solid rgba(198,171,129,.12);
    border-radius: 50%;
    pointer-events: none;
}

.mi-author__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 240px minmax(0,1fr);
    align-items: stretch;
}

/* ---------- FOTO ---------- */

.mi-author__photo {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: var(--mi-black-soft);
}

.mi-author__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(9,9,9,.35) 100%
        );
    pointer-events: none;
}

.mi-author__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.mi-author:hover .mi-author__photo img {
    transform: scale(1.035);
}

/* ---------- CONTENIDO ---------- */

.mi-author__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 48px;
}

.mi-author__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--mi-gold-light);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mi-author__eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--mi-gold-light),
            var(--mi-gold-dark)
        );
}

.mi-author__name {
    margin: 0 0 5px;
    color: var(--mi-white);
    font-size: clamp(27px,3vw,36px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.025em;
}

.mi-author__role {
    margin: 0 0 20px;
    color: var(--mi-gold-light);
    font-size: 14px;
    font-weight: 700;
}

.mi-author__bio {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 15.5px;
    line-height: 1.72;
}

.mi-author__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 23px;
    color: var(--mi-gold-light) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition:
        gap .25s ease,
        color .25s ease;
}

.mi-author__link:hover {
    gap: 13px;
    color: var(--mi-white) !important;
}

.mi-author__arrow {
    font-size: 18px;
    line-height: 1;
}

/* ---------- TABLET ---------- */

@media (max-width: 1024px) {

    .mi-author {
        max-width: 900px;
    }

    .mi-author__grid {
        grid-template-columns: 210px minmax(0,1fr);
    }

    .mi-author__content {
        padding: 38px;
    }
}

/* ---------- MÓVIL ---------- */

@media (max-width: 767px) {

    .mi-author {
        margin-top: 50px;
        border-radius: 24px;
    }

    .mi-author__grid {
        grid-template-columns: 1fr;
    }

    .mi-author__photo {
        min-height: 0;
        height: 300px;
    }

    .mi-author__photo::after {
        background:
            linear-gradient(
                0deg,
                var(--mi-black) 0%,
                transparent 35%
            );
    }

    .mi-author__photo img {
        object-position: center 20%;
    }

    .mi-author__content {
        padding: 28px 24px 32px;
    }

    .mi-author__name {
        font-size: 28px;
    }

    .mi-author__bio {
        font-size: 15px;
    }
}

/* ---------- ACCESIBILIDAD ---------- */

@media (prefers-reduced-motion: reduce) {

    .mi-author__photo img,
    .mi-author__link {
        transition: none !important;
    }

    .mi-author:hover .mi-author__photo img {
        transform: none !important;
    }
}