 body {
            background-color: #121212;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Evita el scroll horizontal */
        }
        
        /* Contenedor del encabezado */
        .header {
            width: 100%;
            height: 80px;
            background-color: hsla(0, 0%, 0%, 0); 
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.5s ease;
        }

        .header:hover {
            background-color: #E2E2E2;
            transition: background-color 0.5s ease;
        }

        .header-content {
            width: 100%;
            max-width: 1920px;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            transition: transform 0.3s ease-in-out;
            cursor: pointer;
        }

        .header-logo:hover {
            transform: scale(1.1);
        }

        .logoimg { 
            width: 150px;
        }

        .header-nav, .header-icons {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        }

        /* Ensure horizontal alignment for the main navigation items */
        .header-nav .nav-list {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        
        .header-nav .nav-item {
            position: relative;
            margin: 0 15px;
        }

        .header-nav .nav-item > a {
            color: #ffffff;
            text-decoration: none;
            font-family: 'Helvetica', sans-serif;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        .header-nav .nav-item > a:hover {
            color: #000000;
            text-shadow: none;
            transform: scale(1.1);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #E2E2E2;
            padding: 10px;
            /* Removed border-radius for square corners */
            z-index: 20;
            border-radius: 0%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);

        }

        .nav-item:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            color: #707070;
            padding: 5px 10px;
            text-decoration: none;
            display: block;
            /* Set font to Helvetica */
            font-family: 'Helvetica', sans-serif;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: #d8d8d8;
            color: black;
        }
        
        .header-icons .icon {
            color: #ffffff;
            margin-left: 20px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        .header-icons .icon:hover {
            color: #212121;
            transform: scale(1.1);
        }

        /* ------------------------------------------- */
        /* ESTILOS PARA LA NUEVA ANIMACIÓN DE FONDO */
        /* ------------------------------------------- */
         .main-hero {
            position: relative;
            width: 100%;
            max-width: 1920px;
            height: 803px; /* Altura fija para el contenedor del video principal */
            margin: 0 auto; /* Centrar el contenedor principal */
        }
        
        .hero-background-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover; 
            background-position: center;
            z-index: 0; /* Detrás del texto del hero */
        }

        /* Asegura que el video dentro del hero ocupe todo el espacio */
        .hero-background-layer video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .main-hero-content {
            position: relative;
            z-index: 2; /* Asegura que el texto esté por encima de las imágenes de fondo */
            height: 100%;
        }

        /* ------------------------------------------- */
        /* ESTILOS DEL TEXTO PRINCIPAL */
        /* ------------------------------------------- */
        .hero-text {
            font-weight: 400;
            line-height: 1.2;
            transition: transform 0.2s ease-out; /* Transición suave para el parallax */
            position: absolute;
            color: #ffffff;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
            z-index: 2;
        }

        /* Raw Style */
        .hero-text.left {
            text-align: center;
            top: 40rem;
            left: 17rem;
            font-family: javanese; /* Fuente ficticia, se usará una fuente por defecto si no está disponible */
            font-size: 6rem;
        }

        /* Real Presence */
        .hero-text.right {
            text-align: right;
            top: 37.8rem;
            left: 44rem;
            font-family: GW Bantley; /* Fuente ficticia, se usará una fuente por defecto si no está disponible */
            font-size: 9rem; 
        }

        .text-section {
            width: 100%;
            max-width: 1920px;
            background-color: #060606;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .text-section p.top-text {
            font-family: 'Helvetica', 'Arial', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            text-transform: uppercase;
            margin: 0;
            line-height: 1.5;
        }

        .text-section p.bottom-text {
            font-family: 'GW Bantley';
            font-size: 5.8rem;
            margin: -18px;
        }

        /* Contenedor principal para el carrusel, ahora con ancho máximo y centrado */
        .carousel-container {
            width: 100%;
            max-width: 1920px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            position: relative;
            margin: 0 auto;
        }

        /* Ocultar los controles predeterminados de Bootstrap */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            display: none;
        }

        /* Estilos para los botones de control personalizados (flechas) */
        .carousel-control-prev,
        .carousel-control-next {
            width: 30px;
            height: 100px;
            border-radius: 0;
            background-color: transparent;
            opacity: 1;
            transition: all 0.3s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Efecto de hover: agrandar y cambiar el color de la flecha */
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            transform: scale(1.1);
        }

        /* Estilos para las imágenes PNG de las flechas */
        .arrow-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease-in-out;
        }
        
        /* Por defecto, la flecha es gris claro */
        .carousel-control-prev .arrow-icon,
        .carousel-control-next .arrow-icon {
            filter: grayscale(100%) brightness(150%);
        }

        /* Cambiar el color de la flecha a blanco en hover */
        .carousel-control-prev:hover .arrow-icon,
        .carousel-control-next:hover .arrow-icon {
            filter: none;
        }
        
        /* Ajustes para las imágenes dentro de cada columna */
        .carousel-item .row {
            height: 80%;
            margin: 0;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Estilos para posicionar los botones de control centrados verticalmente */
        .carousel-control-prev,
        .carousel-control-next {
            top: 50%;
            transform: translateY(-50%);
        }


        section p.top-text {
            font-family: 'Helvetica', 'Arial', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            text-transform: uppercase;
            margin: 0;
            line-height: 1.5;
        }

        .text-section p.bottom-text {
            font-family: 'GW Bantley';
            font-size: 5.8rem;
            margin: -18px;
        }

        #second-carousel-container {
            width: 100%;
            max-width: 1920px;
            height: 400px;
            background-color: black;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            
            overflow: hidden;
        }
        
        #second-carousel {
            height: 600px;
            padding: 30px;
            overflow-x: hidden;
            display: flex;
            align-items: center;
            gap: 20px; 
            cursor: grab;
        }

        #second-carousel img {
            height: 100%; 
            width: auto;
            object-fit: contain; 
        }

        #video {
            size: 100%;
        }

        /* --- Estilos para el nuevo bloque de imagen con texto --- */
        .full-width-section-with-text {
            position: relative;
            width: 100%;
            max-width: 1920px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            margin: 0 auto; /* Centrar la sección */
        }

        /* ESTE ES EL CAMBIO CLAVE: Asegura que el video se comporta como un fondo y rellena la sección */
        .full-width-section-with-text video {
            display: block;
            width: 100%;
            height: 100vh; /* Altura de la ventana de visualización */
            object-fit: cover;
            /* Z-index por defecto (o 1) para que esté debajo del texto (z-index: 5) */
            z-index: 1; 
            position: relative; /* Necesario para que z-index funcione correctamente en este contexto */
        }
        
        /* Se eliminó la regla específica #video2 { z-index: -1; } que causaba el problema de apilamiento */

        .text-top-overlay,
        .text-bottom-overlay {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #ffffff;
            z-index: 5; /* Asegura que el texto está por encima del video (z-index: 1) */
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
            width: 80%;
            font-family: 'GW Bantley' ; /* Para que el texto no se extienda por completo */
        }
        
        .text-top-overlay {
            top: 5%; /* Ajusta la posición vertical del texto superior */
        }

        .text-bottom-overlay {
            bottom: 5%; /* Ajusta la posición vertical del texto inferior */
        }

        .text-bottom-overlay h1 {
            /* Cambia el tamaño de fuente aquí */
            font-size: 5.5rem;
        }

        .text-top-overlay h1 {
            /* Cambia el tamaño de fuente aquí */
            font-size: 5.5rem;
        }

        /* #video2 regla eliminada o modificada */
        
        .footer {
            width: 100%;
            max-width: 1920px; /* Ancho máximo para el footer */
            min-height: 300px; /* Altura mínima para el footer, ajustada a tu solicitud */
            background-color: #E2E2E2;
            color: #707070;
            font-family: 'Helvetica', sans-serif;
            padding: 50px 20px;
            margin: 0 auto; /* Centrar el footer */
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap; /* Permite que las columnas se envuelvan en pantallas pequeñas */
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 20px; /* Espacio entre columnas en pantallas pequeñas */
        }

        .footer-column h4 {
            font-weight: bold;
            color: #707070;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-column a, .footer-column p {
            color: #707070;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .footer-column a:hover {
            text-decoration: underline;
        }

        .footer-social-icons .icon {
            font-size: 1.2rem;
            color: #707070;
            margin-right: 15px;
        }

        .footer-middle-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        .footer-middle-content p {
            margin: 0;
        }

        /* Se ha eliminado margin-top: auto; para que el texto de copyright no baje tanto */
        .footer-middle-content .copyright { /* Se ha ajustado el margen superior para un mejor equilibrio */
            font-size: 0.8rem;
            align-self: flex-start; /* Alinea el texto a la izquierda */
        }

        .footer-newsletter-form {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin-top: 10px;
        }

        .footer-newsletter-form input {
            padding: 10px;
            border: 1px solid #707070;
            background-color: transparent;
            color: #707070;
            margin-bottom: 10px;
        }

        .footer-newsletter-form input::placeholder {
            color: #999;
        }

        .footer-newsletter-form button {
            padding: 10px;
            border: 1px solid #707070;
            background-color: transparent;
            color: #707070;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .footer-newsletter-form button:hover {
            background-color: #707070;
            color: #E2E2E2;
        }