@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Regular.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Regular.woff') format('otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Bold.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Bold.woff') format('otf');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

:root {
    --font-principal: "Codec Pro";
    --font-secundario: "";
    --font-texto: "";

    --principal: #052868;
    --secundario: #ffffff;
    --terciario: #000000;
    /*Usar muy poco*/
    --cuarto: #0e5ff4;
    --claro: #f0f0e7;
    --oscuro: #0f161c;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 90px;
}

/* PARA CORREGIR DESBORDE EN CELULAR */

html,
body {
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    background: var(--oscuro);
}

body {
    position: relative;
    min-height: 100%;
    color: var(--claro);
    background: var(--oscuro);
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(14, 95, 244, 0.12),
            transparent 40%),
        radial-gradient(circle at 85% 25%,
            rgba(14, 95, 244, 0.10),
            transparent 45%),
        radial-gradient(circle at 20% 75%,
            rgba(14, 95, 244, 0.08),
            transparent 40%);
}

.inicio {
    position: relative;
    background: transparent !important;
    overflow: visible !important;
}

/* .base-hero, */
.hero-divider,
.evento-hero,
.galeria-eventos,
.evento-inversion,
.footer {
    position: relative;
    background: transparent !important;
    /* isolation: isolate; */
}

.evento-hero,
.galeria-eventos,
.opiniones-slider,
.evento-inversion {
    max-width: 100%;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 40px;
    z-index: 99999;

    background: rgba(5, 40, 104, 0.6);
    backdrop-filter: blur(12px);
    /* -webkit-backdrop-filter: blur(12px); */

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu .img-logo {
    width: 120px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 14px;
    padding: 10px 14px;
    color: #f0f0e7;
    display: block;
    transition: 0.3s;
}

.menu .navbar ul li a:hover {
    color: #0e5ff4;
}

#menu {
    display: none;
}

.menu-icon {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}


/* =========================
   HERO SERVICIOS - ESTILO NEUROM
========================= */

.base-hero.hero-folds {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    min-height: 100vh;
    padding: 150px 40px 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 18%, rgba(14, 94, 244, 0.384) 0%, rgba(14, 140, 244, 0.267) 32%, transparent 58%),
        radial-gradient(circle at 50% 58%, rgba(14, 94, 244, 0.527) 0%, transparent 46%),
        var(--oscuro);
}

/* Glow general detrás del texto */
.hero-folds-light {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(circle at 24% 50%, rgba(35, 122, 255, 0.32) 0%, rgba(35, 122, 255, 0.12) 18%, transparent 42%),
        radial-gradient(circle at 76% 52%, rgba(71, 173, 255, 0.22) 0%, rgba(71, 173, 255, 0.08) 18%, transparent 42%),
        radial-gradient(circle at 50% 40%, rgba(95, 170, 255, 0.14) 0%, transparent 34%);
}

/* Oscurece bordes y funde con el resto */
.hero-folds-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background:
        radial-gradient(ellipse at center, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.46) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 24%, rgba(0, 0, 0, 0.42) 100%);
}

/* Contenido */
.base-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
}

.base-hero-text {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.base-hero-text h1 {
    max-width: 820px;
    margin: 0 auto 24px;

    font-size: clamp(2.45rem, 4.35vw, 4.45rem);
    line-height: 1.14;
    letter-spacing: -0.04em;

    color: #f4f7f0;
    text-shadow: 0 0 28px rgba(120, 185, 255, 0.12);
}

.base-hero-text p {
    max-width: 600px;
    margin: 0 auto 32px;

    font-size: 1rem;
    line-height: 1.65;
    color: rgba(244, 247, 240, 0.72);
}

.base-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.base-btn.primary {
    background: rgba(31, 120, 255, 0.34);
    border-color: rgba(96, 176, 255, 0.55);
    box-shadow: 0 0 26px rgba(31, 120, 255, 0.22);
}

.base-btn.secondary {
    background: rgba(255, 255, 255, 0.075);
}

.base-btn.primary {
    background: rgba(31, 123, 255, 0.32);
    border-color: rgba(96, 176, 255, 0.55);
    box-shadow: 0 0 28px rgba(31, 123, 255, 0.24);
}

.base-btn.secondary {
    background: rgba(255, 255, 255, 0.07);
}

.base-btn.primary {
    background: rgba(14, 95, 244, 0.22);
    border-color: rgba(14, 95, 244, 0.45);
}

.base-btn.secondary {
    background: rgba(255, 255, 255, 0.07);
}

.base-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--claro);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    transition: 0.3s ease;
}

.base-btn:hover {
    transform: translateY(-2px);
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.4);
    box-shadow: 0 0 24px rgba(14, 95, 244, 0.18);
}

/* HERO DIVIDER */

.hero-divider {
    position: relative;
    height: 320px;
    margin-top: -180px;
    margin-bottom: -80px;
    background: transparent !important;
    overflow: visible !important;
    isolation: isolate;
    z-index: 5;
    pointer-events: none;
}

.hero-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at left center,
            rgba(4, 54, 146, 0.95) 0%,
            rgba(8, 57, 148, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        radial-gradient(ellipse at right center,
            rgba(0, 89, 255, 0.95) 0%,
            rgba(14, 95, 244, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(15, 22, 28, 0.35) 45%,
            transparent 100%);
    filter: blur(36px);
    transform: scale(1.15);
    pointer-events: none;
}

.hero-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 36px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(14, 95, 244, 0.25) 18%,
            rgba(145, 205, 255, 0.55) 50%,
            rgba(14, 95, 244, 0.25) 82%,
            transparent 100%);
    filter: blur(26px);
    opacity: 0.75;
    pointer-events: none;
}

.evento-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.galeria-eventos,
.evento-inversion {
    position: relative;
    padding: 80px 40px 80px 40px;
    background: transparent !important;
    overflow: visible;
}

.evento-hero {
    position: relative;
    padding: 120px 40px 180px;
    overflow: visible;
    background: transparent !important;
}

.evento-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.evento-text h1,
.inversion-card h2 {
    margin: 0 0 28px;
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.05;
}

.evento-text p,
.inversion-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 18px;
}

.evento-frase {
    color: #fff !important;
    font-weight: 700;
}

.evento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 13px 28px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
}

.evento-btn:hover {
    background: rgba(14, 95, 244, 0.22);
    border-color: rgba(14, 95, 244, 0.48);
    box-shadow: 0 0 24px rgba(14, 95, 244, 0.32);
    transform: translateY(-2px);
}

.evento-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evento-img::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    background:
        radial-gradient(circle, rgba(14, 95, 244, 0.36), rgba(14, 95, 244, 0.12) 45%, transparent 72%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
    filter: blur(100px);
    z-index: 1;
}

.evento-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    object-fit: contain;
    animation: eventoFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

@keyframes eventoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}


/* GALERÍA */
.galeria-rubro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 70px;
}

.galeria-rubro-header h2 {
    margin: 0;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
}

.rubro-btn,
.foto-btn,
.lightbox-arrow,
.lightbox-close {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    /* backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
}

.rubro-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.rubro-btn:hover,
.foto-btn:hover,
.lightbox-arrow:hover,
.lightbox-close:hover {
    background: rgba(14, 95, 244, 0.22);
    border-color: rgba(14, 95, 244, 0.5);
}

.galeria-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.foto-stack {
    position: relative;

    width: min(760px, 100%);
    height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    position: absolute;

    width: 350px;
    height: 450px;

    object-fit: cover;

    border: 6px solid rgba(255, 255, 255, 0.92);
    border-radius: 18px;

    cursor: pointer;
    user-select: none;

    opacity: 0;

    transform:
        translateX(0) scale(0.75);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.38);

    transition:
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms ease,
        box-shadow 420ms ease;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-img.active {
    z-index: 4;

    opacity: 1;

    transform:
        translateX(0) scale(1);

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.52);
}

.gallery-img.prev {
    z-index: 2;

    opacity: 0.52;

    transform:
        translateX(-155px) scale(0.84);
}

.gallery-img.next {
    z-index: 2;

    opacity: 0.52;

    transform:
        translateX(155px) scale(0.84);
}

.gallery-img.hidden-left {
    z-index: 1;

    opacity: 0;
    pointer-events: none;

    transform:
        translateX(-230px) scale(0.68);
}

.gallery-img.hidden-right {
    z-index: 1;

    opacity: 0;
    pointer-events: none;

    transform:
        translateX(230px) scale(0.68);
}

.foto-stack.sin-transicion .gallery-img {
    transition: none;
}

.foto-stack {
    transition:
        opacity 280ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.foto-stack.salida-izquierda {
    opacity: 0;
    transform: translateX(-45px) scale(0.97);
}

.foto-stack.salida-derecha {
    opacity: 0;
    transform: translateX(45px) scale(0.97);
}

.foto-stack.entrada-derecha {
    opacity: 0;
    transform: translateX(45px) scale(0.97);
}

.foto-stack.entrada-izquierda {
    opacity: 0;
    transform: translateX(-45px) scale(0.97);
}

#rubroNombre {
    display: inline-block;

    transition:
        opacity 250ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

#rubroNombre.rubro-saliendo {
    opacity: 0;
    transform: translateY(-8px);
}

#rubroNombre.rubro-entrando {
    opacity: 0;
    transform: translateY(8px);
}

.foto-btn {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    font-size: 1.4rem;
    line-height: 1;

    cursor: pointer;
    outline: none;

    transform: translateY(-50%);

    transition:
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;

    -webkit-tap-highlight-color: transparent;
}

/* Posición lateral */

.prev-foto {
    left: clamp(20px, 8vw, 180px);
}

.next-foto {
    right: clamp(20px, 8vw, 180px);
}

/* Hover */

.foto-btn:hover {
    background: rgba(14, 95, 244, 0.22);
    border-color: rgba(70, 140, 255, 0.65);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.22),
        0 0 24px rgba(14, 95, 244, 0.2);

    transform:
        translateY(-50%) scale(1.06);
}

/* Click */

.foto-btn:active,
.foto-btn.presionado {
    background: rgba(14, 95, 244, 0.32);
    border-color: rgba(100, 165, 255, 0.75);

    transform:
        translateY(-50%) scale(0.92);
}

/* Navegación con teclado */

.foto-btn:focus-visible {
    outline: 3px solid rgba(75, 145, 255, 0.42);
    outline-offset: 4px;
}

body.modal-abierto {
    overflow: hidden;
}

/* INVERSIÓN */
.inversion-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    /* backdrop-filter: blur(14px); */
    text-align: center;
    border: 1px solid var(--cuarto);
}

.precio-box {
    margin: 34px 0 0;
    padding: 32px;
    border-radius: 24px;
    background: rgba(14, 95, 244, 0.13);
    border: 1px solid rgba(14, 95, 244, 0.28);
}

.precio-box h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 2rem;
}

.precio-box h3 span {
    font-weight: 500;
}

.precio-box p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.82);
}


/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(3, 9, 18, 0.86);
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 86vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* =========================
   MODAL DE GALERÍA
========================= */

.galeria-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    background: rgba(3, 8, 16, 0);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    transition:
        opacity 300ms ease,
        visibility 0s linear 300ms,
        background-color 300ms ease;
}

.galeria-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    background: rgba(3, 8, 16, 0.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        opacity 300ms ease,
        visibility 0s linear 0s,
        background-color 300ms ease;
}

.galeria-modal img {
    max-width: 86vw;
    max-height: 84vh;
    object-fit: contain;

    opacity: 0;
    transform: translateY(18px) scale(0.96);

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);

    transition:
        opacity 220ms ease,
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 220ms ease;
}

.galeria-modal.active img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.galeria-modal img.cambiando {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.975);
}

.modal-close,
.modal-arrow {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;

    display: grid;
    place-items: center;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-arrow:hover {
    background: rgba(14, 95, 244, 0.25);
    border-color: rgba(14, 95, 244, 0.55);
}

.modal-close {
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.modal-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.modal-prev {
    left: 34px;
}

.modal-next {
    right: 34px;
}

/* FOOTER */
.footer {
    position: relative;
    padding: 90px 40px 30px;
    overflow: hidden;
    background: transparent;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 40, 104, 0) 0%,
            rgba(5, 40, 104, 0.45) 30%,
            rgba(5, 40, 104, 0.75) 60%,
            rgba(5, 40, 104, 0.96) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 320px;
    background: radial-gradient(ellipse,
            rgba(14, 95, 244, 0.24) 0%,
            rgba(14, 95, 244, 0.08) 45%,
            rgba(14, 95, 244, 0) 72%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top h3 {
    margin: 0 0 16px;
    color: var(--claro);
    font-size: 2rem;
    line-height: 1.1;
}

.footer-top p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--claro);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.25);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}


body {
    background:
        radial-gradient(circle at 72% 10%, rgba(14, 95, 244, 0.26), transparent 34%),
        radial-gradient(circle at 50% 35%, rgba(14, 95, 244, 0.22), transparent 44%),
        radial-gradient(circle at 50% 72%, rgba(14, 95, 244, 0.18), transparent 42%),
        linear-gradient(180deg, #071017 0%, #0a1930 42%, #071017 100%) !important;
}

.evento-hero,
.galeria-eventos,
.evento-inversion {
    background: transparent !important;
    overflow: visible !important;
}

.evento-hero::before,
.evento-hero::after,
.galeria-eventos::before,
.galeria-eventos::after,
.evento-inversion::before,
.evento-inversion::after {
    display: none !important;
}

/* =========================================
   PROCESO CREATIVO Y ESTRATÉGICO
========================================= */

.proceso-creativo-section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.proceso-creativo-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ENCABEZADO */

.proceso-creativo-header {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.proceso-creativo-header .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.proceso-creativo-header h2 {
    max-width: 720px;
    margin: 0 auto 20px;

    color: var(--claro);

    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.proceso-creativo-header p {
    max-width: 680px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.05rem;
    line-height: 1.7;
}

/* TARJETAS */

.proceso-creativo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.proceso-creativo-card {
    position: relative;

    min-height: 315px;
    padding: 32px 28px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.022));

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.proceso-creativo-card:hover {
    transform: translateY(-6px);

    border-color: rgba(14, 95, 244, 0.48);

    background:
        linear-gradient(145deg,
            rgba(14, 95, 244, 0.1),
            rgba(255, 255, 255, 0.025));
}

/* Iluminación suave */

.proceso-creativo-card::before {
    content: "";

    position: absolute;
    top: -90px;
    right: -90px;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.18),
            transparent 68%);

    pointer-events: none;
}

.proceso-creativo-numero {
    position: absolute;
    top: 22px;
    right: 24px;

    color: rgba(255, 255, 255, 0.075);

    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
}

.proceso-creativo-icono {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 28px;

    color: #fff;
    background: rgba(14, 95, 244, 0.55);

    border: 1px solid rgba(112, 165, 255, 0.38);
    border-radius: 15px;

    font-size: 1.05rem;

    box-shadow: 0 0 24px rgba(14, 95, 244, 0.2);
}

.proceso-creativo-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--claro);

    font-size: 1.28rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.proceso-creativo-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.94rem;
    line-height: 1.65;
}

/* DETALLES FINALES */

.proceso-creativo-detalles {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    gap: 20px;

    margin-top: 24px;
}

.proceso-detalle {
    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 105px;
    padding: 24px 28px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.proceso-detalle-icono {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #fff;
    background: rgba(14, 95, 244, 0.6);

    border-radius: 50%;

    font-size: 0.9rem;

    box-shadow: 0 0 20px rgba(14, 95, 244, 0.22);
}

.proceso-detalle-label {
    display: block;
    margin-bottom: 6px;

    color: var(--cuarto);

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.proceso-detalle p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.96rem;
    line-height: 1.5;
}


/* RESPONSIVE */
@media (max-width: 1280px) {

    .proceso-creativo-section {
        padding: 110px 40px;
    }

    .proceso-creativo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proceso-creativo-card {
        min-height: 270px;
    }
}

@media (max-width: 1024px) {

    .base-hero {
        padding: 140px 32px 80px;
    }

    .base-hero.hero-neurom {
        padding: 140px 32px 100px;
    }

    .base-hero-text h1 {
        font-size: clamp(2.45rem, 7vw, 4.2rem);
    }

    .hero-neurom-bottom {
        width: 86vw;
    }

    .planes-section,
    .planes-tabla-section,
    .forma-trabajo-section,
    .cta-lugares-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .marketing-hero-container,
    .forma-trabajo-container {
        grid-template-columns: 1fr;
    }

    .base-hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .evento-split {
        gap: 48px;
    }

    .evento-text h1,
    .inversion-card h2 {
        font-size: 2.6rem;
    }

    .evento-img img {
        max-width: 460px;
    }

    .proceso-creativo-section {
        padding: 95px 32px;
    }

    .proceso-creativo-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .menu label {
        display: block;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: rgba(5, 40, 104, 0.95);
        backdrop-filter: blur(12px);

        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
        text-align: center;
    }

    #menu:checked~.navbar {
        display: block;
    }

    .base-hero {
        min-height: auto;
        padding: 125px 24px 60px;
    }

    .planes-section,
    .planes-tabla-section,
    .forma-trabajo-section,
    .cta-lugares-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .base-hero-text h1 {
        line-height: 1;
    }

    .base-hero-text p {
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .base-hero.hero-folds {
        min-height: 88vh;
        padding: 130px 24px 85px;
    }

    .base-hero-text h1 {
        font-size: 2.35rem;
        line-height: 1.16;
    }

    .base-hero-text p {
        font-size: 0.95rem;
    }

    .base-hero-text h1 {
        font-size: 2.45rem;
        line-height: 1.14;
        letter-spacing: -0.035em;
    }

    .base-hero-text p {
        font-size: 0.96rem;
    }


    .evento-hero,
    .galeria-eventos,
    .evento-inversion {
        padding: 85px 24px;
    }

    .evento-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .evento-img {
        order: -1;
    }

    .evento-text h1,
    .inversion-card h2 {
        font-size: 2.1rem;
    }

    .evento-text p {
        font-size: 0.98rem;
    }

    .evento-img img {
        max-width: 340px;
    }

    .galeria-rubro-header h2 {
        font-size: 1.55rem;
    }

    .foto-stack {
        height: 280px;
    }

    .gallery-img {
        width: 350px;
        height: 450px;
    }

    .gallery-img.prev {
        transform: translateX(-80px) scale(0.78);
    }

    .gallery-img.next {
        transform: translateX(80px) scale(0.78);
    }

    .prev-foto {
        left: 0;
    }

    .next-foto {
        right: 0;
    }

    .inversion-card {
        padding: 34px 24px;
    }

    .precio-box {
        padding: 24px 18px;
    }

    .galeria-modal {
        padding: 22px;
    }

    .galeria-modal img {
        max-width: 92vw;
        max-height: 78vh;
        border-radius: 18px;
    }

    .modal-arrow {
        width: 46px;
        height: 46px;
    }

    .modal-prev {
        left: 14px;
    }

    .modal-next {
        right: 14px;
    }

    .modal-close {
        top: 18px;
        right: 18px;
    }


    .galeria-slider {
        min-height: 430px;
    }

    .foto-stack {
        width: 100%;
        height: 410px;
    }

    .gallery-img {
        width: min(72vw, 290px);
        height: min(98vw, 390px);

        border-width: 4px;
        border-radius: 15px;

        transition:
            transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 360ms ease;
    }

    .gallery-img.prev {
        transform:
            translateX(-70px) scale(0.82);
    }

    .gallery-img.next {
        transform:
            translateX(70px) scale(0.82);
    }

    .gallery-img.hidden-left {
        transform:
            translateX(-130px) scale(0.7);
    }

    .gallery-img.hidden-right {
        transform:
            translateX(130px) scale(0.7);
    }

    .foto-stack.salida-izquierda {
        transform: translateX(-25px) scale(0.98);
    }

    .foto-stack.salida-derecha {
        transform: translateX(25px) scale(0.98);
    }

    .foto-stack.entrada-derecha {
        transform: translateX(25px) scale(0.98);
    }

    .foto-stack.entrada-izquierda {
        transform: translateX(-25px) scale(0.98);
    }

    .foto-btn {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .prev-foto {
        left: 12px;
    }

    .next-foto {
        right: 12px;
    }

    .proceso-creativo-section {
        padding: 82px 24px;
    }

    .proceso-creativo-header h2 {
        font-size: 2.2rem;
    }

    .proceso-creativo-grid {
        grid-template-columns: 1fr;
    }

    .proceso-creativo-card {
        min-height: auto;
    }

    .proceso-creativo-detalles {
        grid-template-columns: 1fr;
    }



    .footer {
        padding: 70px 24px 26px;
    }

    .footer-top {
        padding-bottom: 34px;
        margin-bottom: 22px;
    }

    .footer-top h3 {
        font-size: 1.7rem;
    }

    .footer-top p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }


}

@media (max-width: 600px) {}

@media (max-width: 480px) {
    .base-hero {
        padding: 112px 20px 52px;
    }

    .base-hero.hero-neurom {
        min-height: 82vh;
        padding: 118px 20px 76px;
    }

    .base-hero-text h1 {
        font-size: 2.05rem;
        line-height: 1.16;
    }

    .base-hero-text p {
        font-size: 0.93rem;
    }

    .base-btn {
        width: 100%;
        max-width: 280px;
    }

    .evento-hero,
    .galeria-eventos,
    .evento-inversion {
        padding: 70px 20px;
    }

    .evento-text h1,
    .inversion-card h2 {
        font-size: 1.8rem;
    }

    .galeria-rubro-header {
        gap: 10px;
    }

    .rubro-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-img {
        width: 240px;
        height: 350px;
        border-width: 5px;
    }

    .foto-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .prev-foto {
        left: 8px;
    }

    .next-foto {
        right: 8px;
    }

    .precio-box h3 {
        font-size: 1.6rem;
    }

    .evento-btn {
        width: 100%;
    }

    .galeria-rubro-header {
        gap: 14px;
    }

    .galeria-rubro-header h2 {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .rubro-btn {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .gallery-img {
        width: min(70vw, 265px);
        height: min(96vw, 365px);
    }

    .gallery-img.prev {
        transform:
            translate3d(-48px, 0, -40px) scale(0.80);
    }

    .gallery-img.next {
        transform:
            translate3d(48px, 0, -40px) scale(0.80);
    }

    .proceso-creativo-section {
        padding: 64px 16px;
    }

    .proceso-creativo-header h2 {
        font-size: 1.85rem;
    }

    .proceso-creativo-header p {
        font-size: 0.95rem;
    }

    .proceso-creativo-card {
        padding: 25px 20px;
    }

    .proceso-creativo-card h3 {
        font-size: 1.18rem;
    }

    .proceso-creativo-card p,
    .proceso-detalle p {
        font-size: 0.9rem;
    }




    .footer {
        padding: 60px 20px 22px;
    }

    .footer-top h3 {
        font-size: 1.5rem;
    }

    .footer-top p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-btn {
        width: 100%;
        max-width: 260px;
    }

}

@media (max-width: 360px) {

    .proceso-creativo-section {
        padding: 58px 14px;
    }

    .proceso-detalle {
        align-items: flex-start;
        padding: 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gallery-img,
    .foto-stack,
    #rubroNombre,
    .rubro-btn,
    .foto-btn,
    .modal-arrow,
    .modal-close,
    .galeria-modal,
    .galeria-modal img {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}