/* Hero de Nosotros */
.about-hero {
    position: relative;
    height: 400px;
    background-image: url('../img/nosotros.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

/* Grid de detalles */
.about-details {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-features li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: #00af87;
}

.rounded-shadow {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 300px;
    }
}

/* Misión y Visión */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 5px solid #00af87;
}

.mv-icon {
    font-size: 2.5rem;
    color: #00af87;
    margin-bottom: 15px;
}

/* Valores */
.values-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: none;
}

.value-card i {
    font-size: 2rem;
    color: #00af87;
    margin-bottom: 15px;
    display: block;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-flex {
        flex-direction: column;
    }
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    border-radius: 30px;
    margin: 40px 20px 80px 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Botón Verde Transfers Plus */
.btn-main-cta {
    background: #00af87;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Botón WhatsApp */
.btn-whatsapp-cta {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 10px;
    }
}