/* Variables */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1a1a;
    --accent-color: #FF4D4D;
    --text-color: #ffffff;
    --background-dark: #0a0a0a;
    --background-light: #1a1a1a;
    --transition: all 0.3s ease;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow: hidden;
    /* Evitar scroll hasta que la intro termine */
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    transition: opacity 1.5s ease-in-out;
    /* Transición más suave y lenta */
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    /* Deshabilitar interacciones */
}

.splash-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
    /* Oscurecer ligeramente el video */
    transition: opacity 1.5s ease-in-out;
    /* Transición suave para el desvanecimiento */
}

.splash-screen video.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Transición más larga para el video */
}

.logo-animation-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centrarlo inicialmente */
    width: 75%;
    /* Tamaño inicial grande del logo */
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Asegurar que los logos estén sobre el video y otros elementos */
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transición más suave con easing */
}

.logo-animation-container img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transición más suave para los logos */
}

.logo-final {
    opacity: 0;
    transform: scale(0.8);
    /* Comenzar más pequeño */
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    /* Transición más larga para coincidir con el video */
}

.logo-final.fade-in {
    opacity: 1;
    transform: scale(1);
    /* Escalar a tamaño normal */
}

.logo-animation-container.move-to-header {
    top: 4rem;
    /* Posición final en el header (aproximado) */
    left: 50%;
    /* Centro horizontal en el header */
    transform: translate(-50%, -50%) scale(0.1);
    /* Escalar para tamaño del header (40px de alto) */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Transición más rápida de 0.8 segundos */
}

/* Main Content Wrapper */
.main-content-wrapper {
    background-image: url('/assets/textura-diamante.png');
    background-repeat: no-repeat;
    background-size: 320px auto;
    background-position: top left;
    position: relative;
    z-index: 1;
}

.main-content-wrapper::before {
    content: none;
}

.main-content-wrapper > * {
    position: relative;
    z-index: 3;
}

.main-content-wrapper.active {
    opacity: 1;
    display: block;
    /* Mostrar cuando esté activo */
    background: black;
}

/* Header y Navegación */

/* Header y Navegación */
.header {
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-bottom: 10px; /* espacio para el pseudo-borde */
}
.header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, 
      yellow 0%, 
      yellow 47%, 
      transparent 48%, 
      transparent 52%, 
      yellow 53%, 
      yellow 100%
    );
  }

.nav-container.nav-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr 1fr;
    align-items: center;
    position: relative;
    width: 100%;
    column-gap: 0;
}

.super-nav-link {
    color: #aaa;
    text-decoration: none;
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    margin-top: 0;
    margin: 0 2.5rem; /* Espaciado horizontal */
}

.super-nav-link:hover {
    color: #ffe600;
}

.logo.header-logo-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
    flex-shrink: 0;
    margin: 0;
    grid-column: 3;
}

.logo.header-logo-animated img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0 2vw;
    gap: 6vw;
}

.nav-menu-left {
    grid-column: 1;
    justify-content: flex-end;
}

.nav-menu-right {
    grid-column: 5;
    justify-content: flex-start;
}

.logo.header-logo-animated {
    opacity: 0;
    /* Oculto inicialmente, será el destino del logo animado */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transición más suave */
}

.logo.header-logo-animated.visible {
    opacity: 1;
}

.logo.header-logo-animated img {
    height: 100px;
    transition: var(--transition);
}

.logo.header-logo-animated img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-registro {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.btn-registro:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
    text-align: left;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 108%;
    object-fit: cover;
    /*filter: brightness(0.4);*/
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    padding: 0 5%;
    top: 25px;
}

.prob-image {
    max-width: 600px;
    height: auto;
    margin-bottom: 1rem;
    animation: subtle3Dmove 4s ease-in-out infinite;
}

.vision-estrella {
    max-width: 600px;
    height: auto;
    margin-bottom: 1rem;
    animation: subtle3Dmove2 4s ease-in-out infinite;
}

.sub-text {
    font-family: 'SUSE Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0.01em;
    font-weight: 100;
    font-size: 2.8rem;
    margin-top: -4rem;
    margin-bottom: 1rem;
    color: #9d9d9d;
}

.control-text {
    font-family: 'SUSE Sans';
    font-size: 3rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: -1rem;
}

.control-text .highlight {
    color: var(--primary-color);
}

.coin-container {
    position: absolute;
    right: 0%;
    bottom: 50%;
    min-width: 40%;
    min-height: 80%;
    display: flex;
    align-items: flex-end;
}

.coin {
    position: absolute;
    width: 5vw;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    opacity: 0;
    transition: filter 0.3s ease-out;
    cursor: pointer;
    transform-origin: center;
    /* Asegurar que la rotación sea desde el centro */
}

.coin.falling {
    animation: coinFall 1s ease-out forwards;
}

.coin:hover {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

/* Coines colocadas visualmente como la imagen */
.coin.coin-1 {
    left: 6%;
    top: 33%;
    width: 9VW;
    animation-delay: 0.5s;
}

.coin.coin-2 {
    left: 47%;
    top: 58%;
    WIDTH: 5.5vw;
    animation-delay: 0.7s;
}

.coin.coin-3 {
    right: 11%;
    top: 4%;
    WIDTH: 10vw;
    animation-delay: 0.9s;
}

@keyframes coinFall {
    0% {
        transform: translateY(-150px) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes subtle3Dmove {

    0%,
    100% {
        transform: perspective(500px) rotateY(0deg) translateY(0);
    }

    50% {
        transform: perspective(500px) rotateY(5deg) translateY(-5px);
    }
}

@keyframes subtle3Dmove2 {

    0%,
    100% {
        transform: perspective(600px) rotateY(0deg) translateY(10px);
    }

    50% {
        transform: perspective(600px) rotatex(5deg) translatex(10px);
    }
}

/* Botones CTA */
.cta-below-hero {
    background-color: var(--background-light);
    padding: 2rem 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-left: 10%;
    padding-right: 10%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
    animation: flash 2s infinite linear;
    animation-delay: 1s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* NUEVO DISEÑO: Secciones completas de Misión y Visión */
.mision-section-nuevo {
    width: 100vw;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.mision-section-nuevo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.mision-section-nuevo {
    background-image: url('/assets/mision%20fondo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #000000;
}

.vision-section-nuevo {
    background-image: url('/assets/fondo%20vision.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #000000;
}

.mision-content,
.vision-content {
    width: 100vw;
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-height: 420px;
    padding: 0 2vw;
    margin-bottom: 8%;
}

.mision-label-vertical {
    position: absolute;
    top: 35%;
    left: -6%;
    transform: rotate(-67deg);
    font-size: 3.2rem;
    color: #ffe600;
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 4;
    writing-mode: unset;
    text-orientation: unset;
    margin: 0;
    user-select: none;
    text-shadow: none;
    background: none;
    border: none;
}

.vision-label-vertical {
    position: absolute;
    top: 20%;
    left: 115%;
    transform: rotate(68deg);
    font-size: 3.8rem;
    color: #ffe600;
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 4;
    writing-mode: unset;
    text-orientation: unset;
    margin: 0;
    user-select: none;
    text-shadow: none;
    background: none;
    border: none;
}

.vision-label-vertical {
    order: 3;
    margin-left: -9vw;
    margin-top: 0vw;
}

.mision-img-stack {
    position: relative;
    width: 580px;
    height: 600px;
    margin-left: -12%;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vision-img-stack {
    position: relative;
    width: 580px;
    height: 600px;
    margin-left: -12%;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mision-escudo {
    position: absolute;
    width: 97%;
    left: 70%;
    top: 14%;
    z-index: 2;
}

.mision-cohete {
    position: absolute;
    width: 87%;
    left: 22%;
    top: 0%;
    z-index: 3;
}

.vision-escudo {
    position: absolute;
    width: 100%;
    left: 31%;
    top: 0;
    z-index: 2;
}

.vision-estrella {
    position: absolute;
    width: 100%;
    left: 31%;
    top: -14%;
    z-index: 3;
}

.mision-texto-nuevo{
    color: #fff;
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-size: 1.7rem;
    width: 500px;
    opacity: 0.95;
    line-height: 1.4;
    z-index: 3;
    text-shadow: 0 2px 8px #000;
    margin-left: 7vw;
    margin-top: 35%;
}


.vision-texto-nuevo {
    color: #fff;
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-size: 1.6rem;
    width: 500px;
    opacity: 0.95;
    line-height: 1.3;
    z-index: 3;
    text-shadow: 0 2px 8px #000;
    margin-left: 7vw;
    margin-top: 35%;
}


.mision-linea-1 {
    margin-left: -18%;
    margin-top: 60%;
    display: block;
}

.mision-linea-2 {
    margin-left: -25%;
    margin-top: -9%;
    display: block;
}

.mision-linea-3 {
    margin-left: -31%;
    margin-top: -9%;
    display: block;
}

.mision-linea-4 {
    margin-left: -39%;
    margin-top: -9%;
    display: block;
}

.mision-linea-5 {
    margin-left: -46%;
    margin-top: -9%;
    display: block;
}

.mision-linea-6 {
    margin-left: -54%;
    margin-top: -9%;
    display: block;
}

.mision-linea-7 {
    margin-left: -61%;
    margin-top: -9%;
    display: block;
}

.vision-linea-1 {
    margin-left: -3%;
    margin-top: 6%;
}

.vision-linea-2 {
    margin-left: 16%;
    margin-top: 0%;
    display: block;
}

.vision-linea-3 {
    margin-left: 4%;
    margin-top: -9%;
    display: block;
}

.vision-linea-4 {
    margin-left: -1%;
    margin-top: -9%;
    display: block;
}

.vision-linea-5 {
    margin-left: 12%;
    margin-top: -8%;
    display: block;
}

.vision-linea-6 {
    margin-left: 32%;
    margin-top: -9%;
    display: flex;
}

.vision-content {
    flex-direction: row-reverse;
}

.vision-texto-nuevo {
    margin-right: -13%;
    margin-top: 18%;
    width: 100%;
}


@media (max-width: 1100px) {

    .mision-img-stack,
    .vision-img-stack {
        width: 240px;
        height: 240px;
    }

    .mision-label-vertical,
    .vision-label-vertical {
        font-size: 1.3rem;
        margin-left: 1vw;
        margin-right: 1vw;
    }

    .mision-texto-nuevo,
    .vision-texto-nuevo {
        font-size: 1rem;
        max-width: 220px;
    }
}

@media (max-width: 900px) {

    .mision-content,
    .vision-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }

    .mision-label-vertical,
    .vision-label-vertical {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        margin: 0 0 1rem 0;
        text-align: center;
    }

    .mision-img-stack,
    .vision-img-stack {
        margin-bottom: 1rem;
    }

    .mision-texto-nuevo,
    .vision-texto-nuevo {
        text-align: center;
        margin: 0 auto;
        max-width: 90vw;
    }
}

/* Funcionalidades */
.features {
    padding: 6rem 2rem;
    background: var(--background-dark);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

/* Registro */
.register {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    text-align: center;
}

.register-content {
    max-width: 600px;
    margin: 0 auto;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-links a.kick-icon {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50%;
    background: #00ff00;
    color: #000;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-links a.kick-icon:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.footer-values ul {
    list-style: none;
    margin-top: 1rem;
}

.footer-values li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-overlay {
        padding: 0 5%;
        align-items: center;
        text-align: center;
    }

    .prob-image {
        max-width: 80%;
    }

    .vision-estrella {
        max-width: 80%;
    }

    .sub-text {
        font-size: 1.3rem;
        opacity: 0.8;
    }

    .control-text {
        font-size: 2rem;
    }

    .coin-container {
        right: auto;
        bottom: auto;
        position: relative;
        margin-top: 2rem;
        justify-content: center;
    }

    .coin {
        width: 20vw;
        margin-left: -5vw;
    }

    .register-form {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}

/* Animaciones */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image img {
    /* animation: float 6s ease-in-out infinite; */
}

@keyframes logoTransform {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

@keyframes logoMoveToHeader {
    to {
        transform: translate(-50%, -50%) scale(0.5);
        /* Ajustar según el tamaño final en el header */
        top: 20px;
        /* Posición final en el header */
        left: 50%;
        /* Posición final en el header (centro) */
    }
}

@keyframes flash {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE Sans';
    src: url('/fonts/SUSE-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.discover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    width: 340px;
    height: 70px;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(233, 232, 229, 0.15);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    text-align: center;
    clip-path: polygon(0 0, 89% 0, 100% 34%, 100% 100%, 0 100%);
    position: relative;
    overflow: visible;
}

.discover-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    /* Ajusta según el corte */
    height: 36px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    /* Solo dibuja la línea superior y derecha */
    transform: translateY(-1px) translateX(1px) rotate(45deg);
    pointer-events: none;
    background: transparent;
    z-index: 2;
}

/* Elimina el ::before anterior si existe para evitar conflictos */
.discover-btn::before {
    display: none !important;
}

/*.discover-btn:hover,
.discover-btn:focus {
    background: #e7e050;
    color: #fdfdfd;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 230, 0, 0.25);
} */

@media (max-width: 768px) {
    .discover-btn {
        width: 100%;
        min-width: 0;
        font-size: 1.1rem;
        height: 54px;
        margin-top: 1.5rem;
    }
}

.discover-btn-svg {
    display: inline-block;
    width: 340px;
    height: 70px;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
}

.discover-btn-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    margin-top: 40px;
}

.discover-btn-svg text {
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    fill: #fff;
    pointer-events: none;
}

@media (max-width: 768px) {
    .discover-btn-svg {
        width: 100%;
        height: 54px;
    }

    .discover-btn-svg text {
        font-size: 20px;
        font-weight: 400;
    }
}

.mision-content {
    position: relative;
}

/* Carrusel "Qué te ofrecemos" - REESTRUCTURADO */
.ofrecemos-section {
  width: 100vw;
  min-height: 600px;
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.ofrecemos-titulo {
  position: absolute;
  top: 2.5rem;
  left: 10rem;
  z-index: 3;
  padding: 0;
  margin: 0;
}
.ofrecemos-titulo h2 {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 400;
}
.ofrecemos-carrusel {
  width: 100vw;
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.ofrecemos-slide {
  display: none;
  position: absolute;
  width: 100vw;
  height: 800px;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  border: none !important;
  outline: none !important;
}
.ofrecemos-slide.active {
  display: flex;
  pointer-events: auto;
  z-index: 2;
}
.ofrecemos-slide.slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  display: flex;
  z-index: 2;
}
.ofrecemos-slide.slide-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  display: flex;
  z-index: 2;
}
@keyframes slideInRight {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0);
  }
}
#slide-1.ofrecemos-slide { background-image: url('/assets/portada streaming.jpg'); }
#slide-2.ofrecemos-slide { background-image: url('/assets/portada mesa privada.jpg'); }
#slide-3.ofrecemos-slide { background-image: url('/assets/portada exclusiva.jpg'); }
#slide-4.ofrecemos-slide { background-image: url('/assets/portada analisi.jpg'); }

.ofrecemos-contenido {
  margin-left: 36%;
  text-align: right;
  background: rgba(0,0,0,0.0); /* Sin fondo, solo texto sobre la imagen */
  padding: 2rem 3rem;
  border-radius: 0;
  box-shadow: none;
  max-width: 60vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: none !important;
  outline: none !important;
}
.ofrecemos-titulo-slide {
  font-size: 3rem;
  color: #ffe600;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 34%;
}
.ofrecemos-highlight {
  color: #ffe600;
  font-weight: 400;
  margin-right: -39%;
  font-size: 70px;
}
.ofrecemos-contenido p {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 2rem;
  margin-left: 20%;
  margin-right: 9%;
  text-shadow: 0 2px 8px #000;
}

.ofrecemos-mesas{
	margin-right: 5%;
}



.ofrecemos-titulo-mesas {
  font-size: 3rem;
  color: #ffe600;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 26%;
  text-align: end;
}

.ofrecemos-mesas p {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'SUSE Sans', Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px #000;
    text-align: end;
    margin-left: 44%;
  }

.ofrecemos-membresias{
	margin-right: -45%;
}

.ofrecemos-titulo-membresias {
  font-size: 3rem;
  color: #ffe600;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 400;
  text-align: end;
  margin-bottom: 1.5rem;
  margin-right: 27%;
  margin-top: 27%;
}

.ofrecemos-membresias p {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 2rem;
  margin-left: 8%;
  margin-right: 27%;
  text-shadow: 0 2px 8px #000;
  text-align: end;
}

.ofrecemos-analisis{
	margin-right: -17%;
}

.ofrecemos-titulo-analisis {
  font-size: 3rem;
  color: #ffe600;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 34%;
  text-align: end;
}

.ofrecemos-analisis p {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px #000;
  text-align: end;
  margin-left: 32%;
}


.ofrecemos-paginacion {
    position: absolute;
    bottom: 2.5rem;
    margin-right: -31.8px;
    right: 11.2vw;
    display: flex;
    gap: 1rem;
    z-index: 2;
}
.ofrecemos-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -30%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.ofrecemos-dot.active {
  background: #ffe600;
  border-color: #ffe600;
  color: #000;
}
@media (max-width: 1100px) {
  .ofrecemos-section, .ofrecemos-carrusel, .ofrecemos-slide {
    min-height: 400px;
    height: 400px;
  }
  .ofrecemos-titulo-slide {
    font-size: 2rem;
  }
  .ofrecemos-contenido p {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .ofrecemos-section, .ofrecemos-carrusel, .ofrecemos-slide {
    min-height: 300px;
    height: 300px;
  }
  .ofrecemos-titulo-slide {
    font-size: 1.2rem;
  }
  .ofrecemos-contenido p {
    font-size: 0.9rem;
  }
  .ofrecemos-paginacion {
    right: 2vw;
    bottom: 1rem;
  }
  .ofrecemos-dot {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }
}

.diamante-bg {
    position: absolute;
    top: -45px;
    left: -42px;
    width: auto;
    z-index: 9;
    pointer-events: none;
    user-select: none;
}

.ofrecemos-slide.slide-out-right {
  animation: slideOutRight 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  z-index: 1;
}
.ofrecemos-slide.slide-out-left {
  animation: slideOutLeft 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  z-index: 1;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}

.faq-nuevo {
  position: relative;
  width: 100vw;
  height: 136vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.faq-bg {
  position: absolute;
  top: 12%;
  right: 1%;
  width: 40vw;
  height: 61%;
  background: url('/assets/FAQ.svg') no-repeat right center;
  background-size: contain;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.faq-nuevo-container {
  position: relative;
  z-index: 2;
  width: 70vw;
  max-width: 1100px;
  margin: 20% auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-right: 36%;
}
.faq-nuevo-item {
  border: none;
  background: transparent;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.faq-nuevo-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 400;
  gap: 1.5rem;
  transition: color 0.2s;
}
.faq-nuevo-number {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 400;
  margin-right: 0.5rem;
  min-width: 2.5rem;
  text-align: right;
}
.faq-nuevo-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 400;
  transition: color 0.2s;
}
.faq-nuevo-title.yellow {
  color: #ffe600;
  font-weight: 400;
}
.faq-nuevo-arrow {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-nuevo-arrow::before {
  content: '';
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.faq-nuevo-item.active .faq-nuevo-arrow::before {
  transform: rotate(-135deg);
}
.faq-nuevo-answer {
  max-height: 0;
  overflow: hidden;
  color: #bdbdbd;
  font-size: 1.5rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-weight: 300;
  margin-left: 3.5rem;
  margin-top: 0.7rem;
  line-height: 1.4;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
}
.faq-nuevo-item.active .faq-nuevo-answer {
  max-height: 300px;
  opacity: 1;
}
@media (max-width: 900px) {
  .faq-nuevo-container {
    width: 95vw;
    padding: 2rem 0 2rem 0.5rem;
  }
  .faq-bg {
    width: 60vw;
    background-size: cover;
  }
  .faq-nuevo-question, .faq-nuevo-title, .faq-nuevo-number {
    font-size: 1.2rem;
  }
  .faq-nuevo-answer {
    font-size: 1rem;
    margin-left: 2rem;
  }
}

.footer-mapa {
  position: relative;
  margin-top: -1%;
  width: 103vw;
  min-height: 85vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0;
}
.footer-mapa-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.footer-mapa-mundi {
  width: 104vw;
  margin-bottom: -4.5%;
  margin-right: -17.9%;
  height: 81.7vh;
  min-height: 500px;
  opacity: 1;
  filter: brightness(1) drop-shadow(0 0 0 #ffe600);
}
.footer-mapa-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffe600;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 12px 2px #ffe60099;
  border: 2px solid #000;
  animation: puntoBrillo 1.6s ease-in-out infinite;
}
@keyframes puntoBrillo {
  0% {
    box-shadow: 0 0 8px 2px #ffe60055, 0 0 0px 0px #ffe60000;
  }
  50% {
    box-shadow: 0 0 8px 10px #ffe60077, 0 0 0px 0px #ffe60000;
  }
  100% {
    box-shadow: 0 0 8px 2px #ffe60055, 0 0 0px 0px #ffe60000;
  }
}
.footer-mapa-content-left {
  position: relative;
  z-index: 3;
  width: 50vw;
  min-width: 400px;
  max-width: 700px;
  margin-left: 4vw;
  margin-bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-mapa-titulo {
  color: #fff;
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 12.5rem;
  margin-left: 11%;
  width: 860px;
  text-align: left;
}
.footer-mapa-titulo .amarillo {
  color: #ffe600;
  font-weight: 700;
}
.footer-mapa-social {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 0.5rem;
  margin-left: 9%;
}
.footer-mapa-social img {
  width: 2.3rem;
  height: 2.3rem;
  filter: brightness(0) invert(1);
  transition: filter 0.2s, transform 0.2s;
}
.footer-mapa-social img:hover {
  filter: brightness(0) saturate(100%) invert(81%) sepia(98%) saturate(7499%) hue-rotate(2deg) brightness(104%) contrast(105%);
  transform: scale(1.12);
}
.footer-mapa-copyright {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: -1.5rem;
  font-family: 'SUSE Sans', Arial, sans-serif;
  text-align: left;
  margin-left: 74px;
}
.footer-mapa-logo {
  position: absolute;
  left: -4.8vw;
  bottom: -5vw;
  width: 26vw;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .footer-mapa-content-left {
    width: 90vw;
    min-width: 0;
    margin-left: 2vw;
    margin-bottom: 2vw;
  }
  .footer-mapa-titulo {
    font-size: 1.3rem;
  }
  .footer-mapa-social img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer-mapa-logo {
    width: 30vw;
    min-width: 80px;
    left: 1vw;
    bottom: 1vw;
  }
  .footer-mapa-mundi {
    min-height: 300px;
    height: 60vw;
  }
  .footer-mapa-dot {
    width: 10px;
    height: 10px;
  }
}

.footer-mapa-carrusel-palabra {
  display: inline-block;
  position: relative;
  min-width: 85px;
  height: 3.2rem;
  vertical-align: bottom;
  overflow: hidden;
}
.footer-mapa-carrusel-palabra-inner {
  display: block;
  font-weight: 700;
  font-size: 2.8rem;
  color: #ffe600;
  margin-top: -9px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  height: 3.2rem;
  line-height: 3.2rem;
}
@media (max-width: 900px) {
  .footer-mapa-carrusel-palabra {
    min-width: 80px;
    height: 1.5rem;
  }
  .footer-mapa-carrusel-palabra-inner {
    font-size: 1.3rem;
    height: 1.5rem;
    line-height: 1.5rem;
  }
}

/* Membership Cards */
.membership-cards-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.membership-card {
  width: 220px;
  height: 320px;
  background: linear-gradient(160deg, #232323 80%, #181818 100%);
  border: 2px solid;
  border-radius: 12px;
  box-shadow: 0 4px 24px #000a, 0 0 0 4px #181818 inset;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 32px;
  margin: 24px auto;
  overflow: hidden;
}

.membership-title {
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
  text-stroke: 2px currentColor;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-align: center;
}

.membership-price {
  font-family: 'SUSE Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: currentColor;
  margin-bottom: 12px;
  text-align: center;
}

.membership-card.bronze { border-color: #ff8800; color: #ff8800; }
.membership-card.silver { border-color: #b0b0b0; color: #b0b0b0; }
.membership-card.gold { border-color: #ffd700; color: #ffd700; }
.membership-card.platinum { border-color: #00e6e6; color: #00e6e6; }

.membership-card::before,
.membership-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  background: linear-gradient(90deg, #444 0%, #232323 100%);
  z-index: 1;
}
.membership-card::before {
  top: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.membership-card::after {
  bottom: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transform: scaleY(-1);
}
