/* BOMBCRETO - Nosotros Styles */

/* HERO */

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

/* Hero responsive para móvil */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.6);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}



.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ABOUT */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border: 10px solid #f2f2f2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 2rem;
    text-align: center;
    border: 5px solid var(--color-white);
}

.about-image-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}

.about-image-badge span:last-child {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-text h2.about-main-title {
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    text-align: center !important;
    align-items: center !important;
    gap: 5px;
}

.about-main-title .title-top {
    font-size: 1.6rem;
    color: var(--color-dark-gray);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-text h2.about-main-title span.text-orange {
    margin-top: 0;
}

.about-text h2.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    /* Centered */
    transform: translateX(-50%);
    /* Centered */
    width: 60px;
    height: 4px;
    background: var(--color-orange);
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: start;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.about-feature i {
    color: var(--color-orange);
    font-size: 1.2rem;
}

/* MISSION, VISION, VALUES */

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: var(--transition);
}

.mvv-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-5px);
}

.mvv-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--color-dark-gray);
    color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.mvv-card:hover .icon-box {
    background: var(--color-orange);
    color: var(--color-white);
}

.mvv-card h3 {
    margin-bottom: 1.5rem;
}

/* WHY US */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 2px solid #f0f0f0;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--color-dark-gray);
    background: #fafafa;
}

.feature-item .icon-box {
    font-size: 2.5rem;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

/* VALUES LIST SIMPLIFICATION */
.values-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-dark-gray);
    text-align: left;
    padding: 4px 0;
}

.value-icon {
    color: var(--color-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 90, 40, 0.1);
    border-radius: 50%;
}

.value-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-card {
        padding: 2.5rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .about-text h2.about-main-title {
        font-size: 2rem;
        text-align: center;
        align-items: center;
    }

    .about-text h2.about-main-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        text-align: justify;
    }

    .about-features {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .about-image-badge {
        padding: 1.2rem;
        right: -10px;
        bottom: -10px;
    }

    .about-image-badge .number {
        font-size: 2.2rem;
    }

    .about-image img {
        border-width: 5px;
    }

    /* Botones del hero en una sola línea */
    .hero-buttons .btn {
        white-space: nowrap;
        padding: 12px 20px;
        font-size: 0.85rem;
        width: auto !important;
        max-width: none !important;
    }

    /* Botón WhatsApp después de estadísticas */
    .section .text-center .btn-whatsapp {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 0.8rem;
        width: auto !important;
    }

    /* Sección CTA después de estadísticas */
    .stats-section+.section {
        padding: 1rem 0 1.5rem 0 !important;
    }

    /* Sección Filosofía Corporativa */
    .section.bg-light .mb-3 {
        margin-bottom: 1rem !important;
    }

    /* Cards de Filosofía Corporativa más pequeñas */
    .mvv-grid {
        gap: 12px;
    }

    .mvv-card {
        padding: 1.2rem 1rem;
    }

    .mvv-card .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .mvv-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .mvv-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Lista de valores ajustada */
    .values-list {
        margin: 0.5rem 0 0;
        gap: 6px;
    }

    .value-item {
        font-size: 0.85rem;
        gap: 8px;
        padding: 2px 0;
    }

    .value-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .value-text {
        font-weight: 500;
    }

    /* Cards de Por qué elegirnos más pequeñas */
    .features-grid {
        gap: 12px;
    }

    .feature-item {
        padding: 1.2rem 1rem;
        border-width: 1px;
    }

    .feature-item .icon-box {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        width: 55px;
        height: 55px;
        background: rgba(240, 90, 40, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}