﻿/* =========================
   NOSOTROS
========================= */

.nosotros-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(37,99,235,.1);
    color: #2563eb;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #07112b;
    margin-bottom: 18px;
}

.section-description {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

/* IMAGE */

.nosotros-image-box {
    position: relative;
}

.img-nosotros {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* CONTENT */

.nosotros-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #07112b;
    margin-bottom: 24px;
}

.nosotros-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

/* FEATURES */

.nosotros-features {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .feature-item i {
        color: #2563eb;
        font-size: 20px;
    }

    .feature-item span {
        color: #1e293b;
        font-weight: 500;
    }

/* AUTOR */

.autor-box {
    margin-top: 45px;
    padding-left: 18px;
    border-left: 4px solid #2563eb;
}

    .autor-box h5 {
        margin: 0;
        font-weight: 700;
        color: #07112b;
    }

    .autor-box span {
        color: #64748b;
        font-size: 14px;
    }


/*MODERNIZA*/

/* =========================
   HERO
========================= */

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    /*max-width: 900px;*/
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.hero-logo {
    width: 380px;
    max-width: 100%;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #07112b;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #2563eb;
    color: white;
    padding: 14px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .hero-btn:hover {
        background: #1d4ed8;
        transform: translateY(-3px);
    }

.hero-btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 14px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .hero-btn-outline:hover {
        background: #2563eb;
        color: white;
    }

/*MODERNIZA*/
.card-servicio {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    transition: .3s;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

    .card-servicio:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .card-servicio .icon {
        font-size: 42px;
        color: #2563eb;
        margin-bottom: 22px;
    }

    .card-servicio h4 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .card-servicio p {
        color: #64748b;
        line-height: 1.8;
    }


/*AJUSTE */

@media (max-width: 768px) {

    .hero-title {
        font-size: 52px;
        line-height: 1.1;
    }

    .hero-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-logo {
        width: 240px;
    }
}

@media (max-width: 768px) {

    .page-content {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {

    .card-servicio {
        padding: 30px 20px;
    }

        .card-servicio h4 {
            font-size: 24px;
        }
}
/*RESPONSIVE*/

@media (max-width: 768px) {

    .landing {
        overflow-x: hidden;
    }

    .hero-section {
        padding: 30px 10px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-logo {
        max-width: 220px;
        width: 100%;
        margin: auto;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
        margin-top: 20px;
    }

    .hero-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }

    .card-servicio {
        margin-bottom: 20px;
    }

    .nosotros-content h3 {
        font-size: 30px;
    }
}