.about-banner {
    background: linear-gradient(rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.6)), 
                url('assets/img/nosotros.jpg');
    background-size: cover;
    background-position: center;
}

.values-grid {
    display: grid;
    /* Forzamos 3 columnas iguales en pantallas grandes */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Ajuste para que en tablets se vea de a 2 y en móviles de a 1 */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.about-card {
    text-align: center;
    padding: 40px !important;
}

.about-card p {
    color: #666;
}


.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    width: 100%;
}

.mv-block {
    flex: 1;
    min-width: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

/* Imágenes de fondo para cada bloque */
.mission-bg {
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=800&q=80') no-repeat center/cover;
}

.vision-bg {
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=800&q=80') no-repeat center/cover;
}

/* Capa oscura para que el texto sea legible */
.mv-overlay {
    background: rgba(0, 51, 102, 0.75); /* Azul corporativo con transparencia */
    width: 100%;
    height: 100%;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mv-block:hover .mv-overlay {
    background: rgba(0, 51, 102, 0.85);
}

.mv-content {
    text-align: center;
    color: white;
    max-width: 450px;
}

.mv-icon {
    font-size: 3.5rem;
    color: #ff6600; /* Dorado */
    margin-bottom: 20px;
}

.mv-content h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mv-line {
    width: 50px;
    height: 3px;
    background: #ff6600;
    margin: 15px auto;
}

.mv-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Responsivo para tablets y móviles */
@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
    }
    .mv-block {
        min-height: 400px;
    }
}

.about-feature {
    padding: 80px 20px;
    background-color: #fff;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #f4f7f9; /* Un adorno visual sutil */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #d44c17;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.subtitle {
    color: #d44c17;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.feature-text h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #d4a017;
}

/* Responsivo */
@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
    }
    .experience-badge {
        right: 10px;
    }
}

/* Ajuste para que el banner sea más estilizado */
.about-banner {
    min-height: 550px; /* Mucho más bajo que el de hoteles */
    height: 35vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* Mantenemos tu estilo de imagen pero con un degradado más sutil */
    background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 51, 102, 0.5)), 
                url('assets/img/nosotros.jpg');
    background-size: cover;
    background-position: center;
}

.about-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-banner p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    /* Si hay 5 elementos, esto ayuda a que la última fila se vea mejor */
    .values-grid:has(.value-card:nth-child(5):last-child) {
        justify-content: center;
    }
}