/* ===== ESTILOS PARA LA PÁGINA NOSOTROS ===== */

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Encabezado de la página */
.fleet-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.fleet-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    z-index: 0;
}
.fleet-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.fleet-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}
.fleet-subtitle {
    font-size: 1.5rem;
    color: var(--pearl);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Encabezado de la página */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--pearl);
    margin-top: 20px;
}

/* Secciones generales */
.about-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.section-title.centered {
    text-align: center;
    display: block;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pearl);
    margin-bottom: 20px;
}

.section-description.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    max-width: 600px;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Imágenes específicas para cada sección */
.mission-image {
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
    background-size: cover;
    min-height: 250px;
}

.vision-image {
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80') no-repeat center center;
    background-size: cover;
    min-height: 250px;
}

.purpose-image {
    background: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1169&q=80') no-repeat center center;
    background-size: cover;
    min-height: 250px;
}

/* Sección de propósito - valores */
.purpose-values {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

/* Sección de Valores */
.values-section {
    padding: 80px 0;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: var(--transition);
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.value-card:hover .value-icon::before {
    transform: translateX(100%);
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    transition: var(--transition);
}

.value-card:hover .value-title {
    color: var(--accent);
}

.value-description {
    font-size: 1rem;
    color: var(--pearl);
    line-height: 1.6;
    transition: var(--transition);
}

.value-card:hover .value-description {
    color: var(--white);
}

/* Sección de historia - timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-light);
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 25px;
    background: var(--glass-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 50%;
    margin-left: 40px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--pearl);
    line-height: 1.6;
}

/* Sección de equipo */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
}

.member-image {
    height: 250px;
    background-color: #333;
    position: relative;
}

.team-member:nth-child(1) .member-image {
    background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=688&q=80') no-repeat center center;
    background-size: cover;
}

.team-member:nth-child(2) .member-image {
    background: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80') no-repeat center center;
    background-size: cover;
}

.team-member:nth-child(3) .member-image {
    background: url('https://images.unsplash.com/photo-1573496799652-408c2ac9fe98?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1169&q=80') no-repeat center center;
    background-size: cover;
}

.team-member:nth-child(4) .member-image {
    background: url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80') no-repeat center center;
    background-size: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 20px 20px 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0 20px 20px;
}

/* Sección de contacto */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
/* Responsive */
@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-content.reverse {
        flex-direction: column;
    }
    
    .about-image {
        height: 300px;
        width: 100%;
    }
    
    .image-container {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        left: 0 !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-header {
        height: 300px;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-image {
        height: 250px;
    }
    
    .mission-image, .vision-image, .purpose-image {
        min-height: 200px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 200px;
    }
    
    .mission-image, .vision-image, .purpose-image {
        min-height: 180px;
    }
    
    .section-content {
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}