/* @font-face{ font-family: NombreFont; src: url(fonts/NombreFont-Bold.otf); } */
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,600;0,700;1,600;1,700&family=Rubik:ital,wght@0,400;1,400&display=swap");

/* =============================================================================
   CONFIGURACIÓN DE TIPOGRAFÍAS GLOBALES (FIGMA)
   ============================================================================= */

/* Línea Rosa: Título Principal "Sobre Nosotros" */
.font-title-main {
    font-family: "Exo", sans-serif;
    font-weight: 700; /* Bold 700 */
}

/* Línea Verde: Subtítulo de la cabecera "Más que entregas..." y Línea Naranja: Párrafos descriptivos */
.font-text-rubik {
    font-family: "Rubik", sans-serif;
    font-weight: 400; /* Regular 400 */
}

/* Línea Azul: Pequeño encabezado "— Quiénes Somos" */
.font-subtitle-tag {
    font-family: "Exo", sans-serif;
    font-weight: 600; /* Semibold 600 */
}

/* Línea Roja: Título "Ayudamos a implementar soluciones" */
.font-title-section {
    font-family: "Exo", sans-serif;
    font-weight: 600; /* Semibold 600 */
}

:root {
    --color-blue-hard: #003d92;
    --color-dark-gray: #5b5b5d;
    --color-blue: #1d71b9;

    --dark-blue: #0b2f46;
    --light-blue: #1b85c1;
    --orange-custom: #f39c12;
}
/*=============================================================================
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
=============================================================================*/
/* -- Barra Superior (Contacto y Redes) -- */
.nav-1st {
    background-color: #195a80;
}

.top-bar-text {
    color: #ffffff;
    font-size: 15px;
}

.social-top a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.social-top a:hover {
    opacity: 0.7;
}

/* -- Barra Inferior (Logo y Menú) -- */
.nav-logo-section {
    background-color: #002840;
}

@media (min-width: 768px) {
    .nav-logo-section {
        border-right: 25px solid #1b89c9;
    }
}

.nav-logo {
    width: 160px; /* Ajusta este valor si necesitas el logo más grande o chico */
    margin-right: 15px;
}

/* -- Enlaces del Menú -- */
.navbar-nav .nav-link {
    color: #002840 !important; /* Gris oscuro / Negro */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0%;
    line-height: 24.8px;
    padding-bottom: 0.2rem !important; /* Da espacio para la línea inferior */
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1b89c9 !important; /* Azul corporativo al pasar el mouse */
}

/* -- Estilo de enlace activo (La línea amarilla/naranja rota) -- */
.navbar-nav .active-link {
    color: #1b89c9 !important; /* Resalta el texto activo */
    font-weight: bold !important;
}

.navbar-nav .active-link::before {
    content: "";
    position: absolute;
    left: 8px; /* Ajuste para alinear con el texto, puedes modificarlo */
    bottom: 0;
    width: 10px;
    height: 2px;
    background-color: #f49600; /* Color naranja/amarillo de la línea */
}

.navbar-nav .active-link::after {
    content: "";
    position: absolute;
    left: 22px; /* Separación de la primera línea */
    bottom: 0;
    width: 34px;
    height: 2px;
    background-color: #f49600; /* Color naranja/amarillo de la línea */
}
/*=============================================================================
HOME
=============================================================================*/
/*====================== PRIMERA SECCIÓN =========================*/
.hero-section {
    min-height: 80vh; /* Asegura un buen tamaño en pantalla */
    background: linear-gradient(to right, #fff 76%, #195a80 76%);
    position: relative;
    overflow: hidden;
}

/* Puntitos de fondo (opcional, ajusta opacidad o tamaño) */
.dots-bg {
    width: 300px;
    position: absolute;
    top: -150px;
    left: -5px;
}

.hero-slider-controls {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-carousel-subtitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #1f242e;
    margin-bottom: 15px;
}

.hero-carousel-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 68px;
    letter-spacing: 0%;
    color: #002840;
    margin-bottom: 15px;
}

.hero-carousel-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #1f242e;
    margin-bottom: 25px;
}

/* Colores Generales */
.text-dark-custom {
    color: #002840;
}
.bg-blue-custom {
    background-color: #195a80;
} /* Azul del bloque derecho */

/* Botón Naranja Principal */
.btn-orange-hero {
    background-color: #f49600;
    border: none;
    border-radius: 2px;
    width: 210px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 3%;
    text-align: center;
    padding: 15px 20px;
    color: white;
}

.btn-orange-hero:hover {
    background-color: #d68910;
    color: white;
    transform: translateY(-2px);
}

/* -- Botones Redondos del Carrusel -- */
.custom-slider-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.custom-slider-btn:hover {
    opacity: 0.8;
}

/* Colores específicos de los botones del diseño */
.btn-prev {
    background-color: #af5800;
} /* Tono marrón/naranja oscuro */
.btn-next {
    background-color: #f4960070;
    color: #5d3410;
} /* Tono naranja clarito */

/* -- COMPOSICIÓN DE IMÁGENES -- */
.image-composition-wrapper {
    position: relative;
}

/* Imagen rectangular principal */
.main-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 5; /* Mantiene la proporción vertical */
    border-radius: 4px;
    text-align: end;
    padding-right: -200px;
}

/* Imagen circular superpuesta */
.circle-hero-img {
    position: absolute;
    z-index: 2;
    width: 450px; /* La mitad del tamaño del contenedor */
    aspect-ratio: 1 / 1; /* La hace perfectamente cuadrada antes de redondearla */
    object-fit: cover;
    border-radius: 50%;
    top: 30%;
    left: -20%;
    transform: translateY(-50%);
}

/* Tarjeta de Contacto Flotante */
.floating-contact-card {
    border-radius: 4px;
    bottom: 150px;
    left: -130px;
    border-radius: 8px;
    min-width: 250px;
    background-color: white;
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 20px;
}

.contact-card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
    color: #000000;
}

.contact-card-number {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000000;
}

.hero-custom-width {
    width: 85%;
}

/*====================== SEPARADOR =========================*/
.bg-navy-blue {
    background-color: #002840;
}

.separator-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator-logo {
    width: 270px;
    height: auto;
}

/*====================== SEGUNDA SECCIÓN =========================*/
.best-option-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
}

.best-option-subtitle {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0%;
    color: #002840;
    margin-bottom: 20px;
}

.best-option-muted {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: justify;
    color: #717580;
    width: 65%;
}

.feature-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: 0%;
    color: #1f242e;
    margin-bottom: 10px;
}

.feature-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: justify;
    color: #717580;
}

.custom-width {
    width: 90%;
}

.img-delivery-container {
    position: relative;
    height: 100%;
    overflow: visible;
}

.img-delivery-container img {
    width: 190%;
    height: auto;
    object-fit: cover;
    transform: translateX(-15%);
}

.line-dark {
    display: inline-block;
    width: 25px;
    height: 1.5px;
    background-color: #000000;
}

.btn-circle-contact {
    transition: opacity 0.3s ease;
}

.btn-circle-contact:hover {
    opacity: 0.8;
}

.btn-contact-us {
    font-weight: 600;
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: 0%;
    color: #1f242e;
    margin-left: 10px;
}

.circle-icon {
    width: 55px;
    height: 55px;
    background-color: #f39c12;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.circle-icon i {
    transform: rotate(-45deg);
}

/* -- Iconos de la lista (Lado Izquierdo) -- */
.feature-icon img {
    width: 50px;
    height: auto;
}

/* -- Cuadro Azul Flotante (Lado Derecho) -- */
.blue-overlay-box {
    background-color: #54a7d7; /* Tu azul turquesa */
    position: absolute;
    z-index: 10000;
    padding: 10px;
    bottom: 10%; /* Lo separa un poco del fondo de la imagen */
    left: 15px; /* Por defecto en móviles se queda dentro de la imagen */
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px 20px 15px 20px;
    border-radius: 5px;
}

.blue-box-title {
    font-weight: 600;
    font-size: 44px;
    line-height: 59px;
    letter-spacing: 0%;
}

.blue-box-sub {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
}

.blue-box-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
    margin-top: 10px;
}

/* En pantallas de computadora (lg), sacamos el cuadro hacia la izquierda */
@media (min-width: 992px) {
    .blue-overlay-box {
        left: -70px; /* Margen negativo para que monte sobre el contenido blanco */
    }
}

/*====================== TERCERA SECCIÓN =========================*/
.need-card {
    background-color: #ffffff;
    padding: 50px 20px; /* Da el espacio en blanco arriba y abajo del texto */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06); /* Sombra súper suave y difuminada */
    border-radius: 4px; /* Bordes muy sutilmente redondeados */
    height: 100%; /* Asegura que todas las cajas midan lo mismo si el texto varía */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Preparación para el hover */
}

/* Opcional: Un pequeño efecto al pasar el mouse para que se vea más interactivo */
.need-card:hover {
    transform: translateY(-5px); /* Se levanta un poquito */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1); /* La sombra se hace un poquito más fuerte */
}

.need-product {
    font-weight: 600;
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: 0%;
    text-align: center;
    color: #1f242e;
    margin-bottom: 15px;
}

.btn-need-orange {
    background-color: #f49600;
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 24.8px;
    letter-spacing: 0%;
    text-decoration: none;
    padding: 8px 30px 8px 30px;
    transition: background-color 0.3s ease;
}

.btn-need-orange:hover {
    background-color: #d68910; /* Un naranja ligeramente más oscuro al pasar el mouse */
    color: white;
}

.icon-headphones {
    background-color: #1b89c9;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}
/*====================== CUARTA SECCIÓN =========================*/
.text-dark-custom {
    color: #002840;
}

/* Línea pequeña del encabezado */
.line-dark {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #002840;
}

.home-services-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
    color: #002840;
    text-transform: uppercase;
}

.home-services-subtitle {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0%;
    color: #002840;
}

/* Borde sutil entre filas */
.border-light-custom {
    border-bottom: 1px solid #eaecee !important;
}

/* -- ESTILOS BASE DE LA FILA (INACTIVA) -- */
.service-row {
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-row-num {
    font-weight: 600;
    font-size: 34px;
    line-height: 38.8px;
    letter-spacing: 0%;
    transition: color 0.3s ease;
    color: #000000;
}

.service-row-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: 0%;
    color: #1f242e;
    transition: color 0.3s ease;
}

.service-row-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #717580;
    transition: color 0.3s ease;
}

/* Ocultar la imagen por defecto */
.service-float-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(
        -50%
    ); /* Centra la imagen verticalmente respecto a su fila */
    width: 280px;
    height: 300px;
    object-fit: cover;
    border: 8px solid white; /* Borde blanco grueso del diseño */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Sombra elegante */
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* -- ESTILOS DE LA FILA (ACTIVA) -- */
.service-row:hover {
    background-color: #1b89c9; /* Azul principal */
    border-color: transparent !important; /* Quita la línea de abajo cuando está activo */
}

/* Al estar activo, todos los textos se vuelven blancos */
.service-row:hover .service-row-num,
.service-row:hover .service-row-title,
.service-row:hover .service-row-desc {
    color: #ffffff !important;
}

/* Muestra la imagen cuando la fila está activa */
.service-row .service-float-img {
    opacity: 1;
    visibility: visible;
}

/*====================== QUINTA SECCIÓN =========================*/
.bg-turquesa {
    background-color: #54a7d7;
}

.clients-title {
    color: white;
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
}

.clients-subtitle {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0%;
}

/* Líneas blancas a los lados de la palabra "Clientes" */
.linea-blanca {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
}

/* -- Tarjetas Estructura -- */
.cliente-card {
    border-radius: 0px 0px 15px 15px;
    overflow: hidden; /* Corta los bordes para que las imágenes superiores respeten las esquinas redondas */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.cliente-card:hover {
    transform: translateY(-5px); /* Efecto sutil al pasar el mouse */
}

/* Altura fija para la parte de la imagen para que todas queden iguales */
.card-top {
    height: 320px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-top.bg-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.56) 4.61%,
        rgba(153, 153, 153, 0.56) 104.61%
    );
    z-index: 1;
}

.card-client-img {
    width: 600px;
    height: auto;
    position: relative;
    z-index: 0;
}

.social-overlay {
    position: absolute;
    z-index: 2;
    opacity: 0; /* Los hace transparentes */
    visibility: hidden; /* Evita que se les pueda hacer clic accidentalmente cuando no se ven */
    transform: translateY(15px); /* Los empuja un poquito hacia abajo */
    transition: all 0.3s ease-in-out; /* Hace que la aparición sea suave y animada */
}

.cliente-card:hover .social-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Los regresa a su posición original, creando un efecto de subida */
}

/* -- Elementos interiores -- */
.card-bottom {
    border-top: 1px solid #f2f2f2; /* Línea muy sutil separadora por si la de arriba es blanca */
}

.card-client-text-1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
}

.card-client-text-muted {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
}

.rotated-arrow {
    transform: rotate(45deg);
}

/* Botón flecha amarillo/naranja */
.btn-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #fde073; /* Amarillo del diseño */
    color: #002840; /* Flecha azul oscuro */
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-arrow i {
    transform: rotate(-45deg); /* Rota la flecha para apuntar en diagonal */
    font-size: 0.9rem;
}

.btn-arrow:hover {
    background-color: #f39c12; /* Naranja al hacer hover */
    color: white;
}

/* Redes sociales sobre la imagen (Tarjeta 2) */
.social-circle {
    width: 26px;
    height: 26px;
    background-color: white;
    color: #666;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
}

.social-circle:hover {
    background-color: #195a80;
    color: white;
}

.testimonial-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:8px;
}

.testimonial-card{
    background:#fff;
    border-radius:10px;
    padding:35px 28px;
    height:360px;
    display:flex;
    flex-direction:column;
    justify-content: center;
    gap: 30px;
}

.testimonial-card p{
    color:#717580;
    font-family: "Rubik";
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: justify;
}

.testimonial-card h5{
    color: #000;
    font-family: "Exo";
    font-weight: 600;
    font-size: 20px;
    line-height: 24.8px;
    letter-spacing: 0%;
}

.testimonial-card span{
    color:#808080;
    font-size:14px;
}

.stars{
    display:inline-block;
    background:#F5A000;
    color:white;
    padding:3px 15px;
    border-radius:50px;
    width:fit-content;
    font-size:20px;
    letter-spacing:5px;
}

.testimonial-prev,
.testimonial-next{
    width:38px;
    height:38px;
    border-radius:50%;
    background:white;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    box-shadow: 2px 2px 10px 0px #00000026;
}

.testimonial-prev{
    left:-10px;
}

.testimonial-next{
    right:-10px;
}

.testimonial-prev i,
.testimonial-next i{
    color: #717580;
}

.testimonialSwiper{
    overflow:hidden;
}

/*====================== SEXTA SECCIÓN =========================*/
/* Fondo para que las tarjetas resalten */
.bg-light {
    background-color: #fafbfc !important; /* Un gris muy muy suave casi blanco */
}

/* Tarjetas blancas con sombra */
.contact-card {
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04); /* Sombra difuminada muy elegante */
    background-color: white;
}

.contact-card-img {
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
}

.contact-card-img img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center 75% !important;
}

/* Títulos principales de las tarjetas */
.contact-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 37.5px;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Textos grises secundarios */
.contact-text-1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #717580;
    margin-bottom: 20px;
}

.need-help {
    font-size: 16px;
    font-weight: 600;
    color: #717580;
}

.need-help-number {
    font-size: 22px;
    font-weight: 600;
    color: #1f242e;
}

.follow-us-text {
    font-size: 16px;
    font-weight: 600;
    color: #f49600;
}

/* -- ESTILOS DEL FORMULARIO -- */
.text-muted-contact {
    font-size: 16px;
    font-weight: 400;
    color: #717580;
}

.custom-input {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    box-shadow: none !important; /* Quita el glow azul de Bootstrap */
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    border-color: #f39c12; /* Borde naranja al hacer clic en el input */
}

/* -- ESTILOS NARANJA (Redes, Líneas y Botón) -- */
.text-orange {
    color: #f39c12;
}

.line-orange {
    display: inline-block;
    width: 45px;
    height: 1.1px;
    background-color: #f39c12;
}

.social-orange a {
    color: #f39c12;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.social-orange a:hover {
    opacity: 0.6;
}

.btn-orange {
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #d68910; /* Un naranja ligeramente más oscuro al pasar el mouse */
    color: white;
}
/*=============================================================================
FOOTER
=============================================================================*/
.bg-footer {
    background-color: #002840;
    color: white;
    padding-top: 100px;
    padding-bottom: 20px;
}

/* Estilos de los Títulos y la línea rota (— —) */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 2rem;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 2px;
    background-color: white;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: white;
}

/* Enlaces de las listas */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-link-bottom {
    color: rgba(255, 255, 255, 0.85); /* Blanco ligeramente apagado */
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-link-bottom:hover {
    color: white;
}

/* Texto genérico grisáceo/azulado claro */
.text-muted-custom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-text-2 {
    font-size: 16px;
    font-size: 400;
    color: white;
    margin-bottom: 10px;
}

/* Caja de la derecha */
.footer-box {
    background-color: rgba(
        255,
        255,
        255,
        0.03
    ); /* Un poco de luz sobre el fondo oscuro */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde sutil casi invisible */
    width: 60%;
    border-radius: 6px;
    padding: 25px 30px 25px 30px;
}

.footer-box img {
    width: 260px;
    height: auto;
    margin-bottom: 10px;
}

/* Iconos de redes sociales */
.social-icons a {
    color: white;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Línea divisoria del fondo */
.footer-divider {
    color: rgba(228, 228, 228, 0.33);
}

.copyright-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-decoration: none;
    color: white;
}
/*=============================================================================
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;
}

/*=============================================================================
US O NOSOTROS
=============================================================================*/
.bg-blue-section {
    background-color: #1b85c1 !important; /* Mantiene el fondo azul original */
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}
.tracking-wide {
    letter-spacing: 2px;
}

/* =============================================================================
   ESTILOS GENERALES DEL ENCABEZADO (Efecto de texto Outline de fondo)
   ============================================================================= */
.text-bg-outline {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(21, 114, 182, 0.15); /* Borde gris/azul sutil */
    white-space: nowrap;
    z-index: 1;
    user-select: none;
}

.header-real-content {
    position: relative;
    z-index: 2; /* Encima del texto gigante */
}

/* =============================================================================
   BLOQUE 1: REPARTIDOR Y COMPLEMENTOS (Alineación y capas corregidas)
   ============================================================================= */

.wrapper-image-decorations {
    height: 100%;
    position: relative;
}

.img-about-fit {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

/* CONTENEDOR PADRE DEL BADGE: Pegado al ras izquierdo */
.badge-floating-respaldo {
    position: absolute;
    bottom: 100px; /* Pegado al fondo de la imagen */
    left: 0; /* CORREGIDO: Totalmente al ras del borde izquierdo */
    width: 200px;
    z-index: 10;
}

/* TARJETA BLANCA: Recibe un margen superior interno para no encimarse con el ícono */
.badge-text-content {
    padding: 30px 20px 20px 20px; /* Espacio calibrado para el texto */
    position: relative;
    z-index: 11; /* Por debajo del ícono azul, pero al frente de la imagen */
}

/* ÍCONO AZUL: Rompe el borde superior y se posiciona encima de la tarjeta blanca */
.icon-respaldo-cuadrado {
    width: 45px;
    height: 45px;
    background-color: #1b85c1 !important; /* Tu azul característico */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Posicionamiento absoluto sobre la tarjeta blanca */
    position: absolute;
    top: -22px; /* CORREGIDO: Sube a la mitad del borde superior de la caja blanca */
    left: 20px; /* Separación estética desde la izquierda interna */
    z-index: 12; /* CAPA SUPERIOR: Queda completamente visible por encima de todo */
}

.icon-respaldo-cuadrado .wrapper-ico {
    width: 22px;
    height: 22px;
}

/* LÍNEA DECORATIVA: CORREGIDA a Negro Puro (#000000) */
.side-decor-line {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #000000 42%,
        transparent 42%,
        transparent 47%,
        #000000 47%,
        #000000 100%
    );
}

.btn-ver-servicios {
    background-color: #f49600;
}

/* Consistencia adaptativa para móviles */
@media (max-width: 767.98px) {
    .img-about-fit {
        height: auto !important;
    }
    .badge-floating-respaldo {
        bottom: 10px;
    }
}

/* =============================================================================
   BLOQUE 2: CONÓCENOS (Líneas con el punto indicador negro)
   ============================================================================= */
.card-floating {
    background: #ffffff;
    border-radius: 4px;
    padding: 50px 30px 30px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Contenedor de la decoración superior */
.icon-connector-wrapper {
    position: absolute;
    top: -110px; /* Eleva todo el conjunto por encima del recuadro */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    z-index: 10;
}

/* Círculo blanco que contiene el ícono */
.icon-circle-white {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

/* Línea blanca vertical que baja del círculo */
.vertical-white-line {
    width: 2px;
    height: 35px; /* Distancia entre el círculo y la tarjeta */
    background-color: #ffffff;
    z-index: 2;
}

.icon-circle-white {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 12;
}

/* Punto negro indicador exacto en la unión con la tarjeta */
.black-dot-end {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    margin-bottom: -4px; /* Ajuste para que muerda el borde superior de la tarjeta blanca */
    z-index: 4;
}
/* Línea blanca vertical que baja del círculo */
.connecting-line {
    width: 2px;
    height: 25px;
    background-color: #ffffff;
    z-index: 1;
}

.custom-us-ico {
    width: 32px !important;
    height: 32px !important;
}

.dot-circle-container {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 13;
}

.inner-black-dot {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
}

.vertical-white-line {
    width: 2px;
    height: 30px;
    background-color: white;
    z-index: 11;
    margin-top: 5px;
}

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

    .icon-circle-white{
        width: 50px;
        height: 50px;
    }

    .mission-vision .row.g-5 {
        padding-top: 80px !important;
    }

    .mission-vision .col-12 {
        margin-top: 110px;
    }

    .mission-vision .col-12:first-child {
        margin-top: 20px;
    }

    .icon-connector-wrapper {
        top: -85px !important;
    }

    .card-floating {
        padding: 45px 20px 25px 20px !important;
    }
} */

/* =============================================================================
   BLOQUE 3: NUESTROS VALORES (Optimización de tamaño y posición de imágenes)
   ============================================================================= */

/* Contenedor padre de la imagen: Limpiamos alturas forzadas previas */
.value-img-col {
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* CARDS 1 Y 2: Deja el espacio libre arriba, pegada abajo al ras */
.custom-val-img-top-air-one {
    width: 100%;
    height: 82% !important; /* Altura de la foto respecto a la tarjeta */
    object-fit: cover;
    object-position: bottom;
    align-self: end; /* Anclaje inferior */
    border-bottom-right-radius: 5px;
}

.custom-val-img-top-air-two {
    width: 100%;
    height: 82% !important; /* Altura de la foto respecto a la tarjeta */
    object-fit: cover;
    object-position: bottom;
    align-self: end; /* Anclaje inferior */
    border-bottom-left-radius: 5px;
}

/* CARDS 3 Y 4: CORREGIDO - Deja el espacio libre abajo, pegada arriba al ras */
.custom-val-img-bottom-air-three {
    width: 100%;
    height: 82% !important; /* Altura idéntica para simetría visual */
    object-fit: cover;
    object-position: top; /* Se enfoca en la parte superior de la foto */
    align-self: start; /* Anclaje superior */
    border-top-right-radius: 5px;
}

.custom-val-img-bottom-air-for {
    width: 100%;
    height: 82% !important; /* Altura idéntica para simetría visual */
    object-fit: cover;
    object-position: top; /* Se enfoca en la parte superior de la foto */
    align-self: start; /* Anclaje superior */
    border-top-left-radius: 5px;
}

/* Controla el tamaño de la imagen dentro de los círculos oscuros y claros */
.icon-value-circle .valores,
.icon-value-circle-two .valores {
    width: 24px !important; /* Tamaño reducido y estilizado idéntico a Figma */
    height: 24px !important;
    object-fit: contain; /* Evita que el SVG o PNG se distorsione al escalar */
}

/* Conservamos tus estilos de círculos e íconos intactos */
.icon-value-circle {
    width: 50px;
    height: 50px;
    background-color: #525252;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.icon-value-circle-two {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bg-val-blue {
    background-color: #1b89c9;
    border-radius: 5px;
}
.bg-val-dark {
    background-color: #002840;
    border-radius: 5px;
}

.value-text-col {
    padding: 40px;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =============================================================================
   Activación de Marketing SECCIÓN: ACTIVACIÓN DE MARKETING (BLOQUES 2 Y 3)
   ============================================================================= */

.img-about-fit-marketing {
    height: 100% !important;
    width: 100%;
}

/* Icono superior del Bloque 2 */
.main-icon-centered {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo-ejecutar {
    color: #1f242e;
    font-size: 34px;
    text-align: left;
}

.text-bloque2 {
    font-size: 16px;
    text-align: left;
    color: #717580;
}

.medida,
.incluye {
    color: #1f242e;
    font-size: 34px;
}

.text-medida,
.text-incluye {
    font-size: 16px;
    color: #717580;
}

.personal {
    font-size: 16px;
    color: #1f242e;
}

.main-icon-centered img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Distribución e interlineado de los párrafos del bloque 2 */
.why-paragraphs p {
    line-height: 1.8;
    text-align: justify; /* Mantiene la estética limpia del bloque de texto */
}

/* Círculos Azules del Bloque 3 */
.marketing-circle-blue {
    width: 80px;
    height: 80px;
    background-color: #1b85c1; /* Tu azul característico */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.line-text-marketing {
    line-height: 1.3 !important; /* Reduce el espacio entre renglones como en Figma */
    max-width: 140px; /* Limita el ancho horizontal exacto para obligar a romper en 2 líneas máximo */
    margin-left: auto;
    margin-right: auto;
}

/* Control del tamaño de los íconos internos del círculo */
.marketing-circle-blue img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Textos debajo de los círculos */
.marketing-circle-blue + h5 {
    line-height: 1.4;
}

/*=============================================================================
CONTACTO
=============================================================================*/
/* Estilos para la vista de Contacto */

.about-intro .content-column .content-wrapper {
  /* Añade el borde izquierdo como barra vertical */
  border-left: 5px solid #002d4f; /* Color dark-blue del diseño */

  /* Desplazamiento del texto respecto a la barra */
  padding-left: 30px;

  /* Asegura que el borde empiece en la misma línea que el título */
  margin-top: 60px; /* Ajusta este valor según la altura de tu tag de subtítulo + margen */
}

/* Ajustes de alineación para la columna derecha */
.about-intro .col-md-6.d-flex.justify-content-start {
  padding-top: 0 !important; /* Asegura alineación superior */
}

/* Color de fondo oscuro para la tarjeta de redes de Figma */
.bg-dark-custom {
  background-color: #1e2229 !important; /* Gris oscuro del diseño */
}

/* Forzar que las tarjetas tengan esquinas redondeadas idénticas si es necesario */
.contact-card, .social-card {
  border-radius: 8px;
}

/* Ajustes de textos en la tarjeta social */
.social-title {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.social-text {
  color: #c1c4c9; /* Gris claro para legibilidad */
  max-width: 90%;
}

/* Contenedor de imagen para mantener proporciones en diferentes pantallas */
.social-image-container img {
  height: auto;
  max-height: 250px; /* Limita la altura para mantener simetría con el formulario */
  object-fit: cover;
}

/* Estilos para los círculos de Redes Sociales */
.social-icons .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff; /* Borde blanco delgado */
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* Efecto hover opcional para mejorar la UX */
.social-icons .icon-circle:hover {
  background-color: #ffffff;
  color: #1e2229;
}

/* Estilos base que faltaban para el formulario */
.contact-title {
  font-weight: 700;
  color: #1a1a1a;
}

.btn-orange {
  background-color: #e68a00; /* Naranja de Figma */
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
}

.btn-orange:hover {
  background-color: #cc7a00;
  color: #fff;
}

.text-muted-contacto {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}
/*=============================================================================
AVISO DE PRIVACIDAD
=============================================================================*/
.titulo-privacidad {
    color: #002840;
    font-size: 16px;
}

.text-privacy {
    font-size: 16px;
    color: #717580;
}

.texto-resaltado {
    color: #002840;
    font-size: 16px;
}

.content-privacy-box {
    text-align: justify;
}

/*=============================================================================
MENSAJERÍA Y RECOLECCIÓN
=============================================================================*/
/* Contenedor principal */
.banner-mensajeria {
    position: relative;
}

/* Asegura que el contenido frontal esté por encima del texto de fondo */
.relative-z-index {
    position: relative;
    z-index: 2;
}

/* Efecto de marca de agua (Texto con solo contorno) */
.bg-texto-contorno {
    font-family: "Exo", sans-serif;
    position: absolute;
    top: 65px; /* Ajusta este valor para subir o bajar el texto de fondo */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 122px;
    font-weight: 600;
    color: transparent; /* Hace el interior transparente */
    -webkit-text-stroke: 1px #195A8054; /* Color y grosor del contorno */
    white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
    z-index: 1;
    user-select: none; /* Evita que el usuario seleccione este texto por accidente */
    pointer-events: none;
    line-height: 100%;
    letter-spacing: 0%;

}

/* Título principal azul marino */
.titulo-principal {
    color: #002840;
    font-weight: 700;
    font-style: Bold;
    font-size: 70px;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: center;
}

/* Subtítulo gris */
.subtitulo-banner {
    font-weight: 400;
    font-size: 36px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #717580;
}

/* Estilos de las migas de pan (Breadcrumbs) */
.migas-de-pan {
    font-weight: 600;
    font-size: 16px;
    line-height: 24.8px;
    letter-spacing: 0%;
    color: #717580;
}

.migas-de-pan .separador {
    margin: 0 0.8rem;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.subservice-img-container {
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
}

.subservice-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.subservice-text-container {
    padding-inline: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subservice-title1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0%;
    color: #1F242E;
    text-align: start;
    margin-bottom: 20px;
}

.subservice-text1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: justify;
    color: #717580;
}

.subservice-title2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 38.8px;
    letter-spacing: 0%;
    color: #1F242E;
    margin-bottom: 15px;
}

.subservice-text2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #717580;
    margin-bottom: 5px;
}

.subservice-icons p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24.8px;
    letter-spacing: 0%;
    text-align: center;
    color: #1F242E;
}

.subservice-icons img {
    width: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}

/*=============================================================================
MEDIA
=============================================================================*/
/* 1920 x 1080 */
@media (max-width: 1920px) {
}

/* 1600 x 900*/
@media (max-width: 1600px) {
    .hero-slider-controls { left: 20px; }
}

/* 1502 x 900 (exclusive for carousel buttons) */
@media (max-width: 1502px) {
    .hero-slider-controls { left: 20px; }
}

/* 1440 x 900 */
@media (max-width: 1440px) {
    .bg-texto-contorno {
        position: absolute;
        top: 60px; /* Ajusta este valor para subir o bajar el texto de fondo */
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 92px;
    }

    .hero-slider-controls { left: 5px; }
}

/* 1280 x 800 */
@media (max-width: 1280px) {
    .bg-texto-contorno {
        position: absolute;
        top: 60px; /* Ajusta este valor para subir o bajar el texto de fondo */
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 82px;
    }

    .text-break-custom {
        word-break: break-all;
    }
}

@media (min-width: 1200px) {
    .values .col-lg-5 {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

/* 990 x 1000 */
@media (max-width: 990px) {
    .text-bg-outline {
        font-size: 8vw;  /* El tamaño se calcula dinámicamente con el ancho de la tablet */
        top: -10px;       /* Ajuste fino de altura para pantallas medianas */
    }

    .bg-footer {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .footer-title {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 2rem;
    }

    .footer-links a,
    .footer-link-bottom {
        font-size: 14px;
    }

    .text-muted-custom {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact-text-2 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-box {
        width: 80%;
    }

    .footer-box img {
        width: 220px;
    }

    .bg-texto-contorno { font-size: 65px; }
    .titulo-principal { font-size: 45px; }
    .subtitulo-banner { font-size: 23px; }
    .subservice-text-container { padding-inline: 25px; }
    .subservice-title1 { font-size: 35px; }
    .subservice-text1 { font-size: 15px; }
    .subservice-text2 { font-size: 15px; }
    .subservice-icons p {
        font-size: 14px;
        line-height: 19.8px;
    }

    .hero-section {
        /* Cambiamos el fondo para que no se vea el corte azul raro cuando las columnas se apilen */
        background: #ffffff;
        min-height: auto;
    }

    .hero-custom-width {
        width: 100%;
    }

    .dots-bg {
        width: 200px;
        top: -100px;
        left: -5px;
    }

    .hero-carousel-title {
        font-size: 40px;
        line-height: 1.2;
    }

    /* Acomodamos los botones del slider debajo del contenido y en horizontal */
    .hero-slider-controls {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        flex-direction: row;
        margin-top: 30px;
        margin-bottom: 20px;
        justify-content: center;
    }

    .main-hero-img {
        padding-right: 0; /* Corregimos el padding negativo nulo */
        width: 100%;
    }

    /* Reducimos el tamaño de la imagen circular para que no se salga */
    .circle-hero-img {
        width: 280px;
        left: -5%;
        top: 25%;
    }

    /* Metemos la tarjeta para que no quede fuera de la pantalla */
    .floating-contact-card {
        left: 20px;
        bottom: 30px;
    }
}

/* 767 x 414 */
@media (max-width: 767px) {
    .text-bloque2 {
        text-align: center;
        font-size: 14px;
    }

    .titulo-ejecutar {
        text-align: center;
        font-size: 24px;
    }

    .why-paragraphs p {
        text-align: center; /* En móvil forzamos a que se centre como pediste */
        margin-bottom: 30px !important;
    }

    /* Separación extra entre los círculos en móvil cuando se apilen verticalmente */
    .marketing-circle-blue {
        margin-top: 15px;
    }

    /* Centrado de los círculos de iconos usando márgenes automáticos alternados */
    .mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Reducimos el padding excesivo vertical en móvil para ajustar los espacios vacíos */
    .value-text-col {
        padding: 30px 20px !important;
    }

    /* Ajuste Card 1: Reducimos la altura forzada de la imagen en celular para recortar el aire debajo del texto */
    .value-img-col {
        min-height: auto !important; /* Reseteamos alturas mínimas estáticas en celular */
    }

    .custom-val-img-top-air-one,
    .custom-val-img-top-air-two {
        height: 180px !important; /* Altura controlada para que la foto no quede muy abajo */
        width: 100%;
        object-fit: cover;
    }

    .custom-val-img-bottom-air-three,
    .custom-val-img-bottom-air-for {
        height: 180px !important;
        width: 100%;
        object-fit: cover;
    }

    /* Ajuste Card 4: Al estar la imagen arriba del texto en móvil, añadimos un espacio
       superior para que el ícono de "Creatividad Operativa" respire respecto a la foto */
    .flex-row-reverse .value-text-col {
        padding-top: 35px !important;
    }

    .value-img-col {
        min-height: 220px;
    }
    .custom-val-img-top-air,
    .custom-val-img-bottom-air {
        height: 100% !important; /* En móviles llenan todo el espacio para evitar huecos */
    }

    .icon-circle-white {
        width: 50px;
        height: 50px;
    }
    /* 1. Le damos espacio superior a la fila para que el primer ícono no pegue con el título "Nosotros" */
    .mission-vision .row.g-5 {
        padding-top: 80px !important;
    }

    /* 2. Separamos las tarjetas verticalmente para que el ícono de abajo tenga espacio libre y no tape nada */
    .mission-vision .col-12 {
        margin-top: 110px; /* Crea el hueco perfecto para que quepa el círculo decorativo */
    }

    /* Forzamos a que la primera tarjeta no herede el margen de arriba ya que no tiene nada que tapar */
    .mission-vision .col-12:first-child {
        margin-top: 20px;
    }

    /* 3. Ajustamos la posición del contenedor decorativo para que se acomode milimétricamente en pantallas chicas */
    .icon-connector-wrapper {
        top: -85px !important; /* Desfase calibrado para el tamaño móvil */
    }

    /* 4. Opcional: Reducimos ligeramente el padding interno de la tarjeta en móvil para que el texto se lea mejor */
    .card-floating {
        padding: 45px 20px 25px 20px !important;
    }

    .bg-texto-contorno { font-size: 34px; }
    .titulo-principal {
        font-size: 30px;
        line-height: 40px;
    }
    .subtitulo-banner { font-size: 20px; }
    .subservice-img-container { height: 250px; }
    .subservice-img-container img { width: 120%; }

    .subservice-text-container { padding-inline: 13px; }
    .subservice-title1 { font-size: 35px; line-height: 40px; margin-top: 15px; }
    .subservice-text1 { font-size: 16px; }
    .subservice-text2 { font-size: 16px; }
    .subservice-icons p {
        font-size: 14px;
        line-height: 19.8px;
    }

    .hero-carousel-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .dots-bg {
        width: 100px;
        top: -50px;
        left: -5px;
    }

    .hero-carousel-text {
        font-size: 15px;
        line-height: 24px;
    }

    .btn-orange-hero {
        width: 100%; /* Botón a todo el ancho en móviles luce mejor */
    }

    .image-composition-wrapper {
        margin-top: 20px;
    }

    /* Hacemos la imagen circular mucho más pequeña */
    .circle-hero-img {
        width: 180px;
        top: 15%;
        left: -10px;
    }

    /* Ajustamos la tarjeta flotante para pantallas chicas */
    .floating-contact-card {
        left: 10px;
        bottom: 10px;
        min-width: 200px;
        padding: 15px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-card-number {
        font-size: 14px;
    }

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

    .icon-headphones i {
        font-size: 1rem !important;
    }

    .nav-1st { display: none; }
}

/* 576 x 320 */
@media (max-width: 576px) {
    .text-bg-outline {
        font-size: 8vw;  /* Tamaño exacto para que no se desborde en pantallas de móvil */
        top: -25px;        /* Centrado fino vertical para acompañar al título responsivo */
    }

    .line-text-marketing {
        max-width: 200px;
        font-size: 1rem !important;
    }

    .navbar-nav .active-link::before {
        left: 0px; /* Ajuste para alinear con el texto, puedes modificarlo */
    }

    .navbar-nav .active-link::after {
        left: 14px; /* Separación de la primera línea */
    }

    .bg-texto-contorno { font-size: 30px; }
    .titulo-principal {
        font-size: 28px;
        line-height: 40px;
    }
}

/* 375 x 320 */
@media (max-width: 375px) {
}
/*
	@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 ) {}
*/
