/* Fuente global */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: url('Footer/FondoParallax.png') no-repeat right top;
    background-size: cover;
    background-attachment: fixed;
    background-color: #f8f9fa; /* Ajusta el color de fondo si es necesario */
    display: flex;
    flex-direction: column;
}
h2{
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 400; /* Regular */
    color: #A5A5A5;

}

/* Espaciador entre secciones */
.spacer {
    height: 200px; /* Altura del espacio */
    width: 100%; /* Ancho completo */
    margin: 0; /* Sin márgenes adicionales */
}

.logo-header {
    max-width: 150px; /* Tamaño uniforme de los logotipos */
    height: auto;
    filter: grayscale(100%); /* Escala de grises */
    transition: filter 0.3s ease; /* Transición en el hover */
    filter: invert(1);

      
}


.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #A5A5A5;
    background-color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 130, 145, 0.48); /* Color con 48% de transparencia */
    padding: 15px 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*mix-blend-mode: multiply;  Modo multiplicar */
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}




.navigation {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00c6d1; /* Resaltar */
}


/* Menu Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    background-color: white;
    width: 30px;
    height: 3px;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Menu Mobile */
/* Ajustes para el menú desplegable */
.mobile-nav {
    display: flex !important;  /* Asegura que se muestre el menú */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(119, 188, 197, 0.95);  /* Fondo semi-transparente */
    padding: 20px 0;
    z-index: 1000;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}


/* Animación del botón hamburguesa (X cuando está abierto) */
.hamburger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle div:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}


.hero-clientes {
    height: 100vh;
    background: url('HomePage/NuestrosClientes_tankroom.jpg') no-repeat center center/cover; /* Imagen de fondo */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineación izquierda */
    position: relative;
    color: white;
    padding: 0 10%; /* Espaciado desde los lados */
}

/* Sección Hero */
.hero {
    height: 100vh; /* Ocupa toda la altura de la ventana */
    min-height: 700px; /* Asegura un alto mínimo decente en pantallas pequeñas */
    background: url('HomePage/Portada_HomePage-1920x1080jpg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    position: relative;
    color: white;
    padding: 0 10%;
    transition: background 0.5s ease-in-out; /* Transición suave para el cambio */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el video al contenedor */
    opacity: 0; /* Oculto inicialmente */
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hero-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el video al contenedor */
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hero {
        height: 100vh; /* Siempre ocupa el 100% de la ventana */
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 100px;
}

/*responsivos*/

/* --- Responsivo para tabletas --- */
@media (max-width: 1024px) {
    .hero-content {
        font-size: 2.5em;
        text-align: center;
    }
    .hero-video {
        height: 100vh; /* Mantiene el video cubriendo toda la pantalla */
        object-position: center; /* Centra el video vertical y horizontalmente */
    }
    
}




/* Texto de la sección Hero */
.hero-subtitle, .hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title .highlight {
    font-size: 48px;
    color: #A5A5A5;
    position: relative;
    display: inline-block;
}


/* Sección Nosotros */
.about-us {
    padding: 60px 10%;
    background: url(HomePage/Nosotros_oscuro-resized.jpg) no-repeat right top;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
}

/* Contenedor General */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

/* Texto */
.about-text {
    flex: 1;
    max-width: 45%; /* Ajusta el ancho para mantener el equilibrio */
}

.about-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
}

.about-title::after {
    content: '';
    display: block;
    width: 200px; /* Línea azul bajo el título */
    height: 3px;
    background-color: #00c6d1; /* Azul claro */
    margin-top: 25px;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400; /* Regular */
    color: #A5A5A5; /* Texto gris */
    line-height: 1.8; /* Espaciado entre líneas */
    margin-bottom: 20px;
    width: 70%;
    padding-bottom: 50px;
}

.about-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400; /* Regular */
    color: #A5A5A5; /* Gris claro */
    line-height: 1.8;
}

.about-images {
    flex: 1;
    max-width: 50%; /* Ajusta el ancho del contenedor de imágenes */
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.about-image {
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra */
}

.about-image-bottom {
    width: 100%; /* Imagen grande ocupa todo el ancho permitido */
    position: relative;
    z-index: 1; /* Imagen grande en el fondo */
}

.about-image-top {
    width: 70%; /* Imagen pequeña más estrecha */
    position: absolute;
    z-index: 2; /* Imagen pequeña al frente */
    bottom: -100px; /* Alineación vertical al pie de la imagen grande */
    left: 50%; /* Centrado horizontal */
    transform: translateX(-50%); /* Ajuste para centrar la imagen */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra adicional */
}

/* Sección General */
.business-partners {
    padding: 40px 10%;
}

.business-title {
    
    margin-bottom: 20px;
    text-align: left; /* Alineado a la izquierda */
    position: relative;
}

.business-title::after {
    content: '';
    display: block;
    width: 80px; /* Largo de la línea */
    height: 3px;
    background-color: #00c6d1; /* Línea decorativa en azul */
    margin-top: 5px;
}

/* Contenedor de Logotipos */
.business-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap; /* Adaptación para pantallas pequeñas */
}


/* Logotipos */
.logo-partners {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%) invert(100%) brightness(1000%);
    transition: filter 0.3s ease; /* Transición en el hover */
    padding: 10px;
}
.logo-partners-global {
    max-width: 110px;
    height: auto;
    filter: grayscale(100%) invert(100%) brightness(1000%);
    transition: filter 0.3s ease; /* Transición en el hover */
    padding: 10px;
}




.logo-partners:hover {
    filter: none; /* Volver al color original al pasar el cursor */
    transform: scale(1.1);
}

.logo-partners-global:hover {
    filter: none; /* Volver al color original al pasar el cursor */
    transform: scale(1.1);
}

/* Logotipos */
.logo {
    max-height: 70px;
    max-width: 180px;
    height: auto;
    filter: grayscale(100%); /* Escala de grises */
    transition: filter 0.3s ease; /* Transición en el hover */
    padding: 10px;
    
}



.logo:hover {
    filter: none; /* Volver al color original al pasar el cursor */
}
/* Sección Proyectos */
.projects {
    padding: 60px 10%;
}

.projects-title {
    
    margin-bottom: 30px;
    position: relative;
}

.projects-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00c6d1;
    margin: 10px 0;
}

/* Carrusel */
.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-image {
    min-width: 100%;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botones del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn-left {
    left: 10px;
}

.carousel-btn-right {
    right: 10px;
}

/* Modal */
    .modal {
        display: none;  /* Oculta el modal por defecto */
        position: fixed;
        z-index: 1000;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
    }
    

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.modal-image {
    width: 100%;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}


/* servicios Clientes */
.servicios-complementarios {
    position: relative;
    background: url('NuestrosServicios/servicios.jpg') no-repeat center center/cover; /* Imagen de fondo */
    padding: 60px 10%;
    color: white;
}

.servicios-complementarios-overlay {
   /* background: rgba(0, 0, 0, 0.7);  Capa de oscurecimiento */
    padding: 40px;
    border-radius: 10px;
}

/* Sección Clientes */
.clients {
    position: relative;
    background: url('Nuestros_Clientes/NuestrosClientes_fondo.png') no-repeat center center/cover; /* Imagen de fondo */
    padding: 60px 10%;
    color: white;
}

.clients-overlay {
   /* background: rgba(0, 0, 0, 0.7);  Capa de oscurecimiento */
    padding: 40px;
    border-radius: 10px;
}

.clients-title {
        margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.clients-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00c6d1;
    margin-top: 5px;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.logoclientes {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1); /* Blanco en fondo oscuro */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.1); /* Efecto zoom al pasar el mouse */
    filter: brightness(1) invert(0); /* Cambia a color original */
}
/* Sección Call To Action */
.cta-section {
    position: relative;
    background: url('HomePage/WeMakeThingsHappen_fondo-sinTexto.jpg') no-repeat center center/cover; /* Imagen de fondo */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Superposición Oscura */
.cta-overlay {
    /*background: rgba(0, 0, 0, 0.6); /* Oscurecimiento del fondo */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #1c1c1c9b;

}

/* Texto a la Izquierda */
.cta-left {
}

.cta-left h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: normal;
    margin-bottom: 10px;
}

.cta-left .cta-line {
    width: 200px;
    height: 3px;
    background-color: #47ffff;
    border: none; /* Elimina cualquier borde */

    margin-bottom: 10px;
}

.cta-left h3 {
    color: #ffffff;
    font-size: 56px;
    font-weight: bold;

}

/* Texto a la Derecha */
.cta-right p {
    color: #ffffff;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
}

.cta-button {
    background-color: #00c6d1;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #019aa3;
}

main {
    flex: 1;
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(25deg, #003e47 50%, #1c1c1c 50%);
    color: white;
    padding: 40px 10%;
    font-size: 14px;
    position: relative; /* Para ajustes dentro del footer */
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Permitir diseño responsivo */
    gap: 50px;
}

/* Columnas del Footer */
.footer-column {
    flex: 1;
    min-width: 200px; /* Ancho mínimo para columnas */
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column p {
    margin: 5px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00c6d1; /* Efecto hover */
}


/* Redes Sociales */
.social-icon img {
    width: 24px;
    height: 24px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.2); /* Efecto de zoom al pasar el mouse */
}

/* Sección Descriptiva */
.tankers-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tankers-content {
    flex: 1;
    max-width: 50%;
    padding: 60px 10%;

}

.tankers-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.tankers-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
}

.tankers-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.tankers-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Sección del Equipo */
.team {
    padding: 40px 10%;
}

.team-title {
color: #333333;}

.team-subtitle {
    color: #333333;
    padding-bottom: 10px;
}
    



.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 1 1 calc(20% - 20px); /* Ajusta el tamaño de los perfiles */
    max-width: 150px;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

.team-photo:hover {
    transform: scale(1.1); /* Efecto de zoom interno */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Incrementa el efecto de sombra */
}

.team-name {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0;
    color: #A5A5A5;
}

.team-role {
    
font-family: 'Roboto', sans-serif;
font-weight: 400;
    font-size: 14px;
    color: #A5A5A5;
}



.case-studies {
    padding: 40px 10%;
}

.case-title {
    text-align: left;
    padding-top: 100px;
    margin-bottom: 40px;
    border-bottom: 3px solid #47ffff;
    display: inline-block;
}

.case-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    gap: 30px; /* Espaciado entre tarjetas */
}

.case-card {
    display: flex;
    background-color: #333333;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
}

.case-name {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
}

.case-year {
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
    margin-bottom: 10px;
}

.case-description {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
    margin-bottom: 15px;
}

.case-link {
    color: #00c6d1;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-link:hover {
    color: #007a85;
}


/* Para pantallas medianas (tablets) */
@media (max-width: 768px) {

    .about-us {
        background-position: left 0px top; /* Desplaza la imagen 20px hacia la derecha */

    }
    .services-contacto {
        background-position: center top; /* Mueve la imagen al centro */

    }

    .gallery-image {
        width: 70%;
        cursor: pointer;
        border-radius: 8px;
        object-fit: cover;
    }

    .case-description{
        display: none;
    }

    .cta-right {
        width: 45%;
        padding: 10px;

        
    }
    .cta-right p {
        color: #ffffff;
        font-size: 15px;
        font-weight: normal;
        margin-bottom: 10px;
        text-align: center;
    }

    .cta-button {
        background-color: #00c6d1;
        color: #ffffff;
        padding: 5px 10px;
        font-size: 15px;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .cta-left {
        padding: 10px;
        width: 55%;
        
    }
    .cta-left h2 {
        color: #ffffff;
        font-size: 20px;
        font-weight: normal;
        margin-bottom: 10px;
    }
    
    .cta-left .cta-line {
        width: 100px;
        height: 3px;
        background-color: #47ffff;
        border: none; /* Elimina cualquier borde */
    
        margin-bottom: 10px;
    }
    
    .cta-left h3 {
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
    
    }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .case-container {
        grid-template-columns: 1fr;
    }

    .case-title {
        font-size: 28px;
    }

    .case-card {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .case-image {
        height: 150px;
    }

    .case-info {
        padding: 15px;
    }

    .case-name {
        font-size: 20px;
    }


}

/* Sección Contacto */
.locations {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
    overflow: hidden;
}

.locations-title {
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;  /* Ajusta según sea necesario */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.gradient-background {
    position: absolute;
    top: 20%; /* Ajuste para que el degradado esté más abajo */
    left: 0;
    width: 100%;
    height: 70%; /* Define la altura del degradado */
    background: linear-gradient(to right, #ffffff75, #0000007c);
    z-index: 1; /* Asegura que el degradado esté detrás */
}

.map-image {
    position: absolute;
    z-index: 2; /* Asegura que el mapa esté por encima del degradado */
    width: 80%;  /* Ajusta el tamaño del mapa */
    max-width: 800px; /* Para limitar el ancho máximo */
}


.map-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.map-container:hover .map-image {
    transform: scale(1.1);  /* Efecto de zoom */
}

.locations-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
}

.locations-content {
    width: 30%;
}

.location-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
font-weight: 500; /* Regular */
color: #A5A5A5;
}

.location-item p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
    line-height: 1.6;
    margin-bottom: 30px;
}

.location-item-mty h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
font-weight: 500; /* Regular */
color: #A5A5A5;
padding-top: 50px;
}

.location-item-mty p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular */
color: #A5A5A5;
    line-height: 1.6;
    margin-bottom: 30px;
}

.map-container-google {
    width: 60%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.location-btn {
    padding: 10px 20px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.location-btn:hover {
    background-color: #005757;
}

/* Galería */
.scroll-gallery {
    display: flex;
    align-items: center;
    position: relative;
    margin: 20px auto;
    max-width: 90%;
    overflow: hidden;
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-image {
    width: calc(33.33% - 10px);
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.gallery-btn-left {
    left: 10px;
}

.gallery-btn-right {
    right: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.modal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.modal-btn-prev {
    left: 20px;
}

.modal-btn-next {
    right: 20px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.services-ubicaciones {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: auto;
    padding-top: 100px;
}

.services-contacto {
    background: url(Contacto/Contacto_oscuro-resized.jpg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: 100vh;
}

.services-tankjobs {
    background: url(TrabajaConNosotros/TANKjobs_oscuro-resized.jpg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: 100vh;
}

.services-tankers {
    background: url(TANKers/TANKers_oscuro-resized.jpg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: 200vh;
}

/* Sección Servicios */
.services {
    background: url(NuestrosServicios/NuestrosServicios_oscuro-resized.jpg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: 100vh;
}

.services-content {
    width: 50%;
    z-index: 2;
    padding: 10px 10%;
    
    
}
.services-content-servicios {
    width: 70%;
    z-index: 2;
    
    
}
.services-content-servicios-text {
 padding-left: 20%;    
 padding-top: 100px;   
}

.services-content-aviso {
    width: 100%;
    z-index: 2;
    padding: 10px 10%;
    padding-top: 100px;
}

.services-title {
    margin-bottom: 20px;
}
.services-sede {
    margin-bottom: 20px;
    font-size: 20px;
}
.services-line {
    width: 200px;
    height: 3px;
    background-color: #00c6d1; /* Color de la línea */
    border: none; /* Elimina cualquier borde */
    margin: 0 0 20px 0;
}

.services-subtitle {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #A5A5A5;
    margin-bottom: 20px;
}

.services-description {
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #A5A5A5;
    margin-bottom: 20px;
    width: 70%;
}

.services-description-jobs {
    font-size: 20px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #A5A5A5;
    margin-bottom: 20px;
}

.services-description-aviso {
    font-size: 20px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #A5A5A5;
    margin-bottom: 20px;
    width: 100%;
}
.services-image {
    width: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: auto;
}

.services-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}



/* Sección de Servicios Complementarios */
.complementary-services {
    background: url('NuestrosServicios/fondo_ServiciosComplem.jpg') no-repeat center center/cover;
    color: white;
    padding: 40px 10%;
    text-align: left;
}

.complementary-services-title {
    margin-bottom: 40px;
}

.title-line {
    width: 200px;
    height: 3px;
    background-color: #47ffff;
    border: none;
    margin-bottom: 10px;
}

.complementary-services-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.complementary-services-title .highlight {
    color: #00c6d1;
}

.complementary-services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.service-item img {
    width: 80px;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 14px;
    font-weight: 400;
}
/* Efecto de zoom para los ítems */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 150px;
    padding: 10px;
}

.service-item:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 150px;
    padding: 10px;
}

.service-item-1:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-2 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 130px;
    padding: 10px;
}

.service-item-2:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 120px;
    padding: 10px;
}

.service-item-3:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-4 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 155px;
    padding: 10px;
}

.service-item-4:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-5 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 105px;
    padding: 10px;
}

.service-item-5:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

.service-item-6 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 135px;
    padding: 10px;
}

.service-item-6:hover {
    transform: scale(1.1); /* Incrementa ligeramente el tamaño */
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en pantallas medianas */
    }
    .gallery-image {
        width: 70%;
        cursor: pointer;
        border-radius: 8px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }
}

.job-listings {
    padding: 60px 10%;
    
    color: #A5A5A5;
}

.job-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;

    color: #A5A5A5;}

.job-list {
    list-style: none;
    padding: 0;
    
    color: #A5A5A5;
}

.job-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.job-icon {
    width: 20px;
    height: 20px;
    background-color: #999;
    display: inline-block;
    margin-right: 20px;
    border-radius: 4px;
}

.job-info strong {
    font-size: 18px;

    color: #A5A5A5;}

.job-info p {
    font-size: 16px;

    color: #A5A5A5;    margin: 5px 0 0 0;
}


.info-section {
    padding: 60px 10%;
}

.info-item {
    margin-bottom: 40px;
}

.info-title {
    font-size: 20px;
    font-weight: bold;
    color: #A5A5A5;
    margin-bottom: 10px;
}

.info-text {
    font-size: 16px;
    color: #A5A5A5;
    line-height: 1.6;
}

/* Estilización del Botón */
.button-container {
    margin-top: 20px;
}

.apply-button {
    background-color: #00a6a6;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background-color: #008080;
    transform: scale(1.05);
}
.breadcrumb {
    font-size: 16px;
    color: #888;
    margin: 20px 0;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00a6a6;
}

.breadcrumb .current {
    color: #555;
    font-weight: bold;
}
/*project sections*/

.project-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;  /* Color oscuro para texto */
    padding-top: 100px;
    font-family: 'Poppins', sans-serif;  /* Mismo estilo de letra */
}

.project-header {
    text-align: left;
    width: 90%;
    max-width: 1400px;
}

.project-header h1 {
    font-size: 3.5em;  /* Tamaño más grande para h1 */
    margin: 0;
    font-weight: bold;
    color: #333333;  /* Mismo color de texto */
}

.project-header h3 {
    font-size: 1.3em;
    margin: 5px 0;
    font-weight: normal;
    color: #666666;  /* Color más claro para subtítulos */
}

.green-line {
    width: 200px;  /* Línea más corta */
    height: 3px;
    background-color: #47ffff;  /* Color verde más vibrante */
    border: none; /* Elimina cualquier borde */

    margin: 10px 0 30px 0;
    border-radius: 2px;
}

/* Contenedor de texto e imagen */
.project-content {
    display: flex;
    width: 90%;
    max-width: 1400px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;  /* Espaciado entre texto e imagen */
}

/* Columna de texto */
.left-column {
    flex: 1;
    padding-right: 30px;
    box-sizing: border-box;
    line-height: 1.8;  /* Mejora la legibilidad del texto */
    color: #A5A5A5;
}

/* Columna de imagen */
.right-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.right-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;  /* Ligeramente redondeado */
}


/*gallery cases*/
.custom-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-flow: dense;
    gap: 10px;
    padding: 20px;
}

.custom-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.custom-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Efecto Zoom al pasar el mouse */
.custom-gallery-item:hover img {
    transform: scale(1.1);
}

/* Variación de Tamaños - Efecto Masonry */
.custom-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.custom-gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.custom-gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.custom-gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
}

.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.custom-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.custom-close-btn,
.custom-prev-btn,
.custom-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.custom-prev-btn {
    left: 20px;
}

.custom-next-btn {
    right: 20px;
}

.custom-close-btn {
    top: 100px;
    right: 20px;
    transform: none;
}


/* Lightbox Estilizado */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    display: block;
    border-radius: 5px;
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.lightbox .prev {
    left: 5%;
}

.lightbox .next {
    right: 5%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}


/* Estilo del pop-up */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Ajuste del botón de cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 1100;
}



.popup-nav {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.welcome{
    width: 80%;
    
}

/* --- Responsivo para móviles --- */
@media (max-width: 768px) {
    .welcome {
        max-width: 80%;
    }
    .hero-video-mobile {
        height: 100vh; /* Mantiene el video cubriendo toda la pantalla */
        object-position: center; /* Centra el video vertical y horizontalmente */
    }

    .hero-video {
        display: none;
    }
    .about-text {
        max-width: 100%;
    }
    .about-images {
        display: none;

    }
    .services-image{
        display: none;
    }
    .services-content{
        width: 100%;
    }
    .services-mobile{
        width: 100%;
        display: block;
    }

    /* Sección Servicios */
.services {
    background: url(NuestrosServicios/NuestrosServicios_oscuro-resized.jpg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
    height: 130vh;
}
    
    .team-photo {
        width: 100px;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
    }
    
    .team-photo:hover {
        transform: scale(1.1); /* Efecto de zoom interno */
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Incrementa el efecto de sombra */
    }
    .locations {
        position: relative;
        width: 100%;
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
        overflow: hidden;
    }

    .locations-section {
        flex-direction: column; /* Cambia la dirección a columna */
        align-items: center;
        padding: 20px 5%;
    }

    .locations-content {
        width: 100%;
        margin-bottom: 20px; /* Espaciado entre el contenido y el mapa */
    }

    .map-container-google {
        width: 100%; /* Ocupa todo el ancho */
        height: 300px; /* Ajusta la altura para móviles */
    }

    iframe {
        height: 100%; /* Asegura que el iframe llene el contenedor */
    }
    .right-column {
        display: none;
    }
    .left-column {
        flex: 1;
        padding-right: 30px;
        box-sizing: border-box;
        line-height: 1.8;  /* Mejora la legibilidad del texto */
        color: #A5A5A5;
        width: 100%;
    }
    .services-image-mobile {
        width: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
        height: auto;
        display: block;
    }
    
    .services-image-mobile img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    .services-content-servicios {
        width: 95%;
        z-index: 2;
    }
    .services-content-servicios-text {
        padding-top: 100px;
        padding-left: 10%;
    }
    .services-description {
        font-size: 20px;
        line-height: 1.8;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: #A5A5A5;
        margin-bottom: 20px;
        width: 90%;
    }
   
}

/* --- Ajustes específicos para pantallas muy pequeñas --- */
@media (max-width: 480px) {
    .hero-content {
        font-size: 1.8em;
    }

    
}

/*-----------------*/


@media (min-width: 769px) {
    .services-image-mobile {
        display: none;
    }
    
    .services-image-mobile img {
        display: none;
    }
    .services-mobile-text{
        display: none;
    }
}

