        @font-face {
            font-family: 'Monse-Black';
            src: url('../recursos/fuente/Montserrat-Black.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-Bold';
            src: url('../recursos/fuente/Montserrat-Bold.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-Ligth';
            src: url('../recursos/fuente/Montserrat-Light.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-Medium';
            src: url('../recursos/fuente/Montserrat-Medium.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-Regular';
            src: url('../recursos/fuente/Montserrat-Regular.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-SemiBold';
            src: url('../recursos/fuente/Montserrat-SemiBold.ttf') format('truetype');
            font-style: normal;
        }

        @font-face {
            font-family: 'Monse-Thin';
            src: url('../recursos/fuente/Montserrat-Thin.ttf') format('truetype');
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
        }

        /* --- Contenido de la página --- */
        .content {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden;
        }

        /* --- HERO --- */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            border-bottom: 1px solid #b4b4b4;
        }

        /* Fila superior */
        .hero-top {
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            z-index: 9999;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

        }

        .hero-top .logo {
            flex: 1;
            display: flex;
            align-items: center;
            margin-left: 300px;
        }

        .hero-top .logo img {
            max-height: 70px;
        }

        /* Columna fija de 250px */
        .hero-top .menu-col {
            width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #e6e6e6;
            height: 100%;
            border-bottom: 1.5px solid #ffffff;
        }

        .menu-btn {
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .menu-btn h1 {
            display: block;
        }

        .menu-btn img {
            display: none;
        }

        .menu-btn h1 {
            font-size: 40px;
            font-family: 'Monse-SemiBold', sans-serif;
            color: #E74820;
        }

        /* Slider */
        #hero-slider {
            margin-top: 100px;
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            transition: background-image 1s ease-in-out;
        }

        /* Slider de fondo */
        .hero-slider {
            position: absolute;
            left: 0;
            width: 100%;
            height: calc(100vh - 10vh);
            display: flex;
        }

        .slider-col {
            flex: 1;
            background-repeat: no-repeat;
            background-size: 100% auto;
            background-position: top center;
        }

        /* Columna lateral de 250px */
        .icons-col {
            width: 250px;
            background: #e6e6e6;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            height: 100vh;
        }

        .icons-col img {
            width: 65vh;
            height: auto;
            cursor: pointer;
            /* filter: invert(0); */
            opacity: 30%;
            transform: rotate(-90deg);
            margin-top: 50px;
        }

        .hero-content {
            position: absolute;
            top: 300px;
            left: 0;
            width: 80%;
            height: calc(100vh - 300px);
            display: flex;
            flex-direction: column;
            justify-content: end;
            color: white;
            z-index: 20;
        }

        /* Contenedor título y parrafo*/
        .title-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            align-items: flex-start;
            background-color: #b43e2300;
            padding-left: 100px;
        }

        .title-row h1 {
            font-family: 'Monse-Ligth', sans-serif;
            font-size: 4rem;
            color: #2f2f2f;
            text-transform: uppercase;
            font-weight: 100;
            width: 50%;
        }

        /* Iconos de la parte inferior */
        .hero-content .extra {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            background-color: rgba(153, 205, 50, 0);
        }

        .hero-content .extra img {
            width: 50px;
            height: 50px;
            cursor: pointer;
        }

        .menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .menu-btn img {
            width: 40px;
            height: auto;
            transition: transform 0.3s ease;
        }


        /* Menú lateral */
        .side-menu {
            position: fixed;
            top: 0;
            right: -800px;
            /* fuera de pantalla */
            width: 800px;
            height: 100vh;
            /* ocupa toda la altura */
            background-color: #3b3b3b;
            color: #fff;
            z-index: 9999;
            /* muy arriba */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: right 0.5s ease;
            overflow: hidden;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        }

        /* Estado abierto */
        .side-menu.open {
            right: 0;
        }

        /* Fila superior */
        .menu-top {
            display: flex;
            justify-content: flex-end;
            padding: 40px 40px;
            border-bottom: 1px solid white;
        }

        /* Botón cerrar */
        #close-menu {
            background: none;
            border: none;
            cursor: pointer;
            margin-right: 40px;
        }

        /* Div central con fondo */
        .menu-center {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: left;
            padding-left: 50px;
        }

        .menu-row {
            display: flex;
            align-items: center;
            gap: 15px;
            /* espacio entre ícono y texto */
            margin: 20px 0;
            font-size: 28px;
            font-family: 'Monse-Regular', sans-serif;
            text-transform: uppercase;
        }

        .menu-row img {
            width: 40px;
        }

        .menu-row a {
            text-decoration: none;
            color: #fff;
            /* o el color que quieras */
            transition: color 0.3s;
        }

        .menu-row a:hover {
            border-bottom: 1px solid white;
        }


        /* Fila inferior */
        .menu-bottom {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            padding: 20px;
            background-color: #3b3b3b;
        }

        .menu-bottom img {
            width: 40px;
            cursor: pointer;
        }

        /* Botón abrir menú */
        #menu-btn img {
            cursor: pointer;
        }

        /*Seccion lista e imagen*/

        /* CONTENEDOR PRINCIPAL */
        .seccion-blanca {
            width: 100%;
            background-color: #ffffff;
            padding: 60px 20px;
            box-sizing: border-box;
            border-bottom: 1px solid #b4b4b479;
        }

        .contenedor {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* COLUMNA IZQUIERDA */
        .columna-izquierda {
            flex: 1;
            min-width: 300px;
        }

        .columna-izquierda h2 {
            font-family: 'Monse-Bold', sans-serif;
            font-size: 36px;
            color: #e74624;
            margin-bottom: 30px;
        }

        /* Contenedor de las dos listas */
        .listas {
            display: flex;
            gap: 40px;
            /* espacio entre listas */
            flex-wrap: wrap;
            /* responsivo */
        }

        .listas .lista {
            list-style: none;
            padding-left: 0;
        }

        .listas .lista li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Monse-Regular', sans-serif;
            font-size: 20px;
            color: #555555;
            margin-bottom: 12px;
        }

        .listas .lista li img {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        /* COLUMNA DERECHA */
        .columna-derecha {
            flex: 1;
            min-width: 300px;
            position: relative;
            /* contenedor relativo */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            /* opcional, iguala al contenedor padre */
        }

        /* Imagen absoluta para no afectar el alto */
        .columna-derecha img {
            position: absolute;
            transform: translateY(130px);
            max-width: 1000px;
            height: 900px;
        }

        /*Seccion informacion*/
        .seccion-informacion {
            width: 100%;
            background-color: #ffffff;
        }

        /* Fila título */
        .fila-titulo {
            width: 100%;
            text-align: center;
            padding: 60px 20px 40px 20px;
            /* border-bottom: 1px solid #b4b4b4; */
        }

        .fila-titulo h2 {
            font-family: 'Monse-Ligth', sans-serif;
            font-size: 60px;
            color: #2f2f2f;
            font-weight: 100;
            text-transform: uppercase;
        }

        .btnW_container {
            width: 100%;
            height: 100px;
            display: flex;
            justify-content: center;
            margin: 30;
            padding: 20px;
        }

        .btnW_container .btnW {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #E74820;
            padding: 20px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-family: 'Monse-Bold', sans-serif;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .btnW_container .btnW:hover {
            color: white;
            background-color: #E74820;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .btnW_container .btnW:hover img {
            filter: brightness(0) invert(1);
        }

        .btnW_container .btnW img {
            width: 24px;
            height: 24px;
        }

        /* Fila con columnas y fondo */
        .fila-columnas {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            background-image: url('../recursos/index/1/fondo_2.png');
            background-size: cover;
            background-position: left top;
            background-repeat: no-repeat;
            padding: 60px 20px;
            box-sizing: border-box;
        }


        /* Columnas individuales */
        .columna-info {
            flex: 1;
            min-width: 250px;
            text-align: center;
            color: #555555;
        }

        .columna-info img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .columna-info p {
            font-family: 'Monse-Bold', sans-serif;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .columna-info h3 {
            font-family: 'Monse-Regular', sans-serif;
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 100;
        }

        /* Iconos extra en la columna 2 */
        .columna-info .iconos-fila {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 70px;
        }

        .columna-info .iconos-fila img {
            width: 40px;
            height: 40px;
        }

        /*Seccion de contacto*/
        .seccion-contacto {
            width: 100%;
            height: 500px;
            background-image: url('../recursos/cobertura/2/fondo_experiencia.png');
            /* Cambia según tu imagen */
            background-size: cover;
            background-position: right;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            border-top: 1px solid #b4b4b479;
            border-bottom: 1px solid #b4b4b479;
        }

        .contacto-container {
            display: flex;
            width: 90%;
            max-width: 1200px;
            height: 80%;
        }

        .col-izquierda,
        .col-derecha {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* Columna izquierda */
        .col-izquierda {
            position: relative;
            flex-direction: column;
            text-align: left;
            align-items: start;
            left: -80px;
        }

        .col-izquierda h2 {
            font-size: 40px;
            margin-bottom: 20px;
            color: #e74624;
            font-family: 'Monse-Bold', sans-serif;
            width: 500px;
        }

        .col-izquierda p {
            font-size: 1.2rem;
            max-width: 490px;
            color: #555555;
            font-family: 'Monse-Regular', sans-serif;
        }

        /* Columna derecha - formulario */
        .col-derecha form {
            background-color: rgb(255, 255, 255);
            padding: 60px;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 600px;
            border: 1px solid #b4b4b479;
            transform: translateY(100px);
            border-radius: 12px;
            position: relative;
            z-index: 10;
        }

        .col-derecha input,
        .col-derecha textarea {
            margin-bottom: 30px;
            padding: 10px 5px;
            border: none;
            border-bottom: 2px solid #ccc;
            font-size: 1rem;
            width: 100%;
            outline: none;
            background-color: transparent;
            transition: border-color 0.3s;
            font-family: 'Monse-Regular', sans-serif;
        }

        .col-derecha input:focus,
        .col-derecha textarea:focus {
            border-bottom-color: #555555a6;
        }


        .col-derecha textarea {
            resize: none;
            height: 100px;
        }

        .col-derecha button {
            padding: 12px;
            border: none;
            background-color: #e74624;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            border-radius: 5px;
        }

        .col-derecha button:hover {
            background-color: #b43e23;
        }

        .imagen-decorativa {
            width: 100%;
            height: 50px;
            position: relative;
            overflow: hidden;
        }

        .imagen-decorativa img {
            position: absolute;
            left: 290px;
            bottom: 20px;
            max-height: 100px;
        }

        /*FOOTER*/
        .footer {
            width: 100%;
            background-color: #ffffff;
            color: white;
            padding: 50px 20px;
            border-bottom: 1px solid #b4b4b479;
            border-top: 1px solid #b4b4b479;
        }

        .footer-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .footer-columna {
            min-width: 250px;
        }

        .footer-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-icon {
            width: 40px;
            height: 40px;
        }

        .footer-texto h3 {
            margin: 0 0 10px 0;
            font-size: 1.2rem;
            font-family: 'Monse-Regular', sans-serif;
            color: #555555;
        }

        .footer-texto p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.5;
            font-family: 'Monse-Regular', sans-serif;
            color: #555555;
        }

        .footer-iconos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .footer-iconos h2 {
            font-size: 1rem;
            color: #555555;
            margin: 0;
            font-family: 'Monse-Regular', sans-serif;
            font-weight: 100;

        }

        .footer-iconos a {
            font-size: 1rem;
            color: #cc4b00;
            margin: 0;
            font-family: 'Monse-Regular', sans-serif;
            font-weight: 100;

        }

        .footer-iconos .iconos {
            display: flex;
            gap: 20px;
            /* espacio entre los iconos */
        }

        .footer-iconos .iconos img {
            width: 35px;
            height: 35px;
            cursor: pointer;
            transition: transform 0.3s;
        }


        @media screen and (max-width: 1400px) {

            .title-row h1 {
                font-family: 'Monse-Ligth', sans-serif;
                font-size: 3rem;
                color: #2f2f2f;
                text-transform: uppercase;
                font-weight: 100;
                width: 50%;
            }

            /* Imagen absoluta para no afectar el alto */
            .columna-derecha img {
                position: absolute;
                transform: translateY(130px);
                max-width: 700px;
                height: auto;
            }

        }

        @media screen and (max-width: 1100px) {
            .hero-content {
                width: 70%;
            }

            /* Imagen absoluta para no afectar el alto */
            .columna-derecha img {
                position: absolute;
                transform: translateY(130px);
                max-width: 500px;
                height: auto;
            }

        }

        /* Moviles*/
        @media (max-width: 768px) {

            /* RESET GENERAL */
            body,
            html {
                overflow-x: hidden;
            }

            /* HEADER */
            .hero-top {
                height: 70px;
                padding: 0;
            }

            .hero-top .logo {
                margin-left: 0;
                justify-content: center;
            }

            .hero-top .logo img {
                max-height: 50px;
            }

            .hero-top .menu-col {
                width: 70px;
                padding: 0 10px;
            }

            /* SLIDER */
            #hero-slider {
                width: 100%;
                margin-top: 70px;
                height: 70vh;
                background-size: cover;
                background-position: calc(50% + 130px) top;
            }

            .hero-slider {
                width: 100%;
                flex-direction: column;
                height: 70vh;

            }

            .slider-col {
                height: 220px;
                background-size: cover;
                background-position: center;
            }

            .icons-col {
                display: none;
            }

            .icons-col img {
                width: 80px;
                transform: none;
                margin: 0;
            }

            /* TEXTO HERO */
            .hero-content {
                position: static;
                width: 100%;
                height: auto;
                padding: 30px 15px;
                text-align: center;
                color: #2f2f2f;
                justify-content: center;
                align-items: center;
                margin-top: 560px;
            }

            .title-row {
                transform: none;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                align-items: center;
                text-align: center;
                padding: 0;
            }

            .title-row h1 {
                font-size: clamp(26px, 7vw, 34px);
                transform: none;
            }

            .title-row p {
                font-size: clamp(14px, 4vw, 18px);
                transform: none;
                margin-top: 10px;
            }

            /* ICONOS EXTRAS */
            .hero-content .extra {
                justify-content: center;
                margin: 20px 0 0 0;
            }

            /* SIDE MENU */
            .side-menu {
                width: 100%;
                right: -100%;
            }

            .menu-btn h1 {
                display: none;
            }

            .menu-btn img {
                display: block;
            }

            .side-menu.open {
                right: 0;
            }

            .menu-center {
                padding-left: 20px;
            }

            .menu-row {
                justify-content: center;
                font-size: 22px;
            }

            /* SECCIONES BLANCAS */
            .contenedor,
            .listas {
                align-items: center;
                justify-content: center;
            }

            .columna-derecha img {
                position: static;
                transform: none;
                max-width: 100%;
                height: auto;
            }

            .columna-izquierda h2 {
                font-size: 28px;
                text-align: center;
            }

            .listas .lista li {
                justify-content: start;
                font-size: 18px;
            }

            /* SECCION INFO */
            .fila-columnas {
                flex-direction: column;
                gap: 30px;
                text-align: center;
                background-size: cover;
                padding: 40px 15px;
            }

            .fila-titulo h2 {
                font-size: 32px;
            }

            /* SECCION CONTACTO */
            .contacto-container {
                flex-direction: column;
                justify-content: center;
                height: auto;
                gap: 30px;
                padding: 30px 15px;
                margin-top: 300px;
            }

            .col-izquierda {
                left: 0;
                text-align: center;
                align-items: center;
            }

            .col-izquierda h2 {
                width: auto;
                font-size: 26px;
            }

            .col-izquierda p {
                max-width: 100%;
                font-size: 1rem;
                color: #555555;
            }

            .col-derecha form {
                transform: none;
                min-width: 100%;
                padding: 30px 20px;
            }

            /* IMAGEN DECORATIVA */

            .imagen-decorativa {
                margin-top: 150px;
            }

            .imagen-decorativa img {
                position: static;
                max-height: 80px;
                margin: 20px auto 0;
                display: block;
                margin-top: 150px;
            }

            .columna-info .iconos-fila {
                display: none;
            }


            /* --- FOOTER --- */
            .footer-container {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .footer-columna {
                max-width: 250px;
            }

            .footer-iconos {
                flex-direction: column;
                gap: 20px;
                max-width: 95%;
            }

            .footer-iconos h2 {
                text-align: center;
            }
        }

        @media (min-width: 390px) and (max-width: 400px) {

            .title-row {
                margin-top: 50px;
            }

        }


        @media (max-width: 420px) {

            .title-row {
                margin-top: 80px;
            }
        }