/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap"); */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Noto Sans", sans-serif; */
              font-family: 'Montserrat', sans-serif;

        }

        /* NAVBAR */
        .navbar {
            background-color: #0b0d33;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .logo {
            height: 40px;
        }

        nav a {
            margin: 0 1rem;
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #e30613;
        }

        .menu {
            font-size: 22px;
        }

        /* VIDEO SECTION */
        .video-section {
            /* background-color: black; */
            text-align: center;
            margin-top: 72px; /* Ajustar por navbar fija */
        }

        .video-placeholder {
            width: 100%;
            /* max-height: 400px; */
            object-fit: contain;
        }

        /* CAROUSEL SECTION */
        body {
            background: linear-gradient(135deg, #e8e9f0 0%, #d1d4e0 100%);
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
              font-family: 'Montserrat', sans-serif;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .title-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .title-section p {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        .platforms {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .carousel-container {
            position: relative;
            padding-bottom: 70px;
        }

        .main-carousel {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .main-video {
            flex: 1;
            max-width: 700px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .main-video-player {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }

        .player-name {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .thumbnail-carousel {
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-top: auto;
        }

        .thumbnail {
            width: 130px;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            position: relative;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0,0,0,0.25);
        }

        .thumbnail.active {
            border: 3px solid #3498db;
            transform: scale(1.02);
        }

        .thumbnail-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #2c3e50;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .nav-button:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-prev {
            left: -25px;
        }

        .nav-next {
            right: -25px;
        }

        /* REGISTRATION FORM */
        .contenedor {
            display: flex;
            min-height: 100vh;
        }

        .izquierda {
            background: #eceeff;
            color: white;
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .izquierda h1 {
            font-size: 40px;
            color: #000;
        }

        .izquierda span {
            color: #000;
            font-weight: bold;
        }

        .izquierda p {
            margin-top: 20px;
            font-size: 15px;
            max-width: 400px;
            color: #000;
        }

        .derecha {
            background-color: #eceeff;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 50px;
        }

        .derecha h2 {
            margin-bottom: 20px;
            font-size: 28px;
            color: #000;
        }

        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        form input {
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 100%;
        }

        form button {
            grid-column: span 1;
            padding: 15px;
            background-color: black;
            color: white;
            font-size: 20px;
            cursor: pointer;
            border: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        form button:hover {
            background-color: #444;
        }

        svg {
            vertical-align: middle;
            width: 80px;
            height: 40px;
        }

        .redes3{
            width: 40px;
            margin-top: 50px;
        }

        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(to right, black, red);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.3);
            z-index: 2000;
            max-width: 500px;
            width: 90%;
        }

        .izquierda2 {
            background: linear-gradient(to right, black, red);
        }

        .modal h1, .modal h3, .modal h4 {
            text-align: center;
            color: white;
        }

        .modal h4 {
            font-weight: 300;
            margin-bottom: 10px;
        }

        .cerrarRegistro {
            width: 100%;
            padding: 15px;
            background-color: #ffff00;
            color: black;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 4px;
            margin-top: 20px;
            transition: background-color 0.3s;
        }

        .cerrarRegistro:hover {
            background-color: #e6e600;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.3rem;
            }

            .logo {
                height: 30px;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 14px;
            }

            .header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .title-section h1 {
                font-size: 2.5rem;
            }

            .main-carousel {
                flex-direction: column;
            }

            .thumbnail-carousel {
                flex-direction: row;
                justify-content: center;
                overflow-x: auto;
                padding: 10px 0;
            }

            .nav-button {
                display: none;
            }

            .contenedor {
                flex-direction: column;
            }

            .izquierda, .derecha {
                flex: none;
                width: 100%;
                padding: 30px;
            }

            .izquierda h1 {
                font-size: 28px;
                text-align: center;
            }

            .izquierda p {
                text-align: center;
                font-size: 14px;
                max-width: 100%;
            }

            .derecha h2 {
                text-align: center;
            }

            form {
                grid-template-columns: 1fr;
            }

            form button {
                grid-column: span 1;
            }
        }


        .navbar nav a.active {
            color: red;
            font-weight: bold;
            }

    .separator2 {
        background-color: #e30613;
        margin-top: -5px;
    }

    /* SECCION DE ICONOS */

    .contenedor2 {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    background: url('/assets/img/FONDO AZUL .jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    }

    .columna {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
    height: 100%;
    width: 40%;
    }

    .columna img {
    width: 20%;
    }

    /* Unificamos estilos */
    .estilo1, .estilo2, .estilo3, .estilo4, .estilo5 {
    display: flex;
    gap: 50px;
    align-items: center;
    }

    .estilo1 p,
    .estilo2 p,
    .estilo3 p,
    .estilo4 p,
    .estilo5 p {
    background-color: red;
    color: white;
    font-size: 30px;
    }

    /* SECCION DE VIDEO Y TEXTO */
  
    .contenedor3 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    gap: 0;
    background: url('/assets/img/FONDO\ AZUL\ .jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    }

    .columna1 {
    width: 655px;
    height: 400px;
    background-color: white;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    }

    .columna2 {
    width: 655px;
    height: 400px;
    background-color: white;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    color: black;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    text-align: left;
    }

    .contenido-columna2 {
    display: flex;
    flex-direction: column;
    }

    .titulo {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 67px; /* ≈2 pulgadas */
    }

    .texto-separado {
    font-size: 22px;
    margin-bottom: 25px;
    margin-top: 11px;
    }

    .texto-final {
    font-size: 20px;
    margin-bottom: 96px; /* ≈1 pulgada */
    }

    .video-recuadro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    }

    @media (max-width: 768px) {

        .contenedor2 {
            display: block;
            width: 100%;
            height: auto;
            justify-content: space-evenly;
            align-items: center;
            padding: 20px;
            background-size: cover;
            color: white;
            padding-top: 40px;
        padding-bottom: 40px;
        }

        .columna {
            display: grid;
            grid-template-rows: auto;
            /* gap: 20px;
            height: 100%;
            width: 40%;
            padding-bottom: 20px; */
        }

        .columna1 {
                    /* width: 350px; */
                    height: 200px;
                    background-color: transparent;
                    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
                    border-radius: 0 0 0 0;

                    /* background-color: white;
                    border-radius: 10px 0 0 10px;
                    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
                    color: black;
                    text-align: center;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow: hidden; */
        }

        .columna2 {
                    /* width: 350px; */
                    height: 570px;
                    background-color: white;
                    border-radius: 0 10px 10px 0;
                    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
                    color: black;
                    display: flex;
                    justify-content: center;
                    align-items: flex-start;
                    padding: 30px;
                    text-align: left;
                    border-radius: 0 0 0 0;
        }

        .columna1,
        .columna2 {
            width: 90%; /* O 100% menos padding si quieres responsive real */
            max-width: 350px;
            margin: 0 auto;
        }

        .contenedor3 {
            display: block;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
            height: 100vh;
            padding-top: 50px;
            gap: 0;
            background: url('/assets/img/FONDO\ AZUL\ .jpg') no-repeat center center fixed;
            background-size: cover;
            color: white;
        }

        .video-recuadro {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0 0 0 0;
        }

        .estilo3 {
            margin-bottom: 20px;
        }

         .contenedor {
            display: flex;
            min-height: 85vh;
        }
    }