/* ================================
   TIPOGRAFÍAS PREMIUM
================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&display=swap');




html, body {
    width: 100%;
    overflow-x: hidden;
}
*, *::before, *::after {
    box-sizing: border-box;
}
@font-face {
    font-family: 'Hermanz';

    src: url('../fonts/hermanz-titling-regular/Hermanz Titling Regular.otf') format('opentype');

    font-weight: 400;
    font-style: normal;
}
/* ================================
   FONDO GLOBAL PREMIUM
================================ */
body {
    margin: 0;
    padding: 0;
    background: #000 url("../img/3.png") center/cover fixed;
    color: #d9d9d9;
    font-family: 'Cormorant Garamond', serif;
}

/* ================================
   NAVBAR PREMIUM
================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 56px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7) 5%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.0) 100%
    );
    backdrop-filter: blur(6px);
}
.nav-item a,
.nav-brand a {
    color: inherit;
    text-decoration: none;
}

.nav-item a:hover {
    color: #ffffff;
}

.nav-brand {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #f2f2f2;
}

/* Menú */
.nav-menu {
    list-style: none;
    margin-right: 5%;
    padding: 0;
    gap: 34px;

    /* IMPORTANTE — NO mostrar menú en móviles */
    display: flex;
}


.nav-item {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 500;
    font-family: "Inter", sans-serif;

    text-transform: uppercase;
    letter-spacing: 0.15em;

    cursor: pointer;
    transition: all 0.35s ease;
}

.nav-item:hover {
    color: #ffffff;
    opacity: 1;
}

/* Responsive menu */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: #e5e5e5;
    cursor: pointer;
}

@media (max-width: 768px) {

    .navbar {
        padding: 16px 20px;
    }

    .nav-brand {
        font-size: 18px;
        letter-spacing: 2px;
    }

    /* Botón hamburguesa */
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;

        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        padding: 24px 0;
        gap: 18px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        font-size: 18px;
    }
}

/* ================================
   HERO SECTION
================================ */
/* ================================
   HERO CON VIDA (FONDO + EFECTOS)
================================ */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;

    background: url("../img/3.png") center/cover no-repeat;
    
    animation: heroMove 40s ease-in-out infinite;
    filter: saturate(1.2) contrast(1.05);
}

.gold-text:hover {
    color: gold;
}
h2:hover {
    color: gold;
}
h3:hover {
    color: gold;
}

/* puedes seguir si quieres más precisión */
/* 🔥 movimiento lento del fondo */
@keyframes heroMove {
    0%   { background-position: center top; }
    50%  { background-position: center center; }
    100% { background-position: center top; }
}


/* ================================
   CAPA OSCURA + TRANSICIÓN
================================ */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.6) 75%,
        rgba(0,0,0,0.9) 100%
    );

    z-index: 1;
}

/* ================================
   NIEBLA / ENERGÍA (clave visual)
================================ */

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;

    background:
        radial-gradient(circle at 30% 30%, rgba(120,255,180,0.08), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(80,200,140,0.06), transparent 65%);

    filter: blur(60px);
    animation: fogMove 25s ease-in-out infinite;

    z-index: 1;
}

/* movimiento orgánico */
@keyframes fogMove {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-60px, 30px); }
    100% { transform: translate(0, 0); }
}


/* ================================
   CONTENIDO HERO
================================ */

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    margin-top: 150px;

    animation: fadeUp 1.6s ease forwards;
}

/* entrada elegante */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   TEXTO (RESPIRACIÓN SUTIL)
================================ */


@keyframes textGlow {
    0%   { opacity: 0.85; }
    50%  { opacity: 1; }
    100% { opacity: 0.85; }
}

.hero-subtitle {
    font-family: 'Cormorant Infant', serif;
    font-feature-settings: "salt" 1;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;

    color: #f1f1f1;

    letter-spacing: 0.02em;

    margin-top: 40px;
}

.hero-text {
    margin-top: 30px;

    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;

    color: rgba(255,255,255,0.78);
}


/* ================================
   BOTÓN CON VIDA
================================ */

.hero-button {
    display: inline-block;

    margin-top: 50px;
    padding: 14px 38px;

    border: 1px solid #E0E0E0;

    color: #f2f2f2;
    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}
/* hover elegante */
.hero-button:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.06);
    color:gold;
}

/* respiración sutil */
.hero-button {
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%   { box-shadow: 0 0 0 rgba(255,255,255,0); }
    50%  { box-shadow: 0 0 15px rgba(255,255,255,0.15); }
    100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
}
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 20px 80px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.6;
        max-width: 520px;
        margin: 20px auto 0;
    }

    .hero-button {
        margin-top: 32px;
        padding: 12px 28px;
        font-size: 14px;
    }
}
@media (max-width: 420px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-text {
        font-size: 15px;
    }
}

/* ================================
   SECCIONES
================================ */
.info, .beneficios {
    padding: 80px 40px;
    text-align: center;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);

    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-title {
    font-size: 32px;
    color: #e6e6e6;
    font-family: "Inter", sans-serif;
    margin-bottom: 50px;
}

/* ================================
   GRID DE BOXES
       background: rgba(25,25,25,0.65);
    border: 1px solid rgba(255,255,255,0.08);
================================ */
.se1 {
    max-width: 1100px;
    margin: auto;
}

.box { 
    background: transparent;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
    color: #e1e1e1;

    position: relative;
    overflow: hidden; /* 🔥 CAMBIO CLAVE */
}

.box:hover {
    transform: translateY(-5px);
    border-color: #fff;
}

/* ================================
   IMÁGENES PREMIUM MIND LUMEN
================================ */

/* Fade-in suave al cargar */
.box img {
    opacity: 0;
    transform: scale(1);
    animation: fadeNeutral 1.4s ease forwards;

    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.08),
        0 0 50px rgba(255, 255, 255, 0.05);

    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05),
        transparent 70%
    );

    transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease; /* 🔥 mejor transición */
}

/* Neblina neutral */
.box::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.06),
        transparent 80%
    );
    filter: blur(22px);
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
}

/* Respiración */
@keyframes breathingNeutral {
    0% { box-shadow: 0 0 30px rgba(255,255,255,0.10); }
    50% { box-shadow: 0 0 45px rgba(255,255,255,0.18); }
    100% { box-shadow: 0 0 30px rgba(255,255,255,0.10); }
}

/* 🔥 ZOOM REAL AQUÍ */
.box:hover img {
    transform:scale(1.2); /* 🔥 ZOOM REAL */
    filter: brightness(1.1) contrast(1.05);

    border-color: rgba(255,255,255,0.30);

    box-shadow:
        0 0 35px rgba(255,255,255,0.18),
        0 0 65px rgba(255,255,255,0.10);

   
}

/* Neblina más visible */
.box:hover::before {
    opacity: 1;
    filter: blur(30px);
}


/* Fade-in */
@keyframes fadeNeutral {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* GRID RESPONSIVE */
@media(min-width: 768px) {
    .se1 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}
  


/* GRID RESPONSIVE */
@media(min-width: 768px) {
    .se1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 1100px;
        margin: auto;
    }
    
    @media (min-width: 600px) {
        .se1 {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 900px) {
        .se1 {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

/* ================================
   NUEVAS SECCIONES PREMIUM
================================ */

.section-text {
    padding: 90px 40px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-text p {
    font-size: 22px;
    line-height: 1.6;
    color: #dcdcdc;
    max-width: 850px;
    margin: 20px auto;
    font-family: 'Cormorant Garamond', serif;
}



/* Sección más amplia y elegante */
.section-wide {
    padding: 100px 60px;
    text-align: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-wide p {
    font-size: 23px;
    color: #e1e1e1;
    max-width: 900px;
    margin: 25px auto;
    line-height: 1.7;
}

/* Precio premium */
.price {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 10px;
    font-family: "Cinzel", serif;
    color: #ffffff;
}
.section-chapter {
    font-family: "Cinzel", serif;
    font-size: 20px;
    letter-spacing: 4px;
    color: #ffffffcc;
    margin-bottom: 35px;
}
.symbol {
    font-size: 26px;
    opacity: 0.75;
    margin-bottom: 25px;
}
/* MANIFIESTO */
.manifesto .highlight {
    font-size: 26px;
    font-family: "Cinzel", serif;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Texto más jerárquico */
.section-text strong {
    color: #ffffff;
}

/* Espaciado más lujoso */
section {
    position: relative;
}

/* Botón final más protagonista */
.section-wide .hero-button {
    margin-top: 50px;
    font-size: 15px;
}
/* ================================
   CÁMARA DE DECISIÓN
================================ */
.decision {
    padding: 80px 20px;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.05),
        rgba(0,0,0,0.85) 70%
    );
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* GRID */
.decision-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 40px;
}

/* ================================
   CONTENIDO
================================ */
.decision-content p {
    font-size: 18px;
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #dcdcdc;
}
.decision-content p:hover {
    color: gold;
}
.decision-items span {
    display: block;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #dcdcdc;
}
.decision-items span:hover {
    color: gold;
}

/* ================================
   ACCIÓN / PRECIO
================================ */
.decision-action {
    display: flex;
    justify-content: center;
}

.price-box {
    width: 100%;
    max-width: 420px;
    padding: 36px 26px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.6);
}

.price-label {
    font-family: "Cinzel", serif;
    letter-spacing: 3px;
    font-size: 12px;
    opacity: 0.8;
    color: #ffffff;
}

.price-text {
    margin: 22px 0 34px;
    font-size: 16px;
    line-height: 1.6;
    color: #d0d0d0;
}

/* ================================
   TABLET
================================ */
@media (min-width: 600px) {
    .decision {
        padding: 100px 40px;
    }

    .decision-content p {
        font-size: 20px;
    }

    .decision-items span {
        font-size: 16px;
    }

    .price-box {
        padding: 42px 34px;
    }

    .price-label {
        font-size: 13px;
    }

    .price-text {
        font-size: 17px;
    }
}

/* ================================
   DESKTOP
================================ */
@media (min-width: 900px) {
    .decision {
        padding: 120px 60px;
    }

    .decision-grid {
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .decision-content p {
        font-size: 24px;
        max-width: 500px;
    }

    .decision-items span {
        font-size: 18px;
    }

    .price-box {
        padding: 50px 40px;
    }

    .price-label {
        font-size: 13px;
    }

    .price-text {
        font-size: 18px;
    }
}

/* ================================
   UMBRAL LUMEN
================================ */
.threshold {
    padding: 140px 40px;
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.06),
        rgba(0,0,0,0.85) 70%
    );
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.threshold-inner {
    max-width: 800px;
    margin: auto;
}

/* Marca editorial */
.threshold-mark {
    font-family: "Inter", sans-serif;
    letter-spacing: 6px;
    font-size: 12px;
    opacity: 0.6;
}

/* Frase central */
.threshold-quote {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    color: #ffffff;
    margin: 35px 0 45px;
    line-height: 1.35;
}

/* Línea arquitectónica */
.threshold-line {
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 0 auto 45px;
}

/* Texto */
.threshold-text {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: #dcdcdc;
    margin: 18px auto;
}

.threshold-text.emphasis {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: #ffffff;
}

/* Símbolo */
.threshold-symbol {
    margin-top: 45px;
    font-size: 26px;
    opacity: 0.8;
}
/* ================================
   THRESHOLD RESPONSIVE – TABLET
================================ */
@media (max-width: 900px) {

    .threshold {
        padding: 110px 24px;
    }

    .threshold-inner {
        max-width: 680px;
    }

    .threshold-quote {
        font-size: 26px;
        margin: 30px 0 40px;
    }

    .threshold-text {
        font-size: 18px;
    }

    .threshold-text.emphasis {
        font-size: 20px;
    }
}

/* ================================
   CÁMARA DE LAS ESTANCIAS
================================ */
.chambers {
    padding: 130px 40px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.85)
    );
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chambers-inner {
    max-width: 760px;
    margin: auto;
}

/* Marca */
.chambers-mark {
    font-family: "Cinzel", serif;
    font-size: 12px;
    letter-spacing: 6px;
    opacity: 0.65;
}

/* Título */
.chambers-title {
    font-family: "Cinzel", serif;
    font-size: 30px;
    color: #ffffff;
    margin: 35px 0 40px;
    line-height: 1.4;
}

/* Divider */
.chambers-divider {
    width: 70px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 0 auto 40px;
}

/* Texto */
.chambers-text {
    font-size: 22px;
    line-height: 1.65;
    color: #dcdcdc;
    margin: 20px auto;
}

.chambers-text.emphasis {
    font-size: 24px;
    color: #ffffff;
}

/* Símbolo final */
.chambers-symbol {
    margin-top: 45px;
    font-size: 26px;
    opacity: 0.85;
}








@media (max-width: 900px) {
    .lumen-experience {
        padding: 80px 6%;
    }

    .lumen-inner {
        flex-direction: column;
        gap: 40px; /* 🔥 antes 80px */
        padding: 0; /* 🔥 evita suma extra */
    }

    .lumen-video,
    .lumen-content {
        width: 100%;
        max-width: 100%;
    }

    .lumen-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .lumen-experience {
        padding: 60px 5%;
    }

    .lumen-video .video-frame {
        max-width: 100%;
    }

    .lumen-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .lumen-text {
        font-size: 0.9rem;
    }

    .lumen-mark {
        font-size: 0.65rem;
    }
}


@media (max-width: 900px) {

    .lumen-inner {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .lumen-video,
    .lumen-content {
        width: 100%;
        max-width: 100%;
    }

    .lumen-video .video-frame {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {

    .lumen-experience {
        padding-left: 0;
        padding-right: 0;
    }

    .lumen-inner {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0 16px; /* padding interno controlado */
        box-sizing: border-box;
    }

    .lumen-video,
    .lumen-content {
        width: 100%;
        max-width: 100%;
    }

    .lumen-video .video-frame {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .lumen-video video {
        object-fit: contain;
        background: #000;
    }
}

