@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700);

/* ==========================================================================
   CONFIGURACIÓN GENERAL
   ========================================================================== */
body { color: #313131; }
::-moz-selection { background: #ffcc33; color:#fff; }
::-webkit-selection { background: #ffcc33; color:#fff; }
::selection { background: #ffcc33; color:#fff; } 
html, body { height: 100%; }
a { color:#ffcc33; text-decoration:none; }
a:focus, a:hover { color:#313131; text-decoration:none; }

/* ==========================================================================
   SISTEMA TIPOGRÁFICO - GLOBAL (TAMAÑOS AUMENTADOS)
   ========================================================================== */
body, p { 
    font-family: 'Inter', 'Roboto', sans-serif !important; 
    font-weight: 400; 
    font-size: 2rem; /* Aumentado a ~18.5px para mayor legibilidad */
    line-height: 1.6; 
}

h1, .h1, h2, .h2, h3, .h3 { 
    font-family: 'Rajdhani', sans-serif !important; 
    margin-top: 0; 
}

h1, .h1 { 
    font-weight: 700; 
    font-size: 5rem; /* Aumentado */
    line-height: 1.1; 
}

h2, .h2 { 
    font-weight: 600; 
    font-size: 4rem; /* Aumentado */
    line-height: 1.2; 
}

h3, .h3, .cb-slideshow li div h3 { 
    font-weight: 600; 
    font-size: 3rem; /* Aumentado */
    line-height: 1.3; 
    color: #ffffff; 
}

.btn, button, .navbar-nav > li > a { 
    font-family: 'Rajdhani', sans-serif !important; 
    font-weight: 700; 
    font-size: 2.1rem; /* Aumentado */
    line-height: 1.0; 
}

.small, small, .entry-meta { 
    font-family: 'Inter', 'Roboto', sans-serif !important; 
    font-weight: 500; 
    font-size: 1rem; /* Aumentado */
}

/* --- Ajuste Responsivo para Móviles --- */
@media (max-width: 767px) {
    body, p { font-size: 1.05rem; }
    h1, .h1 { font-size: 3rem; }
    h2, .h2 { font-size: 2.25rem; }
    h3, .h3, .cb-slideshow li div h3 { font-size: 1.75rem; }
}
/* ==========================================================================
   NAVEGADOR PRINCIPAL (NAVBAR)
   ========================================================================== */
.navbar-inverse { background-color: #000000; opacity: 1; border: none; font-size: 15px; padding-top: 26px; padding-bottom: 16px; }
.navbar-inverse .navbar-nav>li>a { font-size: 15px; color: #ffffff; padding-bottom: 6px; padding-right: 10px; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.navbar-inverse .navbar-nav li { margin-left: 15px; text-transform: uppercase; }
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover { color: #ffcc33; background-color: transparent; border-bottom: 3px solid #ffcc33; margin-bottom: 0px; -webkit-transition: 0.5s; transition: 0.5s; transition-timing-function: ease; }
.navbar-inverse .navbar-nav>li>a:hover { color: #ffcc33; border-bottom: 3px solid #ffcc33; -webkit-transition: 0.5s; transition: 0.5s; transition-timing-function: ease; }
.navbar-inverse .navbar-nav>li>a:active { border-bottom: 3px solid #ffcc33; -webkit-transition: 0.5s; transition: 0.5s; transition-timing-function: ease; }
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover { background-color: #ffcc33; }

/* ==========================================================================
   BOTONES DE IDIOMA (BANDERAS) - FUERA DEL MENÚ
   ========================================================================== */
.language-flags-container {
    display: flex;
    gap: 15px; /* Espacio de separación entre las dos banderas */
}

/* Tamaño de las banderas aumentado y proporcionado */
.language-flags-container img {
    width: 36px; /* Aumentado desde 24px */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

/* Efecto hover */
.language-flags-container a:hover img {
    transform: scale(1.15);
}

/* Alineación segura en computadoras (Desktop) al lado del logo */
@media (min-width: 768px) {
    .language-flags-container {
        float: left; /* Flotan a la izquierda del contenedor */
        margin-left: 35px; /* Espacio de separación respecto al logo */
        margin-top: 25px; /* Las empuja hacia abajo para centrarlas verticalmente */
    }
}

/* Adaptación para el menú desplegable en móviles (Mobile) */
@media (max-width: 767px) {
    .language-flags-container {
        justify-content: center;
        padding: 20px 0;
        margin-top: 10px;
        border-top: 1px solid #222222; /* Línea separadora sutil */
        margin-bottom: 10px;
    }
}

/* Estilo de las imágenes de las banderas */
.language-flags img {
    width: 24px; /* Tamaño del icono */
    height: auto;
    border-radius: 2px; /* Bordes ligeramente redondeados */
    box-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Pequeña sombra para dar relieve */
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

/* Efecto hover (aumento de tamaño al pasar el mouse) */
.navbar-inverse .navbar-nav > li.language-flags > a:hover img {
    transform: scale(1.15);
}

/* Centrar las banderas en la vista móvil */
@media (max-width: 767px) {
    .language-flags {
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-left: 0;
    }
}

/* ==========================================================================
   AJUSTES DE ALTURA PARA LOGO GRANDE (85px)
   ========================================================================== */

/* 1. Liberamos la altura estricta del contenedor del logo */
.navbar-brand {
    height: auto; 
}

/* 2. Centramos verticalmente el botón hamburguesa en móviles */
.navbar-inverse .navbar-toggle {
    margin-top: 22px; 
    margin-bottom: 22px;
}

/* 3. Centramos verticalmente los enlaces del menú solo en computadoras */
@media (min-width: 768px) {
    .navbar-inverse .navbar-nav > li > a {
        padding-top: 32px; /* Empuja el texto hacia el centro */
        padding-bottom: 26px; /* Deja espacio para la línea dorada del hover */
    }
}

/* ==========================================================================
   BOTÓN HAMBURGUESA (MÓVIL)
   ========================================================================== */
/* Estilo base del botón (fondo dorado, borde dorado y esquinas rectas) */
.navbar-inverse .navbar-toggle {
    background-color: #ffcc33;
    border: 1px solid #ffcc33;
    border-radius: 0px; 
    transition: all 0.3s ease;
}

/* Color de las 3 líneas de la hamburguesa (negro para máximo contraste) */
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #000000;
}

/* Hover del botón hamburguesa (fondo blanco, borde blanco) */
.navbar-inverse .navbar-toggle:focus, 
.navbar-inverse .navbar-toggle:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

/* Asegurar que el menú desplegable en móvil mantenga el fondo negro y sin bordes feos */
@media (max-width: 767px) {
    .navbar-inverse .navbar-collapse, 
    .navbar-inverse .navbar-form {
        border-color: #333333;
        background-color: #000000;
    }
}

/* ==========================================================================
   CARRUSEL
   ========================================================================== */
header.carousel { height: 100%; max-height: 650px; }
header.carousel .item, header.carousel .item.active, header.carousel .carousel-inner { height: 100%; }
.cb-slideshow, .cb-slideshow:after { position:absolute; width:100%; height:100%; top: 0px; left: 0px; z-index: 0; background-color:#ffcc33; }
.cb-slideshow li span { width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; color: transparent; background-size: cover; background-repeat: none; opacity: 0; z-index: 0; -webkit-backface-visibility: hidden; -webkit-animation: imageAnimation 36s linear infinite 0s; animation: imageAnimation 36s linear infinite 0s; }
.cb-slideshow li div { z-index: 1000; position: absolute; bottom: 30px; left: 0px; width: 100%; text-align: center; opacity: 0; color: #fff; -webkit-animation: titleAnimation 36s linear infinite 0s; animation: titleAnimation 36s linear infinite 0s; }
.cb-slideshow h3, .cb-slideshow h4 { margin-bottom: 15%; }
.cb-slideshow li:nth-child(1) span { background-image: url(../images/slide1.webp); }
.cb-slideshow li:nth-child(2) span { background-image: url(../images/slide2.webp); animation-delay: 6s; }
.cb-slideshow li:nth-child(3) span { background-image: url(../images/slide3.webp); animation-delay: 12s; }
.cb-slideshow li:nth-child(4) span { background-image: url(../images/slide4.webp); animation-delay: 18s; }
.cb-slideshow li:nth-child(5) span { background-image: url(../images/slide5.webp); animation-delay: 24s; }
.cb-slideshow li:nth-child(6) span { background-image: url(../images/slide6.webp); animation-delay: 30s; }
.cb-slideshow li:nth-child(2) div { animation-delay: 6s; }
.cb-slideshow li:nth-child(3) div { animation-delay: 12s; }
.cb-slideshow li:nth-child(4) div { animation-delay: 18s; }
.cb-slideshow li:nth-child(5) div { animation-delay: 24s; }
.cb-slideshow li:nth-child(6) div { animation-delay: 30s; }
@-webkit-keyframes imageAnimation { 0% { opacity: 0; -webkit-animation-timing-function: ease-in; } 8% { opacity: 1; -webkit-animation-timing-function: ease-out; } 17% { opacity: 1 } 25% { opacity: 0 } 100% { opacity: 0 } }
@keyframes imageAnimation { 0% { opacity: 0; animation-timing-function: ease-in; } 8% { opacity: 1; animation-timing-function: ease-out; } 17% { opacity: 1 } 25% { opacity: 0 } 100% { opacity: 0 } }
@-webkit-keyframes titleAnimation { 0% { opacity: 0 } 8% { opacity: 1 } 17% { opacity: 1 } 19% { opacity: 0 } 100% { opacity: 0 } }
@keyframes titleAnimation { 0% { opacity: 0 } 8% { opacity: 1 } 17% { opacity: 1 } 19% { opacity: 0 } 100% { opacity: 0 } }
.no-cssanimations .cb-slideshow li span{ opacity: 1; }
@media screen and (max-width: 1140px) { .cb-slideshow li div h3 { font-size: 140px } }
@media screen and (max-width: 600px) { .cb-slideshow li div h3 { font-size: 60px } }
@media screen and (min-width: 600px) { .cb-slideshow li div h3 { font-size: 70px;line-height: 60px; text-align: center;} }
.cb-slideshow li span{ filter: brightness(40%); -webkit-filter: brightness(40%); }
.carousel-caption{position:absolute;right:15%;top:-40px;left:15%;z-index:10;padding-bottom:20px;color:#ffcc33;text-align:center;text-shadow:0 0px 0px rgba(0,0,0,.6)}
.carousel-caption .btn{text-shadow:none}
@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px} .carousel-caption{right:20%;left:20%;padding-bottom:30px} }

/* ==========================================================================
   COMPONENTES VARIOS (Scroll, Botones, Imágenes)
   ========================================================================== */
img.displayed { display: block; margin-left: auto; margin-right: auto; background-color: transparent;}
.scroll-filter{background-color: rgba(0,0,0,0.5);} 
.intro-scroller { position: absolute; left: 0px; text-align: center; z-index: 9999; width: 100%; bottom:20px; }
.intro-scroller p{color:#fff;}
.scroll-down{ background-color: #1E1E1E; width:100%; height:60px; position:center; text-align:center; }
.custom-scroll{ color:#fff; }
.mouse-icon { border: 2px solid; border-radius: 15px; bottom: 70px; height: 50px; left: 0; margin: 0 auto; position: absolute; right: 0; width: 27px; cursor: pointer; -webkit-transition: all .3s linear; transition: all .3s linear; }
.mouse-icon:hover {opacity: 0.3 !important; -webkit-transition: all .3s; transition: all .3s;}
.mouse-icon .wheel { -webkit-animation: 1.7s ease 0s normal none infinite magic-mouse-icon; animation: 1.7s ease 0s normal none infinite magic-mouse-icon; border-radius: 30%; background: #fff; height: 12px; left: 0; margin-left: auto; margin-right: auto; margin-top: 6px; right: 0; width: 5px; }
a.inner-link { color: #fff; text-decoration: none; }
@media only screen and (max-width:767px) { .mouse-icon { bottom:10px; } .cb-slideshow li div h3 { font-size:30px; } }
@keyframes magic-mouse-icon { 0% { margin-top: 6px; opacity: 0;} 30% { opacity: 1;} 100% { margin-top: 18px; opacity: 0;} }
#vermas a{background-color:#ffcc33; color:#FFF; padding:10px; }
#vermas a:hover{background-color:#666666; color:#FFF; padding:10px; cursor:pointer;}
#ver_2 a{background-color:#ffcc33; color:#FFF; padding:10px; margin-top: -200px; }
#ver_2 a:hover{background-color:#666666; color:#FFF; padding:10px; cursor:pointer; margin-top: -200px;}
.btn-custom, .btn-custom:active, .btn-custom:focus, .btn-custom:hover {background-color:#ffcc33;border-color:#ffcc33;}
.btn-custom {width:100%;background-color:#ffcc33;border:1px solid #ffcc33;text-transform: uppercase; transition: all 0.2s ease;}
.btn-custom:hover {background-color:transparent;border:1px solid #ffcc33;color:#fff;}
.btn-primary { background-color: #ffcc33; border:none; }
.btn-primary:hover { background-color: #2D2D2D; transition: 0.5s ease; }
#toTop{ position: fixed; bottom: 38px; right: 10px; cursor: pointer; display: none; }
.color1 { background-color: #505050; }
.color1:hover { background-color: #353535; }
.custom-labels{background-color:transparent;border-radius:0px; border:0px; border-bottom: 1px solid white;}
.btn-noborder-radius{border-radius:0px;}

/* ==========================================================================
   SECCIONES DE LA PÁGINA
   ========================================================================== */
/* --- Sección About --- */
#about { padding: 120px 0px 100px 0px; background-color: #ffffff; }
#about h2 { color: #444444; }
#about p { color: #555555; }

/* --- Sección We Are (Página About Us) --- */
#meet-team { 
    padding: 120px 0px 100px 0px; /* Exactamente el mismo padding que #about del index */
    background-color: #ffffff; 
}

/* --- Sección Servicios --- */
.homeservices1 { padding-top:40px; margin-bottom:40px; }
.homeservices1 a { color:#efefef; }
.homeservices1 a:hover { color:#FFF; text-decoration: none; }
#services { padding-top:60px; background-color:#333333; }
#services p { color:#efefef; }
#services img { -webkit-filter: grayscale(1); filter: grayscale(1); }
#services img:hover { -webkit-filter: grayscale(0); filter: grayscale(0); transition: 0.5s ease; }
#services h2 { color:#FFF; }

/* --- Corrección de Alineación en Servicios y Portafolio --- */
.portfolio-item {
    width: 33.3333%; /* Sobrescribe la grilla de Bootstrap para repartir 3 ítems perfectamente */
}

@media (max-width: 767px) {
    .portfolio-item {
        width: 100%; /* En teléfonos ocupa todo el ancho */
        margin-bottom: 30px;
    }
}

/* --- Nueva Sección Escríbenos (CTA) --- */
#cta-subscribe {
    background-color: #333333;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/equipment-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    padding: 100px 0;
    text-align: center;
}
#cta-subscribe h2 { color: #ffffff; margin-bottom: 40px; text-transform: uppercase; }
#cta-subscribe .form-inline .form-control { background-color: transparent; border: 1px solid #ffffff; border-radius: 0px; color: #ffffff; height: 45px; min-width: 350px; box-shadow: none; }
#cta-subscribe .form-inline .form-control::-webkit-input-placeholder { color: #cccccc; }
#cta-subscribe .form-inline .form-control:-ms-input-placeholder { color: #cccccc; }
#cta-subscribe .form-inline .form-control::-moz-placeholder { color: #cccccc; }
#cta-subscribe .form-inline .form-control:focus { border-color: #ffcc33; }
#cta-subscribe .btn-enviar { background-color: #ffcc33; color: #000000; border: 1px solid #ffcc33; border-radius: 0px; height: 45px; font-weight: bold; padding: 0 30px; margin-left: -4px; transition: all 0.3s ease; }
#cta-subscribe .btn-enviar:hover { background-color: #ffffff; color: #000000; border-color: #ffffff; }
@media (max-width: 767px) {
    #cta-subscribe .form-inline .form-control { min-width: 100%; margin-bottom: 15px; }
    #cta-subscribe .btn-enviar { width: 100%; margin-left: 0; }
}

/* ==========================================================================
   NUEVA SECCIÓN: USED HEAVY EQUIPMENT (Estilo CTA)
   ========================================================================== */
#used-equipment-cta {
    background-color: #333333;
    /* Opacidad exacta del 75% (0.75) idéntica a tu CTA inferior */
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/equipment-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    padding: 100px 0; /* Padding idéntico al del CTA inferior */
    text-align: center;
}

#used-equipment-cta h2 { 
    color: #ffffff; 
    margin-bottom: 40px; 
    text-transform: uppercase; 
}

/* Efecto Hover específico para el botón de esta sección */
#used-equipment-cta .btn-enviar { 
    background-color: #ffcc33; 
    color: #000000; 
    border: 1px solid #ffcc33; 
    border-radius: 0px; 
    height: 45px; 
    font-weight: bold; 
    padding: 0 30px; 
    transition: all 0.3s ease; 
}

#used-equipment-cta .btn-enviar:hover { 
    background-color: #ffffff; 
    color: #000000; 
    border-color: #ffffff;
    text-decoration: none;
}

/* --- Portafolio --- */
#portfolio1 { padding-top: 80px; padding-bottom: 80px; clear: both; display: block; background-color: #000000; }
#portfolio1 h2 { color: #ffffff; }
#portfolio1 .img-responsive.displayed { filter: invert(80%) sepia(35%) saturate(1200%) hue-rotate(355deg) brightness(105%) contrast(101%); }
#portfolio1 .nav-pills>li>a { color: #ffffff; border-radius: 0px; text-align: center; font-weight: bold; padding: 10px 8px; border-bottom: 2px solid #ffcc33; }
#portfolio1 .nav-pills>li>a:focus, #portfolio1 .nav-pills>li>a:hover, #portfolio1 .nav-pills>li.active>a, #portfolio1 .nav-pills>li.active>a:focus, #portfolio1 .nav-pills>li.active>a:hover { background-color: #ffcc33; color: #000000; border-color: #ffcc33; }

.port2 { margin:0px; padding:0px; max-width: 100%; }
.port3 { width: 33%; min-width: 240px; display: inline-block; margin:0px 0px 7px 0px; padding:0px; }
.port3 img { width: 99%; min-width: 240px; max-width:380px; cursor: pointer; }
.port3 img:hover { filter: brightness(70%) !important; transition: 0.5s ease; }
ul.nav-pills { text-align: center; margin: 25px auto 20px auto; width: 100%; display: table; }
.nav-pills>li { float:none; text-align: center; display: table-cell; margin:0px; vertical-align: bottom; }
@media screen and (max-width: 768px) {
    ul.nav-pills { display: none; }
    .port3 { width: 99%; min-width: 240px; display: inline-block; margin:0px 0px 7px 0px; padding:0px; }
    .port3 img { width: 100%; min-width: none; max-width:none; cursor: pointer; }
}
@media screen and (min-width: 769px) and (max-width: 1140px) {
    .port3 { width: 32.5%; min-width: 240px; padding:0px; }
    .port3 img { width: 100%; min-width: none; max-width:475px; cursor: pointer; }
}

/* --- Contacto --- */
#contact { 
    padding: 120px 0; /* Aumentamos el padding superior e inferior a 120px para dar más espacio */
    background-color: #999999; 
    color: #f7f7f7; 
}

#contact .fa { 
    padding-right: 31px; 
    color: #ffcc33; 
}

.height-contact-element { 
    margin: 30px 0; 
} 

.contact-msg { 
    line-height: 1.6em; 
    margin-bottom: 20px; 
}

/* Estilos para el contenedor del Mapa de Google */
.map-container {
    border: 2px solid #ffcc33; /* Borde dorado para mantener la coherencia de la marca */
    padding: 5px; /* Pequeño marco interno */
    background-color: #ffffff;
    margin-top: 30px; /* Alineación con el formulario */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Sombra elegante */
}

@media only screen and (max-width:767px) { 
    .height-contact-element { margin: 25px 0; } 
    .map-container { margin-top: 50px; } /* Más separación visual en móviles */
}

/* ==========================================================================
   FOOTER MODERNO (Estilo Columnas)
   ========================================================================== */
#footer-modern { background-color: #000000; color: #a0a0a0; padding-top: 60px; border-top: 4px solid #ffcc33; }
.footer-widgets { padding-bottom: 40px; }
.footer-col h4 { color: #ffffff; font-family: 'Rajdhani', sans-serif !important; font-weight: 600; font-size: 1.75rem; margin-bottom: 20px; text-transform: uppercase; }
/* Ajuste del nuevo logo en el Footer */
.footer-logo {
    max-width: 250px; /* Aumentamos el tamaño para que se aprecien bien los detalles de la maquinaria */
    margin-bottom: 20px;
    /* Hemos eliminado el filtro "brightness/invert" para respetar los colores originales (metálico y dorado) que contrastan perfecto con el negro */
}
.footer-col p, .footer-links a, .footer-contact li { font-family: 'Inter', 'Roboto', sans-serif !important; font-weight: 400; font-size: 1.5rem; line-height: 1.4; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #a0a0a0; transition: all 0.3s ease; }
.footer-links a:hover { color: #ffcc33; padding-left: 5px; text-decoration: none; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact li strong { color: #ffffff; }
.footer-social { margin-top: 20px; padding-left: 0; }
.footer-social li a { display: inline-block; width: 35px; height: 35px; background-color: #333333; color: #ffffff; text-align: center; line-height: 35px; border-radius: 50%; transition: all 0.3s ease; }
.footer-social li a:hover { background-color: #ffcc33; color: #000000; }
.footer-bottom { background-color: #000000; padding: 20px 0; border-top: 1px solid #222222; }
.footer-bottom p, .footer-bottom a { font-family: 'Inter', 'Roboto', sans-serif !important; font-weight: 500; font-size: 1.5rem; margin: 0; color: #777777; }
.footer-bottom a { color: #ffcc33; }
.footer-bottom a:hover { color: #ffffff; text-decoration: none; }
@media (max-width: 767px) {
    .footer-col { margin-bottom: 30px; }
    .footer-bottom .text-right { text-align: left; margin-top: 10px; }
}

/* ==========================================================================
   DESPLAZAMIENTO DEL CARRUSEL (SLIDES)
   ========================================================================== */
header.carousel {
    margin-top: 102px; /* Empuja el slider exactamente la altura de la barra en PC */
}

@media (max-width: 767px) {
    header.carousel {
        margin-top: 110px; /* Ajuste un poco mayor para móviles por el botón hamburguesa */
    }
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px; /* Anclado a la izquierda para no chocar con el botón toTop */
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Efecto Hover */
.whatsapp-float:hover {
    background-color: #128c7e; /* Verde más oscuro al pasar el ratón */
    color: #ffffff;
    transform: scale(1.1); /* Efecto de crecimiento */
    text-decoration: none;
}

/* Adaptación para dispositivos móviles */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 30px;
    }
}

/* ==========================================================================
   CABECERAS INTERNAS (Ej. About Us, Procure, Services)
   ========================================================================== */
/* Contenedor principal de la cabecera */
.dintel {
    width: 100%;
    margin-top: 102px; /* Empuja la imagen debajo de la barra de navegación en PC */
    display: block;
    overflow: hidden;
}

/* Ajuste de la imagen al 100% del ancho */
.dintel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Garantiza que la imagen llene el espacio sin deformarse */
}

/* Adaptación del margen para la vista móvil */
@media (max-width: 767px) {
    .dintel {
        margin-top: 110px; /* Margen ajustado al botón hamburguesa */
    }
}

/* --- Corrección de Subtítulos (H3) en la sección We Are --- */
#meet-team .team-info h3 {
    color: #000000; /* Sobrescribe el color blanco global */
    margin-top: 25px; /* Separación de la imagen superior */
    margin-bottom: 15px; /* Separación del párrafo inferior */
    font-size: 2.5rem; /* Ajuste para mantener la jerarquía visual */
}

/* --- Separación entre el icono y las imágenes en We Are --- */
#meet-team .teamspace {
    margin-top: 50px; /* Empuja las fotografías hacia abajo */
}

/* --- Sección Procure --- */
#procure {
    padding: 120px 0px 100px 0px; /* Mismos valores que la sección About original */
}