/* assets/css/nosotros.css */

/* Hero Corporativo */
.about-hero-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 35px;
}

.about-hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-img-wrapper:hover .about-hero-img {
    transform: scale(1.05);
}

/* Call to Action Buttons */
.about-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none !important;
}

.btn-cta-primary:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-cta-secondary {
    background-color: #1a1a2e;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none !important;
}

.btn-cta-secondary:hover {
    background-color: #ea1c26;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234, 28, 38, 0.3);
    color: #fff;
}

/* Introducción de Marca */
.about-intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-intro-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ea1c26;
}

.about-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.about-intro-img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Historia y Trayectoria */
.about-history-section {
    padding: 100px 0 0 0;
    background-color: #fff;
}

.history-milestone {
    position: relative;
    padding-left: 40px;
    margin-bottom: 50px;
}

.history-milestone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ea1c26;
    border: 4px solid #fef2f2;
}

.history-milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 25px;
    width: 2px;
    height: calc(100% + 25px);
    background-color: #eee;
}

.milestone-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.milestone-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.brand-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 15px;
    border: 1px dashed #ddd;
}

.brand-item {
    font-weight: 800;
    font-size: 1.2rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.brand-item:hover {
    color: #ea1c26;
}

/* Misión, Visión y Valores */
.about-mission-vision-section {
    padding: 100px 0;
    background-color: #f4f6f8;
}

.mv-card-modern {
    position: relative;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.mv-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(234, 28, 38, 0.15);
}

.mv-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ea1c26, #ff4d4d);
    z-index: 2;
    transition: all 0.4s ease;
}

.mv-card-modern.secondary-variant::before {
    background: linear-gradient(90deg, #1a1a2e, #2e2e50);
}

.mv-card-modern:hover::before {
    height: 100%;
    opacity: 0.03;
}

.mv-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 150px;
    color: rgba(234, 28, 38, 0.04);
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
}

.mv-card-modern.secondary-variant .mv-icon-bg {
    color: rgba(26, 26, 46, 0.04);
}

.mv-card-modern:hover .mv-icon-bg {
    transform: rotate(0) scale(1.1);
}

.mv-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-title-modern::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background-color: #ea1c26;
    border-radius: 2px;
}

.mv-card-modern.secondary-variant .mv-title-modern::before {
    background-color: #1a1a2e;
}

.mv-text-modern {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Sección Valores */
.about-values-section {
    background-color: #fff;
}

.values-grid-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.values-grid-card:hover {
    border-color: #ea1c26;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fef2f2;
    color: #ea1c26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.value-grid-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.value-grid-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .mv-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .history-milestone {
        padding-left: 30px;
    }

    .about-hero-content {
        padding-left: 0px;
    }

    .about-hero-section {
        padding-top: 0;
    }
}

.about-hero-content {
    padding-left: 30px;
}

/* Sección Diferenciales (Bloque 5) */
.about-diferenciales-section {
    position: relative;
    padding: 100px 0;
    background-color: #f4f6f8;
}

.diff-grid-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
    border-left: 5px solid #ea1c26;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.diff-grid-card:hover {
    transform: translateX(5px) translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.diff-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
}

.diff-grid-card:hover .diff-icon-wrapper {
    background: #ea1c26;
    box-shadow: 0 5px 15px rgba(234, 28, 38, 0.3);
    color: #fff;
}

.diff-grid-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.diff-grid-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Sección Marcas y Respaldo (Bloque 6) */
.about-marcas-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 25px;
}

.marca-grid-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.marca-grid-card:hover {
    border-color: #ea1c26;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
}

.marca-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    height: 45px;
}

.marca-logo {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.marca-grid-card:hover .marca-logo {
    filter: grayscale(0%) opacity(1);
}

.marca-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.marca-title small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
}

.marca-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sección Cobertura (Bloque 7) */
.cobertura-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.sede-cobertura {
    padding: 30px;
    height: 100%;
}

.sede-cobertura:hover {
    border-color: #ea1c26;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cobertura-icon {
    font-size: 30px;
    color: #ea1c26;
    margin-bottom: 15px;
}

.cobertura-icon i {
    float: left;
    margin-right: 10px;
    margin-top: -4px;
}

.cobertura-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.cobertura-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 8px;
}

.envio-cobertura {
    padding: 25px 20px;
    text-align: center;
    height: 100%;
}

.envio-cobertura:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #1a1a2e;
}

.envio-icon {
    width: 60px;
    height: 60px;
    background: #f4f6f8;
    color: #1a1a2e;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.envio-cobertura:hover .envio-icon {
    background: #1a1a2e;
    color: #fff;
}

.envio-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.envio-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.envio-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #fef2f2;
    color: #ea1c26;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
}