/* Estilos para la Sección Nuestros Trabajos */
#trabajos {
    padding: 60px 20px;
    background: url('../assets/img/yates1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

/* Para oscurecer un poco la imagen y hacer que el texto se lea mejor */
#trabajos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece la imagen para mejorar legibilidad */
    z-index: -1;
}

/* Título principal */
#trabajos h2 {
    font-size: 2.5rem;
    color: #ffffff; /* Turquesa suave para acentuar el estilo náutico */
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* Párrafo descriptivo */
#trabajos p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Contenedor para los trabajos */
.trabajos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos para cada trabajo */
.trabajo-item {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Contenedor del video */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background-color: #000;
    margin-bottom: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    background: #000;
}

/* Información del trabajo */
.trabajo-info {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
}

.trabajo-info h3 {
    font-size: 1.5rem;
    color: #2C3E50 !important; /* Azul marino para los títulos */
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.trabajo-info p {
    font-size: 1rem;
    color: #555 !important;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .trabajos-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .trabajo-item {
        width: 100%;
    }

    #trabajos h2 {
        font-size: 2rem;
    }

    #trabajos p {
        font-size: 1.1rem;
    }

    .trabajo-info h3 {
        font-size: 1.3rem;
    }

    .trabajo-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #trabajos {
        padding: 40px 15px;
    }

    .trabajos-container {
        gap: 20px;
    }

    .trabajo-info {
        padding: 20px;
    }
} 