        @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;
        }

        /*Justificacion de textos */
        /* Justificar los textos dentro de las secciones de texto */
        body,
        .hero-content,
        .title-row,
        .card-body,
        .footer-texto p,
        .menu-row a {
            text-align: justify;
        }

        /* Justificar los párrafos en las filas */
        .title-row p,
        .footer-texto p {
            text-align: justify;
        }

        /* Justificar las listas */
        ul {
            text-align: justify;
        }

        /* Justificar los títulos en las tarjetas */
        .card-title h3,
        .hero-content h1,
        .espacio-titulo h1,
        .footer-texto h3 {
            text-align: justify;
        }

        /* Ajustar específicamente para los contenedores de servicios */
        .servicios,
        .servicios2 {
            text-align: justify;
        }

        /* Ajustar los textos de las tarjetas */
        .card-body p {
            text-align: justify;
        }

        /* Justificar el texto dentro de la sección contacto */
        .formulario-contacto {
            text-align: justify;
        }


        /* --- Preloader --- */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #ffffff;
            /* Fondo blanco o el color que quieras */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: transform 1s ease-in-out;
        }

        /* Animación de opacidad del logo */
        .preloader img {
            max-width: 400px;
            opacity: 0;
            animation: fadeIn 2s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Estado oculto: desliza el preloader hacia la izquierda */
        .preloader.hide {
            transform: translateX(-100%);
        }

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

        /*SECCION 2*/
        .mi-seccion2 {
            width: 100%;
            height: 70vh;
            display: flex;
            margin-top: 15vh;
            flex-direction: column;
        }

        /* Fila del título */
        .fila-titulo {
            width: 100%;
            height: 15vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
        }

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

        /* Fila de columnas */
        .mi-seccion2 .fila-columnas {
            width: 100%;
            height: auto;
            flex: 1;
            display: flex;
        }

        /*   .fila-columnas {
        display: flex;
        width: 100%;
        position: relative;
        min-height: 500px;
        background-image: url("../recursos/index/1/fondo_experiencia.png");
        background-size: 100% 500px;
        background-position: bottom;
        background-repeat: no-repeat;
        border-top: 1px solid #b4b4b4;
        border-bottom: 1px solid #b4b4b4;
    } */

        .columna {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            text-align: center;
            /* necesario para overlays */
            position: relative;
            overflow: hidden;
        }

        /* Filtro oscuro inicial */
        .columna::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
            transition: opacity 1.2s ease;
            /* transición suave */
        }

        /* Animación: quitar el filtro oscuro */
        .columna:hover::before {
            opacity: 0;
            /* se desvanece */
        }

        .columna2 {
            flex: 1;
            background-color: #ddd;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            text-align: center;

            /* necesario para overlays */
            position: relative;
            overflow: hidden;
        }

        .cuadro-azul {
            background-color: #e7e7e7;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            width: 100%;
            height: calc(100% - 100px);
            color: #fff;
        }

        .cuadro-azul .icono {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .cuadro-azul .texto-icono {
            font-size: 36px;
            text-align: center;
            font-family: 'Monse-Ligth', sans-serif;
            color: #2f2f2f;
            font-weight: 100;
        }

        .imagen-abajo {
            width: 100%;
            height: 98px;
            background-color: rgb(255, 0, 0);
        }

        /*ANIMACIONES DE OVERLAYS EN COLUMNAS*/

        /* Overlay blanco izquierda→derecha */
        .columna::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.158);
            z-index: 2;
            pointer-events: none;
        }

        .columna:hover::after {
            animation: overlay-left-right 0.6s forwards;
        }

        /* Overlay negro abajo hacia arriba */
        .columna .overlay-extra {
            position: absolute;
            left: 0;
            bottom: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.13);
            z-index: 3;
            pointer-events: none;
        }

        .columna:hover .overlay-extra {
            animation: overlay-bottom-up 1s ease forwards;
            animation-delay: 0.6s;
        }

        /* Keyframes */
        @keyframes overlay-left-right {
            0% {
                left: -100%;
                opacity: 1;
            }

            50% {
                left: 0;
                opacity: 1;
            }

            100% {
                left: 0;
                opacity: 0;

            }
        }

        @keyframes overlay-bottom-up {
            0% {
                bottom: -100%;
                opacity: 1;
            }

            50% {
                bottom: 0;
                opacity: 1;
            }

            100% {
                bottom: 0;
                opacity: 0;

            }
        }


        /*Columnas imagen arriba*/

        .columna2 {
            flex: 1;
            background-color: #ddd;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            text-align: center;

            /* necesario para overlays */
            position: relative;
            overflow: hidden;
        }

        /* Filtro oscuro inicial */
        .columna2::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
            transition: opacity 0.6s ease;
        }

        /* Animación: quitar el filtro oscuro */
        .columna2:hover::before {
            opacity: 0;
        }

        .cuadro-gris {
            background-color: #2f2f2f;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            width: 100%;
            height: calc(100% - 100px);
            color: white;
        }

        .cuadro-gris .icono {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .cuadro-gris .texto-icono {
            font-size: 36px;
            text-align: center;
            font-family: 'Monse-Ligth', sans-serif;
            color: #ffffff;
            font-weight: 100;
        }

        .imagen-arriba {
            width: 100%;
            height: 98px;
            background-color: rgb(255, 0, 0);
        }

        /*ANIMACIONES DE OVERLAYS EN COLUMNAS*/

        /* Overlay blanco izquierda→derecha */
        .columna2::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.158);
            z-index: 2;
            pointer-events: none;
        }

        .columna2:hover::after {
            animation: overlay-left-right 1s forwards;
        }

        /* Overlay negro abajo hacia arriba */
        .columna2 .overlay-extra {
            position: absolute;
            left: 0;
            bottom: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.13);
            z-index: 3;
            pointer-events: none;
        }

        .columna2:hover .overlay-extra {
            animation: overlay-bottom-up 1s ease forwards;
            animation-delay: 0.6s;
        }

        /* Keyframes */
        @keyframes overlay-left-right {
            0% {
                left: -100%;
                opacity: 1;
            }

            50% {
                left: 0;
                opacity: 1;
            }

            100% {
                left: 0;
                opacity: 0;

            }
        }

        @keyframes overlay-bottom-up {
            0% {
                bottom: -100%;
                opacity: 1;
            }

            50% {
                bottom: 0;
                opacity: 1;
            }

            100% {
                bottom: 0;
                opacity: 0;

            }
        }


        /* --- 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 {
            width: 300px;
            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;
        }

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

        .slider-col {
            flex: 1;
            background-image: url('../recursos/servicios/foto_.png');
            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;
            opacity: 30%;
            transform: rotate(-90deg);
            margin-top: 50px;
        }

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

        /* Contenedor título y parrafo*/
        .title-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            align-items: flex-start;
            background-color: #2f2f2f00;
            padding-left: 150px;
            padding-right: 150px;
        }

        .title-row h1 {
            font-family: 'Monse-Ligth', sans-serif;
            font-size: 70px;
            color: #2f2f2f;
            text-transform: uppercase;
            font-weight: 100;
        }

        .title-row p {
            font-family: 'Monse-Regular', sans-serif;
            font-size: 24px;
            color: #555555;
            width: 60%;
        }

        /* Iconos de la parte inferior */
        .hero-content .extra {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .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 1 cards*/

        /* Contenedor de toda la pantalla */
        .servicios {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            height: auto;
            width: 100%;
            background-image: url('../recursos/servicios/cards/fondo_1.png');
            background-repeat: no-repeat;
            background-size: cover;
            padding: 40px;
            box-sizing: border-box;
            border-bottom: 1px solid #b4b4b4;
            overflow: hidden;
        }

        /* Cada tarjeta */
        .card {
            width: 100%;
            width: 500px;
            height: 750px;
            background: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            border-radius: 12px;
        }

        /* Encabezado con imagen + título */
        .card-header {
            position: relative;
            background-image: url('../recursos/servicios/cards/1/fondo_remp.png');
            padding: 150px 20px 20px;
            color: #fff;
            text-align: right;
            min-height: 310px;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        .card-img {
            position: absolute;
            top: 30px;
            left: -70px;
            width: 320px;
            height: 300px;
        }

        .card-img img {
            width: 100%;
            height: 100%;
        }

        .card-title {
            margin-left: 230px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card-title h3 {
            font-size: 25px;
            line-height: 1.4;
            margin: 0;
            color: #3b3b3b;
            font-family: 'Monse-SemiBold', sans-serif;
            font-weight: 100;
            text-align: left;
        }

        /* Cuerpo */
        .card-body {
            margin-top: 50px;
            padding: 35px 35px;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;
            padding-left: 40px;
            padding-right: 15px;
            margin-bottom: 20px;
        }

        ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 18px;
            color: #555555;
            font-family: 'Monse-Regular', sans-serif;
        }

        ul li img {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* Botón */
        .btn-servicio {
            background: #e74624;
            color: #fff;
            text-decoration: none;
            border: none;
            width: 330px;
            height: 50px;
            cursor: pointer;
            font-size: 15px;
            font-family: 'Monse-Regular', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s;
            transform: translateX(110px);
            overflow: hidden;
            border-radius: 5px;
            margin-top: 30px;
        }

        .btn-servicio img {
            padding-top: 5px;
            width: 20%;
            height: auto;
        }


        .btn-servicio:hover {
            background: #c53012;
        }

        /*Seccion 2 cards*/
        .servicios2 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            height: auto;
            width: 100%;
            background-image: url('../recursos/servicios/cards/fondo_2.png');
            background-repeat: no-repeat;
            background-size: 70% 50%;
            background-position: left center;
            padding: 40px;
            box-sizing: border-box;
            border-bottom: 1px solid #b4b4b4;
        }

        .card2 {
            width: 550px;
            height: 750px;
            background: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            border-radius: 12px;
        }

        /* Botón */
        .btn-servicio2 {
            background: #e74624;
            color: #fff;
            text-decoration: none;
            border: none;
            width: 330px;
            height: 50px;
            cursor: pointer;
            font-size: 15px;
            font-family: 'Monse-Regular', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s;
            transform: translateX(150px) translateY(20px);
            border-radius: 5px;
        }

        .btn-servicio2 img {
            padding-top: 5px;
            width: 20%;
            height: auto;
        }


        .btn-servicio2:hover {
            background: #c53012;
        }

        /* Botón 3*/
        .btn-servicio3 {
            background: #e74624;
            color: #fff;
            text-decoration: none;
            border: none;
            width: 330px;
            height: 50px;
            cursor: pointer;
            font-size: 15px;
            font-family: 'Monse-Regular', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s;
            transform: translateX(110px) translateY(40px);
            border-radius: 5px;
        }

        .btn-servicio3 img {
            width: 20%;
            height: auto;
        }


        .btn-servicio3:hover {
            background: #c53012;
        }

        /*Espacio titulo*/
        .espacio-titulo {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #b4b4b4;
        }

        .espacio-titulo h1 {
            font-family: 'Monse-Ligth', sans-serif;
            font-size: 50px;
            color: #2f2f2f;
            text-transform: uppercase;
            font-weight: 100;
            text-align: center;
        }

        /*SECCION CONTACTO*/
        #seccion_contacto {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            flex-direction: column;
        }

        .fila {
            flex: 1;
            width: 100%;
        }

        .fila-arriba {
            background: #fff;
            border-bottom: 1px solid #b4b4b4;
        }

        .fila-abajo {
            background: url('../recursos/servicios/cards/fondo_1.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top;
        }

        .formulario-contacto {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border: 1px solid #b4b4b4;
            width: 70%;
            max-width: 900px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            height: 450px;
            border-radius: 12px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .campo {
            display: flex;
            flex-direction: column;
        }

        .campo-full {
            grid-column: span 2;
            display: flex;
            flex-direction: column;
        }

        input,
        textarea {
            border: none;
            border-bottom: 1px solid #ccc;
            padding-bottom: 18px;
            font-size: 14px;
            outline: none;
            background: transparent;
        }

        textarea {
            min-height: 50px;
            resize: none;
        }

        .formulario-contacto button {
            margin-top: 20px;
            background: #e74c3c;
            color: #fff;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            cursor: pointer;
            float: right;
            transition: 0.3s;
            position: relative;
            font-size: 16px;
            font-family: 'Monse-Regular', sans-serif;
            font-weight: bold;
            width: 300px;
        }

        .formulario-contacto button:hover {
            background: #c0392b;
        }

        .formulario-contacto button img {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            /* lo centra verticalmente */
            width: 20%;
            height: auto;
        }

        /*Seccion antes del footer*/

        .antes_footer {
            display: flex;
            justify-content: left;
            align-items: center;
            height: 150px;
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #b4b4b4;
        }

        .antes_footer img {
            width: 300px;
            height: auto;
            margin-left: 400px;
        }

        /* Footer */
        /*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;
        }

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


        @media screen and (max-width: 1400px) {
            .hero-content {
                position: absolute;
                top: 50vh;
                left: 0;
                width: 80%;
                height: calc(100vh - 50vh);
                display: flex;
                flex-direction: column;
                justify-content: end;
                color: white;
                z-index: 20;
                background-color: rgba(238, 130, 238, 0);
            }

            /* Contenedor título y parrafo*/
            .title-row {
                display: flex;
                flex-direction: column;
                align-items: center;
                align-items: flex-start;
                background-color: #2f2f2f00;
                padding-left: 150px;
                padding-right: 150px;
            }

            .title-row h1 {
                font-family: 'Monse-Ligth', sans-serif;
                font-size: 70px;
                color: #2f2f2f;
                text-transform: uppercase;
                font-weight: 100;
            }

            .title-row p {
                font-family: 'Monse-Regular', sans-serif;
                font-size: 24px;
                color: #555555;
                width: 60%;
            }


        }

        @media(max-width:1100px) {

            .hero-content {
                width: 70%;
            }

            .title-row p {
                width: 100%;
            }

            .servicios,
            .servicios2 {
                flex-direction: column;
                gap: 40px;
                padding: 20px;
            }

        }



        @media (max-width: 768px) {

            /* --- GENERALES --- */
            body {
                overflow-x: hidden;
            }

            h1,
            h2,
            h3,
            p {
                text-align: center;
            }

            /* --- SECCIÓN 2 --- */

            .mi-seccion2 {
                height: 100%;
            }

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

            .fila-columnas {
                flex-direction: column;
                gap: 20px;
                overflow: hidden;
            }

            .overlay-extra {
                display: none !important;
            }

            .columna::before {
                display: none !important;
            }

            .columna::after {
                display: none !important;
            }

            .columna2::before {
                display: none !important;
            }

            .columna2::after {
                display: none !important;
            }

            .columna,
            .columna2 {
                min-height: 250px;
            }

            .cuadro-azul .texto-icono,
            .cuadro-gris .texto-icono {
                font-size: 22px;
            }

            /* --- HEADER / HERO --- */
            .hero {
                overflow: visible;
            }

            .hero-top {
                height: 70px;
                flex-direction: row;
                justify-content: space-between;
            }

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

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

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

            /* HERO SLIDER */
            #hero-slider {
                margin-top: 70px;
                height: 70%;
            }

            .hero-slider {
                flex-direction: column;
                height: 70%;
            }

            .slider-col {
                background-size: cover;
                min-height: 300px;
            }

            .icons-col {
                display: none;
            }

            .hero-content {
                width: 100%;
                position: relative;
                top: 50vh;
                padding: 20px;
            }

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

            .title-row h1 {
                font-size: 2rem;
                transform: none;
            }

            .title-row p {
                width: 100%;
                font-size: 1rem;
                transform: none;
            }

            .hero-content .extra {
                margin: 20px auto;
                justify-content: center;
            }

            /* --- MENÚ LATERAL --- */
            .side-menu {
                width: 100%;
                right: -100%;
            }

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

            .menu-btn h1 {
                display: none;
            }

            .menu-btn img {
                display: block;
            }

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

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

            /* --- SECCIÓN SERVICIOS --- */
            .servicios,
            .servicios2 {
                flex-direction: column;
                gap: 40px;
                height: auto;
                padding: 20px;
            }

            .card,
            .card2 {
                width: 100%;
                height: auto;
            }

            .card-body {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }

            .card-header {
                padding: 100px 20px 20px;
            }

            .card-img {
                position: relative;
                top: 0;
                left: 0;
                margin: 0 auto;
                width: 220px;
                height: auto;
            }

            .card-title {
                margin-left: 0;
                justify-content: center;
                margin-top: 20px;
            }

            .card-title h3 {
                font-size: 22px;
                text-align: center;
            }

            .btn-servicio,
            .btn-servicio2,
            .btn-servicio3 {
                width: 80%;
                transform: none;
                margin: 20px auto;

            }

            /* --- TÍTULO ESPACIO --- */
            .espacio-titulo {
                height: auto;
                padding: 30px 10px;
            }

            .espacio-titulo h1 {
                font-size: 32px;
            }

            /* --- CONTACTO --- */
            #seccion_contacto {
                height: 550px;
            }

            .formulario-contacto {
                width: 90%;
                height: auto;
                padding: 20px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .campo-full {
                grid-column: span 1;
            }

            .formulario-contacto button {
                width: 100%;
                float: none;
            }

            /* --- ANTES DEL FOOTER --- */
            .antes_footer {
                justify-content: center;
                height: auto;
                padding: 20px;
            }

            .antes_footer img {
                margin-left: 0;
                width: 200px;
            }

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

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

            .footer-columna .footer-texto p,
            h3 {
                text-align: left;
            }

            .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: 700px;
            }

        }


        @media (max-width: 420px) {

            .title-row {
                margin-top: 740px;
            }
        } */