/* General styles */
@font-face {
    font-family: 'GrandisExtended-Bold';
    src: url('../fonts/GrandisExtended-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Anaheim';
    src: url('../fonts/Anaheim-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Anaheim-Medium';
    src: url('../fonts/Anaheim-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium generalmente corresponde a 500 */
    font-style: normal;
}

@font-face {
    font-family: 'Anaheim-Bold';
    src: url('../fonts/Anaheim-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

main{
    margin-top: -1px;
}

/* Para los títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'GrandisExtended-Bold', sans-serif;
    font-weight: bold;
    /* Asegura que el texto sea en negrita */
}

body,
p {
    margin: 0;
    font-family: 'Anaheim', sans-serif;
}

/* Para texto en Anaheim Medium */
.texto-medium {
    font-family: 'Anaheim', sans-serif;
    font-weight: 500;
}

/* Para texto en Anaheim Bold */
.texto-bold {
    font-family: 'Anaheim', sans-serif;
    font-weight: bold;
}

/* HEADER HEADER HEADER HEADER HEADER */

/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    /* Fondo blanco */
    padding: 0px;
    padding-right: 20px;
    border-bottom: 1px solid #ccc;
    /* Línea inferior */
    font-family: 'Anaheim', sans-serif;
    font-weight: 400;
    position: relative;
    /* Añadido para posicionar el botón toggle */
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    background-color: #1019A0;
    padding: 10px;
}

.logo img {
    height: 50px;
    /* Ajuste del tamaño del logo */
}

/* Menu styles */
.menu ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;

}

.menu ul li {
    margin-right: 20px;
}

.menu ul li a {
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-size: 1rem;
}

.menu ul li a.active {
    font-weight: bold;
    /* Resalta el enlace activo */
}

/* Contact button styles */
.contact-button a {
    background-color: #1019A0;
    /* Azul oscuro */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* Menu toggle button styles */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
    /* Oculto por defecto */
}

/* VIDEO VIDEO VIDEO */

/* Video Section Styles */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Altura del 100% del viewport height en escritorio */
    overflow: hidden;
    
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cubre todo el espacio disponible */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo oscuro semi-transparente */
}

.video-overlay h1 {
    font-size: 6em;
    font-family: 'GrandisExtended-Bold', sans-serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Sombra al texto */
    text-align: left;
    margin-left: -3em;
    margin-top: -1em;
}

.video-overlay p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Sombra al texto */
}

.video-overlay .button {
    background-color: #1019A0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

/* Custom Section Styles */
.custom-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Altura del 100% del viewport height */
    overflow: hidden;
    background-color: #1019A0;
}

.section-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-text {
    text-align: center;
    color: white;
    font-size: 3.5em;
    /* Ajustar según el tamaño del título del video */
    font-family: 'GrandisExtend', sans-serif !important;
    text-transform: uppercase;
    position: absolute;
    /* Permite el posicionamiento absoluto */
    top: 50%;
    /* Centrar verticalmente */
    left: 50%;
    /* Centrar horizontalmente */
    transform: translate(-50%, -50%);
    /* Ajuste fino para centrar */
    z-index: 1;
    /* Asegura que el texto esté por encima de las imágenes */
    width: 100%;
}

.left-image {
    width: 50%;
}

.right-image {
    position: sticky;
    /* Cambiado a sticky */
    text-align: right;
    top: 0;
    width: 60%;
    /* Ajustar según el espacio deseado */
    height: 90vh;
    z-index: 0;
    /* Asegura que las imágenes estén detrás del texto */
    margin-bottom: -300px;
}

.left-image {
    left: 0;
}

.right-image {
    right: 0;

}

.left-image img {
    width: 70%;
    padding-left: 6em;
}

.right-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    /* Ajusta la imagen al contenedor manteniendo la proporción */
}

/* Cards Section Styles */
.cards-section {
    width: 100%;
    background-color: #1019A0;

}

.cards-container {
    padding-left: 10%;
    padding-right: 10%;
    max-width: 100%;
    /* Ancho máximo del contenedor */
    display: flex;
    justify-content: center;
    /* Distribuir el espacio entre las tarjetas */
    align-items: stretch;
    /* Alinear verticalmente */
}

.card {
    max-width: calc(50%);
    /* Ancho de cada tarjeta */
    box-sizing: border-box;
    /* Incluir padding y borde en el ancho */
}

.left-card {
    font-family: 'GrandisExtend', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-items: center;
    background-image: url("https://intercargagruas.com/wp-content/uploads/2025/02/Diseno-sin-titulo-2.png");
    background-size: cover;
    /* Hace que la imagen cubra completamente el div */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    padding: 80px 40px;
    color: #10179F;
    max-height: 350px;
}

.right-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-card img {
    max-width: 100%;
    /* Ancho máximo de la imagen */
    height: 350px;
    /* Altura máxima de la imagen */
    object-fit: cover;
    /* Ajustar la imagen al contenedor */
}

/* ------------- Map Text Section Styles ----------------- */

/* Map Text Section Styles */
.map-text-section {
    position: relative;
    /* Para posicionar el fondo */
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    /* Ocultar el desbordamiento del fondo */
    background-color: #1019A0;
    padding-top: 150px;
}

.map-text-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

    padding-right: 10%;
    box-sizing: border-box;
    position: relative;
    /* Para el z-index */
    z-index: 1;
    /* Asegurar que esté sobre el fondo */
}

.map-column {
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

.map-column img {
    width: 100%;
    display: block;
}

.text-column {
    width: 45%;
    padding-left: 20px;
    box-sizing: border-box;
    color: white;
    /* Color del texto */
}

.text-column h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-info img {
    width: 30px;
    /* Tamaño de los iconos */
    margin-right: 10px;
}

.location-info span {
    font-size: 1.2em;
    line-height: 1.5;
}

.background-lines {
    position: absolute;
    top: 15%;
    right: 0;
    width: 560px;
    /* Ajustar el ancho del fondo */
    height: 400px;
    z-index: 0;
    /* Fondo */
}

.background-lines img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cubrir el área */
    position: sticky;
    /* Fijar con el scroll */
    top: 0;
}

/* -------------Slider Section Styles--------------- */

.slider-section {
    margin-top: 70px;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #1019A0;
    font-size: 1.2em;
}

.slider-container {
    width: 60%;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    width: auto;
    /* Ajustado por JavaScript */
    animation: slide 20s linear infinite; /* Ajusta la duración según el número de imágenes */
}

.slide {
    width: 250px;
    height: 250px;
    margin-right: 40px;
    /* Espacio entre imágenes */
    flex-shrink: 0;
    /* Evitar que las imágenes se compriman */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animación del slider */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-290px * 13)); /* Ajustar para 11 imágenes (250px + 40px de margen) */
    }
}


/*----------------- ABOUT US ------------------*/

/* Sección Nosotros con Banner */
.nosotros-banner {
    position: relative;
    min-height: 250px;
    background: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: flex-start;
    /* Alinea el contenido a la izquierda */
    align-items: center;
    padding: 20px;
    text-align: left;
    overflow: hidden;
    margin-bottom: 40px;
}

.nosotros-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nosotros-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: 250px;
    /* Margen izquierdo para alinear el contenido */
    margin-right: auto;
    text-align: left;
    /* Asegura que el texto esté alineado a la izquierda */
}

.nosotros-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: left;
}

.nosotros-content p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
}

/* ------------- PRIMERA SECCIÓN ABOUT US --------------- */

.nosotros-slider-text-section {
    max-width: 70%;
    margin: 40px auto 40px auto;
    background-color: white;
}

.nosotros-columns-container {
    display: flex;
    align-items: center;
}

.nosotros-slider-container {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    margin-right: 50px;
}

.nosotros-slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nosotros-slider {
    display: flex;
    width: 1050px;
    /* 3 imágenes de 350px */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.nosotros-slide {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
}

.nosotros-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nosotros-text-container {
    flex: 1;
    text-align: left;
    padding-right: 60px;
}

.nosotros-text-container h2 {
    color: #1019A0;
    font-size: 2em;
    margin-bottom: 10px;
}

.nosotros-text-container p {
    color: #8c8c8c;
    font-size: 1.2em;
    line-height: 1.5;
}

/* Estilos para los botones */
.nosotros-prev-btn,
.nosotros-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FB662A;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;

    transition: opacity 0.3s;
}

.nosotros-prev-btn:hover,
.nosotros-next-btn:hover {
    opacity: 1;
}

.nosotros-prev-btn {
    left: 0px;
}

.nosotros-next-btn {
    right: 0px;
}

/* ------------ SEGUNDA SECCION DE ABOUT US -------------- */


.sectores-section {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

/* Imagen de fondo pegada a la derecha y centrada verticalmente */
.sectores-section::before {
    content: "";
    position: absolute;
    top: 1290px;
    right: 0;
    width: 800px;
    /* Ajusta el ancho según necesites */
    height: 100%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Naranja.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    transform: translateY(-50%);
    z-index: -1;
    margin-right: -200px;
}

.sectores-section h2 {
    color: #10179F;
    font-size: 2em;
}

.sectores-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.sectores-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Ancho máximo del contenedor */
}

.sector-item {
    width: 370px;
    height: 450px;
    margin: 20px;
    display: flex;
    justify-content: center;
}

.sector-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
    /* Para posicionar el título */
    overflow: hidden;
    /* Ocultar el desbordamiento */
}

.sector-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 23, 159, 0) 0%, #081171 100%);
    z-index: 1;
    /* Se coloca sobre la imagen pero detrás del contenido */
}

.sector-content h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
    font-family: 'Anaheim', sans-serif;
    text-align: left;
    position: absolute;
    /* Posiciona el título en la parte inferior */
    bottom: 30px;
    /* Alinea el título en la parte inferior */
    left: 30px;
    /* Alinea el título a la izquierda */
    width: 100%;
    /* Ocupa todo el ancho */
    box-sizing: border-box;
    /* Incluye el padding en el ancho */
    padding-bottom: 10px;
    /* Espacio entre el texto y la línea */
    z-index: 2;
}

.orange-line {
    height: 4px;
    width: 110px;
    background-color: #FB662A;
    position: absolute;
    /* Posiciona la línea */
    bottom: 0;
    /* Alinea la línea en la parte inferior */
    left: 0px;
    /* Alinea la línea a la izquierda */
}

/* ---------------- TERCER SECCIÓN ABOUT US -------------------*/
/*  Filosofia Section Styles */
.filosofia-section {
    text-align: center;
    padding: 20px 20px 60px 20px;
    background-image: url("https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Filosofia.png");
    color: #ffffff;
    background-size: cover;
}

.filosofia-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-family: 'GrandisExtended-Bold', sans-serif;
}

.filosofia-container {
    display: flex;
    justify-content: space-around;
    max-width: 80%;
    margin: 0 auto;
    flex-wrap: wrap; /* Permite que los contenedores se envuelvan en pantallas más pequeñas */
}

.filosifiaImg{
    height: 150px;
    width: 100%;
    background-size: cover;
}

.filosofia-item {
    background-color: #ffffff;
    color: #8c8c8c;
    text-align: left;
    width: 250px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.filosofia-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Anaheim-Bold', sans-serif;
    color:#6c6c6c;
    padding-left: 30px;
}

.filosofia-item p {
    font-size: 1.1em;
    line-height: 1.6;
    font-family: 'Anaheim', sans-serif;
    padding: 10px 30px 40px 30px;
}

/* ----------------SERVICIOS ESTANDARES --------------------*/

.servicios-estandares-section {
    background-color: white;
    text-align: center;
    padding: 20px 20px 60px 20px;
    color: #ffffff;
}

.servicios-estandares-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-family: 'GrandisExtended-Bold', sans-serif;
    color: #10179F;
    padding: 30px 0 30px 0;
}

.servicios-estandares-container {
    display: flex;
    justify-content: space-around;
    max-width: 80%;
    margin: 0 auto;
    flex-wrap: wrap; /* Permite que los contenedores se envuelvan en pantallas más pequeñas */
}

.servicios-estandares-Img{
    height: 250px;
    width: 250px;
    background-size: cover;
    z-index: 0;
}

.servicios-estandares-item {
    background-color: #ffffff;
    color: #8c8c8c;
    text-align: left;
    width: 210px;
    margin-bottom: 20px;
    box-sizing: border-box;
    z-index: 1000;
}

.servicios-estandares-item h3 {
    background-color: white;
    padding: 20px;
    font-size: 1.4em;
    margin-top: -50px;
    font-family: 'Anaheim-Bold', sans-serif;
    color:#6c6c6c;
    padding-left: 30px;
}

.servicios-estandares-item p {
    font-size: 1.1em;
    line-height: 1.6;
    font-family: 'Anaheim', sans-serif;
    padding: 10px 30px 40px 30px;
}

.boton-naranja {
    background-color: #FF6529; /* Color naranja */
    color: white; /* Color de la letra */
    padding: 10px 30px; /* Espacio dentro del botón */
    border: none; /* Sin borde */
    cursor: pointer; /* Cambiar cursor al pasar sobre el botón */
    margin-left: 30px;
    position: absolute;
    top: 3600px;
}

.boton-naranja:hover {
    background-color: #FF9900; /* Cambiar a un tono más oscuro al pasar el cursor */
}

/*-------------------------------- EQUIPOS -----------------------------*/

/* Sección Nosotros con Banner */
.equipos-banner {
    position: relative;
    min-height: 250px;
    background: url('https://intercargagruas.com/wp-content/uploads/2025/02/SERVICIOS.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: flex-start;
    /* Alinea el contenido a la izquierda */
    align-items: center;
    padding: 20px;
    text-align: left;
    overflow: hidden;
    margin-bottom: 40px;
}

.equipos-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.equipos-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: 250px;
    /* Margen izquierdo para alinear el contenido */
    margin-right: auto;
    text-align: left;
    /* Asegura que el texto esté alineado a la izquierda */
}

.equipos-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: left;
}

.equipos-content p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
}

.equipos-section {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

/* Imagen de fondo pegada a la derecha y centrada verticalmente */


.equipos-section h2 {
    color: #10179F;
    font-size: 2em;
}

.equipos-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.equipos-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Ancho máximo del contenedor */
}

.equipo-item {
    width: 370px;
    height: 450px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 5px 5px 10px -3px rgba(0,0,0,0.91);
    -webkit-box-shadow: 5px 5px 10px -3px rgba(0,0,0,0.91);
    -moz-box-shadow: 5px 5px 10px -3px rgba(0,0,0,0.91);
    z-index: 0;
}

.equipo-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}


.equipo-item h3 {
    color: #6b6b6b;
    font-size: 1.5em;
    margin: 0;
    font-family: 'Anaheim', sans-serif;
    text-align: left;
    padding: 20px;
}

.equipo-item ul{
    text-align: left;
    padding: 0 20px 20px 50px;
}
.equipo-item li{
    color: #8c8c8c;
}

.orange-banner{
    background-color: #FF6529;
    color: white;   
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 80px 0;
    margin-top: 50px;
}

.orange-banner p{
    font-size: 14px;
}

.boton-azul {
    background-color: #081171;
    height: 50px;
    font-size: 18px;
    color: white; /* Color de la letra */
    padding: 5px 25px; /* Espacio dentro del botón */
    border: none; /* Sin borde */
    cursor: pointer; /* Cambiar cursor al pasar sobre el botón */
    position: inherit;
}

.boton-azul:hover {
    background-color: #FF9900; /* Cambiar a un tono más oscuro al pasar el cursor */
} 

/*----------------------- SERVICIOS ----------------------*/

/* TARJETAS BANNER
/* Cards Section Styles */
.cards-section-servicios {
    overflow: hidden !important;
    width: 100%;
}

/* Imagen de fondo pegada a la derecha y centrada verticalmente */
.cards-section-servicios::before {
    content: "";
    position: absolute;
    top: 569px;
    right: 0;
    width: 810px;
    /* Ajusta el ancho según necesites */
    height: 100%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Naranja.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    transform: translateY(-50%);
    z-index: -1;
    margin-right: -200px;
    overflow: hidden !important;
}

.cards-container-servicios {
    overflow: hidden !important;
    padding-left: 10%;
    padding-right: 10%;
    max-width: 100%;
    /* Ancho máximo del contenedor */
    display: flex;
    justify-content: center;
    /* Distribuir el espacio entre las tarjetas */
    align-items: stretch;
    /* Alinear verticalmente */
    margin-bottom: 40px;
    height: 400px;
}

.card-servicios {
    max-width: calc(50%);
    /* Ancho de cada tarjeta */
    box-sizing: border-box;
    /* Incluir padding y borde en el ancho */
    
}

.left-card-servicios {
    font-family: 'GrandisExtend', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-items: center;
    background-image: url("https://intercargagruas.com/wp-content/uploads/2025/02/ofrecemos_servicios-09.png");
    background-size: cover;
    /* Hace que la imagen cubra completamente el div */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    padding: 100px 80px;
    color: white;
}

.right-card-servicios {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-card-servicios img {
    min-width: 100%;
    /* Ancho máximo de la imagen */
    height: 100%;
    /* Altura máxima de la imagen */
    object-fit: cover;
    /* Ajustar la imagen al contenedor */
}

/* TERCERA SECCION DE SERVICIOS */

/*  Servicios Section Styles */
.servicios-section {
    text-align: center;
    padding: 80px 20px 60px 20px;
    background-image: url("https://intercargagruas.com/wp-content/uploads/2025/02/SERVICIOS.png");
    color: #ffffff;
    background-size: cover;
}

.servicios-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-family: 'GrandisExtended-Bold', sans-serif;
}

.servicios-container {
    max-width: 65% !important;
    display: flex;
    justify-content: space-around;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* Permite que los contenedores se envuelvan en pantallas más pequeñas */
}

.serviciosImg{
    height: 250px;
    width: 100%;
    background-size: cover;
}

.servicios-item {
    background-color: #ffffff;
    color: #8c8c8c;
    text-align: left;
    width: 250px;
    margin-bottom: 20px;
    box-sizing: border-box;
    height: 455px;
    
}

.servicios-item p {
    font-size: 1.3em;
    line-height: 1.6;
    font-family: 'Anaheim', sans-serif;
    padding: 30px 30px 30px 20px;
    line-height: 30px;
}

/* ----------------------- SECCION DE CONTACTO ---------------------*/
.contact-section {
    padding: 100px 40px;
}

.contact-section-contact{
    padding: 100px 40px;
}

.contact-title {
    font-size: 24px;
    color: #003399;
    text-align: center;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

/* Información de contacto */
.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item{
    text-align: center;
}
.info-item h2 {
    font-size: 16px;
    color: #6b6b6b;
    text-transform: uppercase;
}

.info-item p,
.info-item a {
    font-size: 14px;
    color: #8c8c8c;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Mapa y formulario */
.map-form-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    
}

.map-container {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
}

.map-container iframe{
    width: 800px;
    height: 350px;
}

.contact-form {
    flex-basis: 40%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/02/Formulario.png');
    background-size: cover;
    padding: 20px;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: calc(100%);
    padding: 10px;
    background-color: #ff6600;
    color: white;
    border: none;
}

.contact-form button:hover {
    background-color: #cc5200;
}

.social-icons {
    display: flex;
    gap: 10px; /* Ajusta el espacio entre los iconos */
    justify-content: center; /* Centra los iconos horizontalmente */
}

.social-icons a img {
    width: 24px; /* Ajusta el tamaño de los iconos */
    height: 24px;
    display: block; /* Elimina el espacio extra debajo de la imagen */
}

 /* Imagen de fondo pegada a la derecha y centrada verticalmente */
 .contact-section::before {
    content: "";
    position: absolute;
    top: 1740px;
    left: -300px;
    width: 800px;
    /* Ajusta el ancho según necesites */
    height: 100%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Naranja.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    transform: translateY(-50%);
    z-index: -1;
    
}

.contact-section-contact::before {
    content: "";
    position: absolute;
    top: 760px;
    left: -550px;
    width: 1150px;
    /* Ajusta el ancho según necesites */
    height: 100%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Naranja.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    transform: translateY(-50%);
    z-index: -1;
    
}

/* ------------------------------ PAGINA SEMINUEVOS -----------------------------*/
/* Sección Nosotros con Banner */
.seminuevos-banner {
    position: relative;
    min-height: 250px;
    background: url('https://intercargagruas.com/wp-content/uploads/2025/02/SERVICIOS.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: flex-start;
    /* Alinea el contenido a la izquierda */
    align-items: center;
    padding: 20px;
    text-align: left;
    overflow: hidden;
}

.seminuevos-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.seminuevos-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: 250px;
    /* Margen izquierdo para alinear el contenido */
    margin-right: auto;
    text-align: left;
    /* Asegura que el texto esté alineado a la izquierda */
}

.seminuevos-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: left;
}

.seminuevos-content p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
}

.seminuevos{
    background-color: #10179F;
    min-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.seminuevos-izquierdo,.seminuevos-derecho{
    z-index: 2;
}
.seminuevos-izquierdo img{
    width: 100px;
    margin-bottom: 20px;
}
.seminuevos-izquierdo p{
    color:white;
    font-family: 'Anaheim';
}
.seminuevos-izquierdo h3{
    color: white;
}

.seminuevos-derecho img{
    width: 500px;
}
.orange-line-seminuevos {
    height: 4px;
    width: 110px;
    background-color: #FB662A;
    position: relative;
    margin-top: 20px;
}

 /* Imagen de fondo pegada a la derecha y centrada verticalmente */
 .seminuevos::before {
    content: "";
    position: absolute;
    top: 700px;
    left: 0;
    width: 700px;
    /* Ajusta el ancho según necesites */
    height: 100%;
    background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Blanca.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    transform: translateY(-50%);
    z-index: 0;
    margin-left: -200px;   
}

/* ----------------FOOTER FOOTER FOOTER FOOTER----------------- */

.footer {
    background-color: #1019A0;
    color: white;
    padding: 100px;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 80%;
    /* Ancho máximo del 80% en escritorio */
    margin: 0 auto;
    /* Centrar el contenido */
}

.footer-info,
.footer-menu,
.footer-contact,
.footer-social {
    margin-bottom: 20px;
    max-width: 250px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}


.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 5px;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
}

.footer-contact p,
.footer-social p {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.footer-contact i,
.footer-social i {
    margin-right: 5px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

.icono-footer {
    width: 20px; /* Ajusta el ancho según tus iconos */
    height: 20px; /* Ajusta el alto según tus iconos */
    margin-right: 10px; /* Espacio entre el icono y el texto */
    vertical-align: middle; /* Alinea verticalmente el icono con el texto */
  }
  
  .texto-footer {
    /* Aquí puedes agregar estilos adicionales para el texto */
    font-size: 16px; /* Tamaño de fuente */
    color: white;
  }
  
/*--------------------- CERTIFICACIONES -------------------*/
  .sectores-section-second {
    background-image: url('/img/Pagina-18.png');
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}



.sectores-section-second h2 {
    color: #10179F;
    font-size: 2em;
}

.sectores-container-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.sectores-row-second {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Ancho máximo del contenedor */
}

.sector-item-second {
    
    width: 100%;
    height: 350px;
    margin: 20px;
    display: flex;
    justify-content: center;
}

.sector-content-second {
    background-color: white;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    /* Para posicionar el título */
    overflow: hidden;
    /* Ocultar el desbordamiento */
    padding: 20px;
}

.sector-content-second img{
    width: 100px;
}



.sector-content-second h3 {
    color: #8c8c8c;
    font-size: 1.5em;
    margin: 0;
    font-family: 'Anaheim', sans-serif;
    text-align: left;
    /* Alinea el título a la izquierda */
    width: 100%;
    /* Ocupa todo el ancho */
    box-sizing: border-box;
    /* Incluye el padding en el ancho */
    padding-bottom: 10px;
    /* Espacio entre el texto y la línea */
    z-index: 2;
}

.sector-content-second p{
    text-align: left;
    color: #ccc;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    
    .sectores-row-second{
        display: flex;
        flex-direction: column;
    }

    .navbar-content {
        /*display: none; /* Oculta el contenido de la barra de navegación */
        flex-direction: column;
        /* Alinea los elementos verticalmente */
        align-items: flex-start;
        /* Alinea los elementos a la izquierda */
    }

    .logo {
        display: block;
        /* Asegura que el logo se muestre */
    }

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        display: none;
        /* Inicialmente oculto */
        margin-top: -10px;
    }

    .menu ul {
        flex-direction: column;
        padding: 0;
    }

    .menu ul li {
        margin: 0;
        border-bottom: 1px solid #ccc;
    }

    .menu ul li a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        /* Muestra el botón de hamburguesa */
        position: fixed;
        /* Fija el botón en la pantalla */
        top: 10px;
        /* 10px desde la parte superior */
        right: 20px;
        /* 20px desde la derecha */
        z-index: 2;
        /* Asegura que esté por encima de otros elementos */
        font-size: 2em;
        /* Aumenta el tamaño de la fuente */
        padding: 5px 10px;
        /* Agrega un poco de padding */
    }

    .navbar {
        flex-wrap: wrap;
        /* Permite que los elementos se envuelvan */
        position: relative;
        /* Añadido para posicionar el botón toggle */
    }

    .contact-button {
        display: none;
        /* Oculta el botón de contacto */
    }


    /* VIDEO VIDEO VIDEO VIDEO VIDEO*/

    .video-section {
        margin-top: -1px;
        height: 50vh;
        /* Altura del 50% del viewport height en móviles */
    }

    .video-overlay h1 {
        font-size: 2em;
        /* Ajustar el tamaño del texto en móviles */
        text-align: left;
        padding-left: 5%;
        padding-top: 50px;
    }

    .video-overlay p {
        font-size: 1.2em;
        /* Ajustar el tamaño del texto en móviles */
    }

    /*----- ABOUUUUTT SECTIIOOOON -------*/
    .custom-section {
        position: relative;
        width: 100%;
        height: 70vh;
        /* Altura del 100% del viewport height */
        overflow: hidden;
        background-color: #10179F;
    }

    .left-image {
        display: none;
    }

    .right-image {
        display: block;
        /* Oculta las imágenes en dispositivos móviles */
    }

    .centered-text {
        font-size: 1.5em;
        /* Ajustar el tamaño del texto en móviles */
    }

    /* TARJETAS HOME */
    .cards-section {
        min-width: 100%;
        padding: 0px;
        margin: 0px;
    }
    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0%;

    }

    .cards-container p{
        font-size: 1.1em;
    }
    .card {
        min-width: 100%;
        /* Ancho completo en móviles */
    }

    /* ------------------- map text container ---------------------- */

    .map-text-container {
        flex-direction: column;
        padding: 0px;
    }

    .map-column,
    .text-column {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .background-lines {
        display: none;
        /* Ocultar en móvil */
    }

    .location-info {
        margin-bottom: 5px;
        /* Reducir el margen en móviles */
    }

    .location-info img {
        width: 20px;
        /* Reducir el tamaño de los iconos en móviles */
        margin-right: 5px;
    }

    .location-info span {
        font-size: 2em;
        /* Reducir el tamaño del texto en móviles */
    }

    /*-----------------SLIDER MOVIL ------------------*/
    .slider-container {
        width: 90%;
        /* Ancho en móviles */
    }

    .slide {
        width: 250px;
        height: 250px;
    }

    /* ---------------- ABOUT US ------------------*/
    /* Sección "Nosotros" en móvil */
    .nosotros-banner {
        min-height: 30vh;
        /* Altura del 50% del viewport height */
        display: flex;
        flex-direction: column;
        /* Alinea los elementos verticalmente */
        justify-content: center;
        /* Centra verticalmente */
        align-items: center;
        /* Centra horizontalmente */
        text-align: center;
        /* Alinea el texto al centro */
        padding: 20px;
        margin-top: -1px;
    }

    .nosotros-content {
        max-width: 90%;
        /* Ajusta el ancho del contenido */
        margin-left: auto;
        /* Elimina el margen izquierdo */
        margin-right: auto;
        /* Centra el contenido horizontalmente */
        z-index: inherit;
    }

    .nosotros-content h2 {
        font-size: 2em;
        /* Ajusta el tamaño del título */
        z-index: inherit;
    }

    .nosotros-content p {
        font-size: 1.5em;
        /* Ajusta el tamaño del párrafo */
    }

    /*---------------- PRIMER SECCION ABOUT US  ---------------*/

    .nosotros-slider-text-section {
        max-width: 100%;
        margin-top: -40px;
        background-color: white;
        padding: 50px 0;
    }

    .nosotros-columns-container {
        display: flex;
        flex-direction: column;
        padding: 5%;
    }
    .nosotros-slider-container{
        margin: 0;
    }

    .nosotros-text-container{
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .nosotros-text-container h2{
        font-size: 1.8em;
        margin: 40px 0px;
    }

    /*---------------- SEGUNDA SECCION ABOUT US  ---------------*/

    .sectores-container {
        display: flex;
        flex-direction: column;
    }

    .sectores-section h2 {
        color: #10179F;
        font-size: 1.8em;
        margin-bottom: 90px;
    }

    .sector-content h3 {
        font-size: 1.5em;
    }

    /* Imagen de fondo pegada a la derecha y centrada verticalmente */
    .sectores-section::before {
        content: "";
        position: absolute;
        top: 1400px;
        right: 50%;
        width: 400px;
        /* Ajusta el ancho según necesites */
        height: 100%;
        background-image: url('https://intercargagruas.com/wp-content/uploads/2025/01/Intercarga_Linea_Naranja.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center right;
        transform: translateY(-50%);
        z-index: -1;
        margin-right: -200px;
    }

    /*------------------ FILOSOFIA SECCION ABOUT US -----------------*/
    .filosofia-section {
        text-align: center;
        padding: 20px 20px 60px 20px;
        background-image: url("");
        background-color: #081171;
        color: #ffffff;
        margin-top: -500px;
    }

    .filosofia-item{
        width: 100%;
        margin-bottom: 50px;
    }

    /*------------------ SERVICIOS ESTANDARES SECTION -------------------*/
    .servicios-estandares-section {
        background-color: white;
        color: #ffffff;
        max-width: 100%;
        margin: 0;
        padding: 10px 2%;
    }
    
    .servicios-estandares-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
        font-family: 'GrandisExtended-Bold', sans-serif;
        color: #10179F;
        padding: 30px 0 30px 0;
    }
    
    .servicios-estandares-container {
        min-width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap; /* Permite que los contenedores se envuelvan en pantallas más pequeñas */
        margin: 0px;
        padding: 0px;
    }
    
    .servicios-estandares-Img{
        height: 350px;
        min-width: 100%;
        background-size: cover;
        z-index: 0;
    }
    
    .servicios-estandares-item {
        background-color: #ffffff;
        color: #8c8c8c;
        text-align: left;
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
        z-index: 1000;
    }
    
    .servicios-estandares-item h3 {
        background-color: white;
        padding: 20px;
        font-size: 1.4em;
        margin-top: -50px;
        font-family: 'Anaheim-Bold', sans-serif;
        color:#6c6c6c;
        padding-left: 30px;
        width: 50%;
    }
    
    .servicios-estandares-item p {
        font-size: 1.1em;
        line-height: 1.6;
        font-family: 'Anaheim', sans-serif;
        padding: 10px 30px 40px 30px;
    }
    
    .boton-naranja {
        background-color: #FF6529; /* Color naranja */
        font-size: 18px;
        color: white; /* Color de la letra */
        padding: 10px 55px; /* Espacio dentro del botón */
        border: none; /* Sin borde */
        cursor: pointer; /* Cambiar cursor al pasar sobre el botón */
        margin-left: 25%;
        position: inherit;
        margin-top: -20px;
        margin-bottom: 30px;
    }
    
    .boton-naranja:hover {
        background-color: #FF9900; /* Cambiar a un tono más oscuro al pasar el cursor */
    } 

    /*----------------- EQUIPOS MOVIL -----------------*/
    .equipos-banner {
        min-height: 30vh;
        /* Altura del 50% del viewport height */
        display: flex;
        flex-direction: column;
        /* Alinea los elementos verticalmente */
        justify-content: center;
        /* Centra verticalmente */
        align-items: center;
        /* Centra horizontalmente */
        text-align: center;
        /* Alinea el texto al centro */
        padding: 20px;
        margin-top: -1px;
        max-width: 100vw !important;
    }

    .equipos-content {
        max-width: 90%;
        /* Ajusta el ancho del contenido */
        margin-left: auto;
        /* Elimina el margen izquierdo */
        margin-right: auto;
        /* Centra el contenido horizontalmente */
        z-index: inherit;
    }

    .equipos-content h2 {
        font-size: 2em;
        /* Ajusta el tamaño del título */
    }

    .equipos-content p {
        font-size: 1.5em;
        /* Ajusta el tamaño del párrafo */
    }

    .equipos-container {
        display: flex;
        flex-direction: column;
    }

    .equipos-section h2 {
        color: #10179F;
        font-size: 1.8em;
        margin-bottom: 90px;
    }

    .equipos-content h3 {
        font-size: 1.5em;
    }

    .orange-banner{
        background-color: #FF6529;
        color: white;   
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 80px 0;
        margin-top: -450px;
    }

    .orange-banner-content p{
        margin-bottom: 30px;
    }

    /* ----------------------PÁGINA SERVICIOS MOVIL --------------------*/
    .card {
        max-width: calc(100%);
        /* Ancho de cada tarjeta */
        box-sizing: border-box;
        /* Incluir padding y borde en el ancho */
    }
    .cards-container-servicios{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .left-card-servicios {
        font-family: 'GrandisExtend', sans-serif !important;
        display: flex;
        flex-direction: column;
        justify-items: center;
        background-image: url("https://intercargagruas.com/wp-content/uploads/2025/02/ofrecemos_servicios-09.png");
        background-size: cover;
        /* Hace que la imagen cubra completamente el div */
        background-position: center;
        /* Centra la imagen */
        background-repeat: no-repeat;
        /* Evita que la imagen se repita */
        padding: 40px;
        color: white;
    }

    .servicios-section{
        background-color: #10179F;
        background-image: url('');
        padding: 0;
        margin: 0;
    }

    .servicios-container{
        padding: 70px 0;
        margin: 0;
        min-width: 100%;
    }

    .map-form-container{
        min-width: 100%;
    }

    .map-container{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .map-container iframe{
        width: 300px;
    }

    .contact-form{
        margin-left: 0;
    }

    /* ----------------------------------- VENTA DE SEMINUEVOS ----------------------------------*/

    .seminuevos-banner {
        min-height: 30vh;
        /* Altura del 50% del viewport height */
        display: flex;
        flex-direction: column;
        /* Alinea los elementos verticalmente */
        justify-content: center;
        /* Centra verticalmente */
        align-items: center;
        /* Centra horizontalmente */
        text-align: center;
        /* Alinea el texto al centro */
        padding: 20px;
        margin-top: -1px;
        max-width: 100vw !important;
    }

    .seminuevos-content {
        width: 90%;
        margin: 0;
        padding: 0;
        z-index: inherit;
    }

    .seminuevos-content h2 {
        font-size: 2em;
        /* Ajusta el tamaño del título */
    }

    .seminuevos-content p {
        font-size: 1.5em;
        /* Ajusta el tamaño del párrafo */
    }

    .seminuevos{
        display: flex;
        flex-direction: column;
    }
    .seminuevos-derecho img{
        width: 300px;
        margin-top: 50px;
    }



    /* FOOTER MOVIL FOOTER MOVIL FOOTER MOVIL */
    .footer {
        background-color: #1019A0;
        color: white;
        padding: 50px 0;
        text-align: left;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        max-width: 90%;
        /* Ancho máximo del 90% en móvil */
        padding: 0 10%;
        /* Padding del 10% en los lados */
        margin: 0 auto;
        /* Centrar el contenido */
    }

    .footer-info,
    .footer-menu,
    .footer-contact,
    .footer-social {
        width: 100%;
        margin-bottom: 20px;
    }
    
     
    
}