/* @font-face{ font-family: NombreFont; src: url(fonts/NombreFont-Bold.otf); } */
:root {
    --color-blue-hard: #003d92;
    --color-dark-gray: #5b5b5d;
    --color-blue: #1d71b9;
}
/*=============================================================================
GENERAL
=============================================================================*/
body {
    overflow-x: hidden;
    position: relative;
}
html {
    overflow-x: hidden;
}
*::-moz-selection {
    background: var(--color-blue-hard);
    color: #fff;
    text-shadow: none;
}
*::selection {
    background: var(--color-blue-hard);
    color: #fff;
    text-shadow: none;
}
.bg-default {
    background-color: #eee;
    border: 1px solid #ddd;
}
.bg-default-02 {
    background-color: #ddd;
    border: 1px solid #ccc;
}
.text-black {
    color: #000;
}
.bg-cover-index {
    background-image: url("http://placehold.it/1920x1080");
}
/*=============================================================================
THANKS PAGE
=============================================================================*/
.thanks-page {
    height: 60vh;
}
.thanks-page img {
    width: 400px;
    max-width: 100%;
}
/*=============================================================================
NAVBAR
=============================================================================*/
.main-navbar {
    position: fixed; /* para que no se mueva al scrollear */
    top: 30px;
    left: 5%;
    right: 5%;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between; /* Empuja el logo a la izq. y el botón a la der. */
    align-items: center;
    background-color: white;
    padding: 10px 30px; /* Espaciado interno (vertical y horizontal) */
}

.navbar-logo {
    height: 50px;
}

.menu-button {
    background-color: #f37020; /* Tono de naranja similar al de la imagen */
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: none;
    padding: 12px 45px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-button:hover {
    background-color: #ea580c;
}

/* Estilos para offcanvas (menú desplazable) */
.offcanvas {
    background-color: #000;
    color: white;
    padding: 20px;
    margin-right: 30px;
}

.offcanvas-header {
    display: block; /* Anulamos el 'display: flex' de Bootstrap */
    text-align: center; /* Centramos su contenido (el botón) */
    padding-top: 60px;
}

.offcanvas .btn-close {
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    opacity: 1;
    padding: 5px;
    filter: none;
    transition: background-color 0.3s ease;
}

.offcanvas .btn-close:hover {
    background-color: #f37020;
}

.offcanvas .nav-item {
    margin-bottom: 5px; /* Espacio entre items del menu (inicio, quienes somos, ...) */
}

.offcanvas-body .nav-link {
    color: white;
    font-size: 16px;
    padding: 7px 0; /* Ajustamos el padding vertical */
    transition: color 0.3s ease;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link:focus {
    color: #ccc;
}

.offcanvas-body .nav-link span {
    margin-right: 15px;
    font-size: 22px;
}

.offcanvas-footer .footer-logo {
    height: 75px;
    opacity: 0.8;
}
/*=============================================================================
HOME
=============================================================================*/
.hero-section {
    position: relative;
    min-height: 100vh; /* Altura mínima del 95% del alto de la pantalla */
    background-image: url("/assets/images/img-home/business-people-working.jpg");
    background-size: 110%; /* La imagen cubre todo el contenedor */
    background-position: 50% 15%; /* La imagen se centra */
    background-repeat: no-repeat;
    /* Usamos flexbox para centrar verticalmente el contenido */
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 120px 0; /* Espaciado interno superior e inferior */
}

/* Capa oscura que va sobre la imagen para mejorar la legibilidad del texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Contenedor del contenido para que aparezca por encima de la capa oscura */
.hero-content-container {
    position: relative;
    z-index: 2;
}

.company-brand img {
    height: 120px;
    width: auto;
}

.hero-title {
    font-size: 50px;
    font-weight: bold;
    width: 450px;
}

.description-container {
    /* Necesario para posicionar el pseudo-elemento con respecto a este div */
    position: relative;
    background-color: rgba(0, 0, 0, 0.2); /* negro al 50% */
    padding: 15px 30px;
    margin-top: 50px;
}

.description-container::before {
    content: ""; /* Los pseudo-elementos siempre necesitan esto */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* --- Esta es la línea clave --- */
    /* Estira el lado derecho del fondo hasta el borde de la pantalla */
    right: calc((100% - 100vw) / 2);
    background-color: rgba(0, 0, 0, 0.5); /* Tu color de fondo */
    z-index: -1;
}

/* Estilos para el botón naranja personalizado */
.btn-custom-hero {
    background-color: #f37020; /* Tono de naranja tomado de la imagen */
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0px;
    transition: background-color 0.3s ease; /* Transición suave al pasar el cursor */
}

.btn-custom-hero:hover {
    background-color: #be5b19; /* Naranja un poco más oscuro en hover */
    color: #fff;
}

/* HOME - SERVICIOS (CARRUSEL) */
.services-home {
    padding-inline: 15rem;
}

.services-title-small {
    font-weight: 300;
    font-size: 18px;
    text-align: center;
}

.services-subtitle {
    color: #f37020;
    font-weight: bold;
    text-align: center;
}

.custom-carousel-container {
    background-color: #f07c28;
    border-radius: 0px;
    padding: 1rem 2.2rem;
    color: white;
}

.carousel-text-content {
    background-color: #f07c28; /* Este es un color naranja similar al de tu imagen */
    color: white;
    padding: 0.4rem 3rem; /* Espaciado interno para que el texto no se pegue a los bordes */
    height: 100%;
}

.carousel-text-content h3 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 1rem;
}

.carousel-text-content p {
    font-weight: 400;
    font-size: 15px;
}

/* Para que la imagen ocupe todo el alto y no se deforme */
.carousel-image {
    object-fit: cover;
    height: 100%;
}

/* Estilo personalizado para las flechas de navegación */
.custom-carousel-control {
    background-color: #262626; /* Un negro intenso y sólido */
    opacity: 1; /* Quitamos la transparencia por defecto de Bootstrap */
    width: 70px;
    height: 50px;
    border-radius: 0px;
    top: 50%;
    transform: translateY(-50%);
    /* Elimina el background-image por defecto de Bootstrap */
    background-image: none;
}

/* Mueve las flechas un poco hacia afuera */
.carousel-control-prev {
    left: -85px;
}

.carousel-control-next {
    right: -85px;
}

/* Estilo para el texto de la flecha (< o >) */
.custom-arrow {
    color: #f37020; /* ¡Aquí cambias el color a naranja! */
    font-size: 2rem; /* Haz las flechas más grandes si lo deseas */
    font-weight: bold; /* Si quieres que se vean más gruesas */
    line-height: 1; /* Ajusta la altura de línea para centrarlo mejor */
}

.custom-carousel-control span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* HOME - Quiénes Somos (ALIADOS) */
.us-home {
    background-image: url("/assets/images/img-home/girl-with-bag-of-beans.jpg"); /* <-- ¡IMPORTANTE! CAMBIA ESTA RUTA */

    /* 2. Asegúrate de que cubra toda la sección y esté centrada */
    background-size: 110%; /* La imagen cubre todo el contenedor */
    background-position: 50% 15%; /* La imagen se centra */
    background-repeat: no-repeat;

    /* 3. Dale una altura mínima para que la imagen se vea bien */
    min-height: 100vh;
}

/* Este es el cuadro de contenido oscuro de la izquierda */
.us-home .content-box {
    background-color: rgba(0, 0, 0, 0.75); /* Negro con 85% de opacidad */
    color: white;
    padding: 60px;
    margin-left: -12px;
}

.content-box .box-small-text {
    font-size: 15px;
    font-weight: 300;
    border-bottom: 1px solid white;
    margin-bottom: 5px;
}

.content-box .box-title {
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box .box-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.about-us-container {
    padding-right: 200px;
}

.about-us-text-small {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.about-us-title {
    color: #f37020;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-us-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.description-about-us-container {
    /* Necesario para posicionar el pseudo-elemento con respecto a este div */
    position: relative;
    background-color: #262626; /* negro al 50% */
    padding: 40px 200px 40px 0px;
    margin-top: 50px;
    color: white;
}

.description-about-us-container::before {
    content: ""; /* Los pseudo-elementos siempre necesitan esto */
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    /* --- Esta es la línea clave --- */
    /* Estira el lado izquierda del fondo hasta el borde de la pantalla */
    left: calc((100% - 100vw) / 2);
    background-color: #262626; /* Tu color de fondo */
    z-index: -1;
}

.description-about-us-container p {
    font-size: 21px;
    font-weight: bold;
}

.about-us-img {
    height: 300px;
    width: 500px;
    overflow: hidden;
    position: relative;
    right: 72px;
    z-index: 2;
}

.about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%; /* mueve el recorte verticalmente */
}

/* HOME - MISIÓN, VISIÓN Y VALORES */
.mision-text-container {
    padding-inline: 450px;
}

.mision-text-container p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.mision-text-container h2 {
    color: #f37020;
    font-weight: bold;
    margin-bottom: 10px;
}

.mision-cards-container {
    width: 80%; /* O el porcentaje que necesites */
    margin: 0 auto; /* Para centrar el contenedor */
    gap: 40px; /* Para el espacio entre cards */
}

.mision-card {
    border: 1px solid #525252;
    flex: 1;
    padding: 40px 20px;
}

.card-icon {
    width: 75px;
    height: 75px;
    object-fit: contain; /* Asegura que la imagen completa quepa sin estirarse */
    margin-bottom: 15px;
}

.mision-card h4 {
    color: #f37020;
    margin-bottom: 15px;
}

.mision-card p {
    font-size: 14px;
    font-weight: 400;
    color: #525252;
}

.mision-button button {
    background-color: #000000;
}

/* HOME - CONTACTO */
.contact-text-container p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.contact-text-container h2 {
    color: #f37020;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form-container {
    background-color: #000000;
    color: white;
    padding: 50px;
}

.contact-form-container p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-form {
    position: relative;
    background-color: #000000;
    z-index: 2;
}

.no-resize {
    resize: none;
}

.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0; /* quitamos el redondeo que agrega Bootstrap */
    color: white;
    padding-left: 0; /* quitamos el padding inicial para que se alinee */
}

.contact-form .form-control:focus {
    background-color: transparent;
    color: white;
    border-color: white;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: white;
    opacity: 1;
}

/*=============================================================================
Quienes somos
=============================================================================*/
.hero-section-us {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa todo el alto de la pantalla */
    overflow: hidden;
}

.hero-bg-us img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-us {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay semi-opaco */
}

.hero-content-us {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* espacio debajo del navbar flotante */
}

.logo-hero-us {
    max-width: 250px;
}

.hero-title-us {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.hero-box-container-us {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-box-us {
    background: rgba(0, 0, 0, 0.65); /* rectángulo semi-opaco */
    color: #fff;
    padding: 2rem;
    width: 100%;
    margin-right: 0;
    margin-left: 5%;
}

.parrafo-hero-box-us {
    font-weight: 600;
    font-size: 16px;
}

.titulo-bloque1 {
    font-weight: 700;
    font-size: 36px;
    color: #f37020;
}

.parrafo-bloque1 {
    font-weight: 400;
    font-size: 20px;
    color: black;
}

.razon {
    font-weight: 300;
    font-size: 18px;
    color: #000;
}

.overlay-box {
    background-color: rgba(0, 0, 0, 0.6);
    /*semiopaco*/
    color: #fff;
    max-width: 680px;
    min-height: 70%;
    display: flex;
    align-items: center;
    transform: translateY(-29%) !important;
}

.titulo-principal {
    font-size: 16px;
    font-weight: 300;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.subtitulo {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.primer-parrafo {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.segundo-parrafo {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

/*=============================================================================
Servicios
=============================================================================*/
.hero-section-services {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa todo el alto de la pantalla */
    overflow: hidden;
}

.hero-bg-services img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay semi-opaco */
}

.hero-content-services {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* espacio debajo del navbar flotante */
}

.logo-hero-services {
    max-width: 250px;
}

.hero-title-services {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    width: 70%;
}

.hero-box-container-services {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-box-services {
    background: rgba(0, 0, 0, 0.65); /* rectángulo semi-opaco */
    color: #fff;
    padding: 2rem;
    width: 100%;
    margin-right: 0;
    margin-left: 4%;
}

.parrafo-hero-box-services {
    font-weight: 600;
    font-size: 16px;
}

.titulo-bloque1 {
    font-weight: 700;
    font-size: 36px;
    color: #f37020;
}

.parrafo-bloque1 {
    font-weight: 400;
    font-size: 20px;
    color: black;
}

.razon {
    font-weight: 300;
    font-size: 18px;
    color: #000;
}

.overlay-box {
    background-color: rgba(0, 0, 0, 0.6);
    /*semiopaco*/
    color: #fff;
    max-width: 680px;
    min-height: 70%;
    display: flex;
    align-items: center;
    transform: translateY(-29%) !important;
}

.titulo-principal {
    font-size: 16px;
    font-weight: 300;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.subtitulo {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.primer-parrafo {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.segundo-parrafo {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.titulo-segunda-seccion-services {
    color: #f37020;
    font-weight: 700;
    font-size: 35px;
}

/*=============================================================================
Misión / Visión
=============================================================================*/
.hero-section-mision {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa todo el alto de la pantalla */
    overflow: hidden;
}

.hero-bg-mision img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-mision {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay semi-opaco */
}

.hero-content-mision {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* espacio debajo del navbar flotante */
}

.logo-hero-mision {
    max-width: 250px;
}

.hero-title-mision {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.hero-box-container-mision {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-box-mision {
    background: rgba(0, 0, 0, 0.65); /* rectángulo semi-opaco */
    color: #fff;
    padding: 2rem;
    width: 100%;
    margin-right: 0;
    margin-left: 5%;
}

.parrafo-hero-box-mision {
    font-weight: 600;
    font-size: 16px;
}

.description-mision-container-izquierda {
    /* Necesario para posicionar el pseudo-elemento con respecto a este div */
    position: relative;
    background-color: #262626; /* negro al 50% */
    padding: 40px 200px 40px 0px;
    margin-top: 50px;
    color: white;
}

.description-mision-container-izquierda::before {
    content: ""; /* Los pseudo-elementos siempre necesitan esto */
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: calc((100% - 100vw) / 2);
    background-color: #262626; /* Tu color de fondo */
    z-index: -1;
}

.description-mision-container-derecha {
    /* Necesario para posicionar el pseudo-elemento con respecto a este div */
    position: relative;
    background-color: #262626; /* negro al 50% */
    padding: 40px 0px 40px 200px;
    margin-top: 50px;
    color: white;
}

.description-mision-container-derecha::before {
    content: ""; /* Los pseudo-elementos siempre necesitan esto */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: calc((100% - 100vw) / 2);
    background-color: #262626; /* Tu color de fondo */
    z-index: -1;
}

.titulo-mision {
    font-size: 45px;
    font-weight: 700;
    color: #f37020;
}

.valores-swiper .carrusel {
    display: flex;
    justify-content: center;
    align-items: stretch; /* todas las cards tendrán misma altura */
}

.valores-swiper .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* título y texto hacia arriba */
    align-items: center; /* centra imagen y texto horizontalmente */
    width: 100%;
    max-width: 300px; /* controla ancho máximo */
    margin: 0 auto;
    background-color: black;
    padding: 20px;
}

/* Imagen centrada */
.valores-swiper .card img {
    margin-bottom: 20px;
    max-height: 80px;
    object-fit: contain;
}

/* Título */
.card-title {
    font-weight: 700;
    color: white;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}

/* Texto */
.card-text {
    font-size: 16px;
    color: white;
    font-weight: 400;
    text-align: center;
    flex-grow: 1; /* hace que el texto empuje hacia abajo si es corto/largo */
    display: flex;
    align-items: center; /* centra verticalmente el texto dentro del espacio */
}

.carrusel {
    height: 470px !important;
}

.nuestra-mision {
    color: #f5f5f5;
    font-size: 32px;
    font-weight: 700;
}

.parrafo-marketing {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
}

.nuestra-vision {
    color: #f5f5f5;
    font-size: 32px;
    font-weight: 700;
}

.parrafo-capacidad {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
}
/*=============================================================================
Contacto
=============================================================================*/
.hero-section-contacto {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa todo el alto de la pantalla */
    overflow: hidden;
}

.hero-bg-contacto img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-contacto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay semi-opaco */
}

.hero-content-contacto {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* espacio debajo del navbar flotante */
}

.logo-hero-contacto {
    max-width: 250px;
}

.hero-title-contacto {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    width: 70%;
}

.hero-box-container-contacto {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-box-contacto {
    background: rgba(0, 0, 0, 0.65); /* rectángulo semi-opaco */
    color: #fff;
    padding: 2rem;
    width: 100%;
    margin-right: 0;
    margin-left: 4%;
}

.parrafo-hero-box-contacto {
    font-weight: 600;
    font-size: 16px;
}
/*=============================================================================
Aviso de privacidad
=============================================================================*/
.hero-section-aviso-privacidad {
    position: relative;
    width: 100%;
    height: 110vh; /* Ocupa todo el alto de la pantalla */
    overflow: hidden;
}

.hero-bg-aviso-privacidad img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-aviso-privacidad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay semi-opaco */
}

.hero-content-aviso-privacidad {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* espacio debajo del navbar flotante */
}

.logo-hero-aviso-privacidad {
    max-width: 250px;
}

.hero-title-aviso-privacidad {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    width: 70%;
}

.hero-box-container-aviso-privacidad {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-box-aviso-privacidad {
    background: rgba(0, 0, 0, 0.65); /* rectángulo semi-opaco */
    color: #fff;
    padding: 2rem;
    width: 100%;
    margin-right: 0;
    margin-left: 4%;
}

.parrafo-hero-box-aviso-privacidad {
    font-weight: 600;
    font-size: 16px;
}

.titulo-privacidad-bloque1 {
    font-weight: 700;
    color: #f37020;
    font-size: 40px;
}

.parrafo-privacidad-bloque1 {
    font-weight: 400;
    font-size: 20px;
}

.subtitulo-privacidad-bloque1 {
    font-size: 20px;
    color: #f37020;
}
/*=============================================================================
FOOTER
=============================================================================*/
.footer-container {
    background-color: #000000;
    color: white;
    padding: 40px 100px;
}

.footer-container .logo-container img {
    height: 130px;
    width: auto;
}

.footer-container .logo-container h4 {
    width: 430px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
}

.footer-container .footer-text {
    padding-bottom: 15px;
}

.footer-container .footer-text-small {
    font-size: 12px;
}

.footer-navigation .nav-item {
    margin-bottom: 3px; /* Espacio entre items del menu (inicio, quienes somos, ...) */
}

.footer-navigation .nav-link {
    color: white;
    font-size: 15px;
    padding: 0.2rem 0; /* Ajustamos el padding vertical */
    transition: color 0.3s ease;
}

.footer-navigation .nav-link:hover,
.footer-navigation .nav-link:focus {
    color: #ccc;
}

.footer-navigation .nav-link span {
    margin-right: 10px;
    font-size: 22px;
}

.footer-terms-work p {
    font-size: 13px;
}

.social-icon {
    color: #000000;
    font-size: 24px;
    margin-right: 55px; /* Espacio entre los íconos */
    background-color: #ada6a6;
    border-radius: 50%;
    width: 40px; /* Ancho del círculo */
    height: 40px; /* Alto del círculo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    color: #000000;
}
/*=============================================================================
BLOG
=============================================================================*/
.blog-play-container {
    height: auto !important;
}
.bg-widget-cover.bg-mh {
    background-image: url("http://placehold.it/1920x500.png?text=1920x500.jpg");
    height: 500px;
}
.bg-widget-cover {
    background-position: center;
    background-size: cover;
}
.play-container {
    position: relative;
    height: 100%;
}
.play-container:hover .play-ico {
    opacity: 1;
    cursor: pointer;
}
.play-container:hover {
    cursor: pointer;
}
.play-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
    opacity: 0.5;
}
.img-blog {
    min-height: 800px;
    background-image: url("../img/Blog/header.jpg");
    background-position: center;
    background-size: cover;
}
.container-blog {
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
}
.i-text {
    background: #e2dede;
    border: none;
    border-radius: 10px;
    color: #757575;
    text-align: center;
    font-size: 12px;
    padding: 10px 40px;
    margin-right: 10px;
}
.bolder {
    font-weight: bolder !important;
}
.hr-blog {
    max-width: 15%;
    border: 1px solid #e2dede;
    -webkit-box-shadow: 0px 2px 3px #e2e2e2;
    box-shadow: 0px 2px 3px #e2e2e2;
}
.text-intblog {
    width: 100%;
    position: absolute;
    bottom: 10px;
}
.btn-blog {
    width: 100%;
    background: black;
    border: none;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
}
.btn-blog2 {
    background: black;
    border: none;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
}
.btn-blog3 {
    background: black;
    border: 1px solid #fff;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
    padding: 6px 50px;
    font-size: 16px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.btn-blog3:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
}
.text-initblogf {
    position: absolute;
    top: 30%;
    left: 30%;
}
.img-finalblog {
    background-image: url("../img/Blog/footer.jpg");
    background-position: center;
    background-size: cover;
}
.custom-dropdown > li > .dropdown-menu,
.dropdown-child {
    background-color: #333;
}
.dropdown-child > a {
    color: #fff;
}
.custom-dropdown > li > .dropdown-menu > .nav-link:hover,
.custom-dropdown > li > .dropdown-menu > .dropdown-item:hover,
.dropdown-child > a:hover {
    background-color: #222;
}
.dropdown-child > a:hover {
    color: #fff;
}
/*=============================================================================
MEDIA
=============================================================================*/
/* 3840 x 1080 */
@media (max-width: 3840px) {
    .hero-section-mision {
        height: 100vh;
    }

    .hero-section-contacto {
        height: 100vh;
    }

    .hero-section-services {
        height: 100vh;
    }

    .hero-box-services {
        width: 67%;
    }

    .hero-section-us {
        height: 100vh;
    }

    .hero-box-us {
        width: 67%;
    }
}

/* 1920 x 1080 */
@media (max-width: 1920px) {
    .hero-section-mision {
        height: 100vh;
    }

    .hero-section-contacto {
        height: 100vh;
    }

    .hero-section-services {
        height: 100vh;
    }

    .hero-section-us {
        height: 100vh;
    }

    .hero-box-us {
        width: 83%;
    }
}

/* 1600 x 900*/
@media (max-width: 1600px) {
    .social-icon {
        margin-right: 35px; /* Espacio entre los íconos */
    }
}

/* 1440 x 900 */
@media (max-width: 1440px) {
    .hero-box-mision {
        width: 95%;
    }

    .hero-box-contacto {
        width: 95%;
    }

    .hero-box-services {
        width: 95%;
    }

    .hero-box-us {
        width: 95%;
    }

    .social-icon {
        margin-right: 35px; /* Espacio entre los íconos */
    }
}

/* 1280 x 800 */
@media (max-width: 1280px) {
    .footer-container {
        padding: 40px 50px;
    }

    .footer-container .logo-container img {
        height: 115px;
    }

    .footer-container .logo-container h4 {
        font-size: 20px;
        width: 360px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-container .footer-text {
        padding-bottom: 14px;
    }

    .footer-container .footer-text-small {
        font-size: 11px;
    }

    .footer-navigation .nav-link {
        font-size: 14px;
        padding: 0.2rem 0; /* Ajustamos el padding vertical */
    }

    .footer-terms-work p {
        font-size: 12px;
    }

    .social-icon {
        font-size: 22px;
        margin-right: 25px; /* Espacio entre los íconos */
        width: 36px; /* Ancho del círculo */
        height: 36px; /* Alto del círculo */
    }

    .hero-section {
        background-size: 140%; /* La imagen cubre todo el contenedor */
        padding: 100px 0; /* Espaciado interno superior e inferior */
    }

    .company-brand img {
        height: 110px;
    }

    .hero-title {
        font-size: 40px;
        font-weight: bold;
        width: 450px;
    }

    .hero-section-mision {
        height: 120vh;
    }

    .hero-box-mision {
        width: 100%;
    }

    .hero-section-services {
        height: 120vh;
    }

    .hero-box-services {
        width: 100%;
    }

    .hero-section-us {
        height: 110vh;
    }

    .hero-box-us {
        width: 100%;
    }

    .services-home {
        padding-inline: 7rem;
    }

    .us-home {
        background-size: 120%; /* La imagen cubre todo el contenedor */
        /* background-position: 50% 15%;  La imagen se centra */
        /* 3. Dale una altura mínima para que la imagen se vea bien */
        min-height: 100vh;
    }

    .about-us-container {
        padding-right: 100px;
    }

    .about-us-text-small {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .about-us-title {
        color: #f37020;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .about-us-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
    }

    .description-about-us-container {
        padding: 40px 100px 40px 0px;
        margin-top: 50px;
    }

    .description-about-us-container p {
        font-size: 19px;
    }

    .about-us-img {
        height: 300px;
        width: 380px;
        right: 72px;
    }

    .mision-text-container {
        padding-inline: 270px;
    }

    .mision-text-container p {
        font-size: 15px;
    }

    .mision-cards-container {
        width: 85%; /* O el porcentaje que necesites */
    }

    .mision-card {
        border: 1px solid #525252;
        flex: 1;
        padding: 40px 20px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .mision-card h4 {
        font-size: 20px;
    }

    .mision-card p {
        font-size: 12px;
    }

    .mision-card li {
        font-size: 12px;
    }
}

/* 1024 x 800 */
@media (max-width: 1024px) {
    .card-text {
        font-size: 14px;
    }
    .carrusel {
        height: 450px !important;
    }

    .hero-section {
        min-height: 50vh;
        background-size: 170%; /* La imagen cubre todo el contenedor */
        padding: 120px 0; /* Espaciado interno superior e inferior */
    }

    .hero-section-mision {
        height: 95vh;
    }

    .hero-section-contacto {
        height: 95vh;
    }

    .hero-section-aviso-privacidad {
        height: 95vh;
    }

    .hero-section-services {
        height: 110vh;
    }

    .hero-title-services {
        margin-bottom: 30px;
    }

    .hero-box-services {
        width: 100%;
    }

    .hero-section-us {
        height: 100vh;
    }

    .hero-title-us {
        margin-bottom: 30px;
    }

    .hero-box-us {
        width: 100%;
    }

    .us-home {
        background-size: 120%; /* La imagen cubre todo el contenedor */
        /* background-position: 50% 15%;  La imagen se centra */
        /* 3. Dale una altura mínima para que la imagen se vea bien */
        min-height: 50vh;
    }
}

/* 990 x 1000 */
@media (max-width: 990px) {
    .parrafo-capacidad{
        text-align: center;
    }

    .nuestra-vision {
        text-align: center;
        margin-top: 20px;
    }

    .nuestra-mision {
        text-align: center;
    }

    .parrafo-marketing {
        text-align: center;
        margin-bottom: 20px;
    }

    .card-text-servicios {
        text-align: center;
    }

    .card-title-servicios {
        text-align: center;
    }

    .swiper {
        padding: 0 !important;
    }

    .cont-padre-card {
        width: 790 !important;
    }

    .hero-section {
        min-height: 50vh; /* Altura mínima del 95% del alto de la pantalla */
        background-size: 180%; /* La imagen cubre todo el contenedor */
        background-position: 50% 15%; /* La imagen se centra */
        padding: 110px 0; /* Espaciado interno superior e inferior */
    }

    .hero-section-mision {
        height: 95vh;
    }

    .hero-section-contacto {
        height: 95vh;
    }
    .hero-title-aviso-privacidad {
        font-size: 30px;
    }

    .hero-section-aviso-privacidad {
        height: 95vh;
    }

    .hero-title-services {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .hero-box-contacto {
        width: 85%;
    }

    .hero-box-aviso-privacidad {
        width: 85%;
    }

    .hero-section-services {
        height: 95vh;
    }

    .hero-box-services {
        width: 85%;
    }

    .hero-box-us {
        width: 85%;
    }

    .hero-title-us {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .hero-section-us {
        height: 95vh;
    }

    .titulo-principal {
        font-size: 12px;
    }

    .subtitulo {
        font-size: 15px;
    }

    .primer-parrafo {
        font-size: 14px;
    }

    .segundo-parrafo {
        font-size: 15px;
    }

    .footer-container {
        padding: 40px 25px;
    }

    .services-home {
        padding-inline: 5rem;
    }

    .carousel-text-content {
        padding: 0.4rem 0.8rem; /* Espaciado interno para que el texto no se pegue a los bordes */
        height: 100%;
    }

    .carousel-text-content h3 {
        font-weight: bold;
        font-size: 21px;
        margin-bottom: 1rem;
    }

    .carousel-text-content p {
        font-weight: 400;
        font-size: 12px;
    }

    .custom-carousel-control {
        width: 60px;
        height: 40px;
        border-radius: 0px;
        top: 50%;
    }

    /* Mueve las flechas un poco hacia afuera */
    .carousel-control-prev {
        left: -85px;
    }

    .carousel-control-next {
        right: -85px;
    }

    /* Estilo para el texto de la flecha (< o >) */
    .custom-arrow {
        font-size: 1.6rem; /* Haz las flechas más grandes si lo deseas */
        line-height: 1.4; /* Ajusta la altura de línea para centrarlo mejor */
    }

    .us-home {
        background-size: 150%; /* La imagen cubre todo el contenedor */
        background-position: 50% 15%; /* La imagen se centra */
        /* 3. Dale una altura mínima para que la imagen se vea bien */
        min-height: 50vh;
    }

    /* Este es el cuadro de contenido oscuro de la izquierda */
    .us-home .content-box {
        padding: 40px;
    }

    .content-box .box-small-text {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .content-box .box-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .content-box .box-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-us-img {
        height: 300px;
        width: 340px;
        right: 112px;
    }

    .mision-text-container {
        padding-inline: 180px;
    }

    .mision-cards-container {
        width: 100%; /* O el porcentaje que necesites */
    }
}

/* 767 x 414 */
@media (max-width: 768px) {
    .carrusel {
        height: 550px !important;
    }
    
    .hero-box-mision {
        width: 100%;
    }

    .hero-box-aviso-privacidad {
        width: 100%;
    }

    .hero-box-contacto {
        width: 100%;
    }

    .hero-box-services {
        width: 100%;
    }

    .hero-box-us {
        width: 100%;
    }

    .hero-section-contacto {
        height: 100vh;
    }

    .hero-section-services {
        height: 100vh;
    }

    .hero-section-us {
        height: 100vh;
    }

    .segundo-parrafo {
        font-size: 10px;
    }
    .primer-parrafo {
        font-size: 10px;
        margin-bottom: 10px !important;
    }
    .segunda-seccion {
        margin-top: 50px;
    }

    .titulo-principal {
        font-size: 12px;
    }

    .subtitulo {
        font-size: 12px;
        margin-bottom: 10px !important;
    }

    .overlay-box {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        max-width: 100%;
        min-height: 100%;
        transform: none !important;
        padding: 20px !important;
        justify-content: center !important;
        text-align: center;
    }
}

/* 576 x 320 */
@media (max-width: 576px) {
    .titulo-segunda-seccion-services {
        font-size: 25px;
    }

    .lista-card {
        font-size: 14px;
    }

    .parrafo-hero-box-mision {
        font-size: 14px;
    }

    .hero-title-mision {
        font-size: 30px;
    }

    .titulo-mision {
        font-size: 35px;
    }

    .imagen-izquierda {
        margin-bottom: 20px;
    }

    .parrafo-marketing {
        text-align: center;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .parrafo-capacidad {
        text-align: center;
        font-size: 12px;
    }

    .nuestra-vision {
        text-align: center;
        font-size: 25px;
    }

    .nuestra-mision {
        text-align: center;
        font-size: 25px;
    }

    .hero-section {
        height: 65vh; /* Altura mínima del 95% del alto de la pantalla */
        background-size: 300%; /* La imagen cubre todo el contenedor */
        background-position: 50% 15%; /* La imagen se centra */
        padding-top: 180px; /* Espaciado interno superior e inferior */
    }

    .company-brand img {
        height: 80px;
        width: auto;
    }

    .hero-title {
        font-size: 26px;
        font-weight: bold;
        width: 100%;
    }

    .description-container {
        /* Necesario para posicionar el pseudo-elemento con respecto a este div */
        position: relative;
        background-color: rgba(0, 0, 0, 0.2); /* negro al 50% */
        padding: 15px 30px;
        margin-top: 0px;
    }
    .description-container p {
        font-size: 12px;
    }

    .btn-custom-hero {
        padding: 10px 30px;
        font-size: 14px;
    }

    .hero-section-aviso-privacidad {
        height: 100vh;
    }

    .parrafo-hero-box-aviso-privacidad {
        font-size: 14px;
    }

    .hero-box-aviso-privacidad {
        margin-left: 0;
    }

    .logo-hero-aviso-privacidad {
        max-width: 200px;
    }

    .hero-title-aviso-privacidad {
        font-size: 20px;
        margin-bottom: 0;
        width: 100%;
    }

    .parrafo-hero-box-contacto {
        font-size: 14px;
    }

    .hero-box-contacto {
        margin-left: 0;
    }

    .logo-hero-contacto {
        max-width: 200px;
    }

    .hero-title-contacto {
        font-size: 20px;
        margin-bottom: 0;
        width: 100%;
    }

    .parrafo-hero-box-services {
        font-size: 14px;
    }

    .hero-box-services {
        margin-left: 0;
    }

    .logo-hero-services {
        max-width: 200px;
    }

    .hero-title-services {
        font-size: 20px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-box-us {
        margin-left: 0;
    }

    .logo-hero-us {
        max-width: 200px;
    }

    .hero-title-us {
        font-size: 20px;
        margin-bottom: 0;
    }

    .offcanvas {
        margin-right: 0px;
    }

    .menu-button {
        font-size: 14px;
        padding: 8px 30px;
    }

    .footer-container {
        padding: 40px 10px;
    }

    .footer-container .logo-container img {
        height: 100px;
    }

    .footer-container .logo-container h4 {
        font-size: 18px;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-container .footer-text {
        font-size: 14px;
        padding-bottom: 14px;
    }

    .footer-container .footer-text-small {
        font-size: 10px;
    }

    .social-icon {
        font-size: 24px;
        margin-right: 30px; /* Espacio entre los íconos */
        width: 40px; /* Ancho del círculo */
        height: 40px; /* Alto del círculo */
    }

    .services-home {
        padding-inline: 0rem;
    }

    .services-title-small {
        font-size: 16px;
        text-align: center;
    }

    .services-subtitle {
        color: #f37020;
        font-weight: bold;
        text-align: center;
    }

    .custom-carousel-control {
        width: 40px;
        height: 40px;
        top: 50%;
    }

    /* Mueve las flechas un poco hacia afuera */
    .carousel-control-prev {
        left: -40px;
    }

    .carousel-control-next {
        right: -40px;
    }

    /* Estilo para el texto de la flecha (< o >) */
    .custom-arrow {
        font-size: 1.4rem; /* Haz las flechas más grandes si lo deseas */
        line-height: 1.4; /* Ajusta la altura de línea para centrarlo mejor */
    }

    .carousel-text-content {
        padding: 0.4rem 0rem; /* Espaciado interno para que el texto no se pegue a los bordes */
        height: 100%;
    }

    .carousel-text-content h3 {
        font-size: 18px;
        margin-bottom: 0.6rem;
    }

    .carousel-text-content p {
        font-weight: 400;
        font-size: 12px;
    }

    .us-home {
        background-size: 220%; /* La imagen cubre todo el contenedor */

        /* 3. Dale una altura mínima para que la imagen se vea bien */
    }

    /* Este es el cuadro de contenido oscuro de la izquierda */
    .us-home .content-box {
        background-color: rgba(0, 0, 0, 0.65); /* Negro con 85% de opacidad */
        margin-left: 0px;
    }

    .about-us-container {
        padding-right: 0px;
        text-align: center;
    }

    .about-us-text-small {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .about-us-title {
        color: #f37020;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .about-us-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
        text-align: start;
    }

    .description-about-us-container {
        padding: 20px 20px 20px 20px;
        margin-top: 20px;
    }

    .description-about-us-container::before {
        content: ""; /* Los pseudo-elementos siempre necesitan esto */
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        /* --- Esta es la línea clave --- */
        /* Estira el lado izquierda del fondo hasta el borde de la pantalla */
        left: calc((100% - 100vw) / 2);
        background-color: #262626; /* Tu color de fondo */
        z-index: -1;
    }

    .description-about-us-container p {
        font-size: 18px;
        font-weight: bold;
    }

    .about-us-img {
        height: 200px;
        width: 100%;
        right: 0px;
    }

    .mision-cards-container {
        width: 90%;
        flex-direction: column; /* Apila las cards verticalmente */
        gap: 20px; /* Reducimos el espacio entre cards para móvil */
    }

    .mision-card img {
        display: block;
        margin: 0 auto;
    }

    .mision-card h4 {
        text-align: center;
    }

    /* Ajustamos el texto principal para que no tenga tanto padding en los lados */
    .mision-text-container {
        padding-inline: 20px;
    }

    .mision-card p {
        font-size: 14px;
    }

    .mision-card li {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 35px;
    }

    .contact-form-container p {
        font-size: 14px;
    }

    .contact-form .form-control {
        font-size: 14px;
    }

    .contact-form .form-control::placeholder {
        font-size: 14px;
    }
}

/* 375 x 320 */
@media (max-width: 375px) {
    .titulo-mision {
        font-size: 35px;
    }

    .imagen-izquierda {
        margin-bottom: 20px;
    }

    .parrafo-marketing {
        text-align: center;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .parrafo-capacidad {
        text-align: center;
        font-size: 12px;
    }

    .nuestra-vision {
        text-align: center;
        font-size: 25px;
    }

    .nuestra-mision {
        text-align: center;
        font-size: 25px;
    }

    .parrafo-hero-box-mision {
        font-size: 12px;
    }

    .hero-title-mision {
        font-size: 25px;
    }

    .swiper {
        padding: 0 !important;
    }

    .hero-section {
        height: 85vh; /* Altura mínima del 95% del alto de la pantalla */
        background-size: 300%; /* La imagen cubre todo el contenedor */
        background-position: 50% 15%; /* La imagen se centra */
        padding-top: 165px; /* Espaciado interno superior e inferior */
    }

    .logo-hero-aviso-privacidad {
        max-width: 185px;
    }

    .parrafo-hero-box-aviso-privacidad {
        font-size: 12px;
    }

    .hero-section-aviso-privacidad {
        height: 75vh;
    }

    .logo-hero-contacto {
        max-width: 185px;
    }

    .parrafo-hero-box-contacto {
        font-size: 12px;
    }

    .hero-section-contacto {
        height: 90vh;
    }

    .logo-hero-services {
        max-width: 185px;
    }

    .parrafo-hero-box-services {
        font-size: 12px;
    }

    .hero-section-services {
        height: 90vh;
    }

    .logo-hero-us {
        max-width: 185px;
    }

    .parrafo-hero-box-us {
        font-size: 12px;
    }

    .hero-section-us {
        height: 90vh;
    }

    .hero-section-aviso-privacidad {
        height: 90vh;
    }
}

/* 320 x 320 */
@media (max-width: 320px) {
    .hero-section-mision {
        height: 135vh;
    }

    .hero-section-contacto {
        height: 95vh;
    }

    .hero-section-aviso-privacidad {
        height: 115vh;
    }

    .logo-hero-us {
        max-width: 170px;
    }

    .hero-title-us {
        font-size: 16px;
    }

    .hero-section-us {
        height: 100vh;
    }

    .hero-title-services {
        font-size: 16px;
    }

    .hero-section-services {
        height: 100vh;
    }

    .imagen-segunda-seccion {
        height: 50vh;
    }
}
/*
	@media( max-width: 1920px ) {}
	@media( max-width: 1600px ) {}
	@media( max-width: 1440px ) {}
	@media( max-width: 1366px ) {}
	@media( max-width: 1280px ) {}
	@media( max-width: 1024px ) {}
	@media( max-width: 736px ) {}
	@media( max-width: 667px ) {}
	@media( max-width: 640px ) {}
	@media( max-width: 568px ) {}
*/
