#servicios-gerenciales-page {
    background: #ffffff;
}

.sg-hero {
    background: linear-gradient(135deg, #002855 0%, #0046ad 100%);
    padding: 130px 0;
    overflow: hidden;
}

.sg-hero-content {
    max-width: 760px;
}

.sg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.sg-hero h1 {
    font-size: 62px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.sg-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sg-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sg-btn-primary,
.sg-btn-secondary {
    min-width: 210px;
    height: 58px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease;
    font-weight: 700;
}

.sg-btn-primary {
    background: #ffffff;
    color: #0046ad;
}

.sg-btn-primary:hover {
    transform: translateY(-2px);
}

.sg-btn-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
}

.sg-services {
    padding: 110px 0;
}

.sg-title {
    text-align: center;
    margin-bottom: 70px;
}

.sg-title.left {
    text-align: left;
}

.sg-title h2 {
    font-size: 46px;
    color: #002855;
    margin-bottom: 20px;
}

.sg-title p {
    font-size: 18px;
    color: #667085;
}

.sg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sg-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    transition: .3s ease;
}

.sg-card:hover {
    transform: translateY(-5px);
}

.sg-card.featured {
    background: #002855;
}

.sg-card.featured h3,
.sg-card.featured p,
.sg-card.featured li {
    color: #ffffff;
}

.sg-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #edf4ff;
    color: #0046ad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.sg-card h3 {
    color: #002855;
    font-size: 25px;
    margin-bottom: 18px;
}

.sg-card p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sg-card ul {
    padding-left: 18px;
}

.sg-card li {
    margin-bottom: 12px;
    color: #1f2937;
}

.sg-diferenciales {
    background: #f7f9fc;
    padding: 110px 0;
}

.sg-diferenciales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sg-diferencial-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
}

.sg-diferencial-item h4 {
    color: #002855;
    font-size: 24px;
    margin-bottom: 15px;
}

.sg-diferencial-item p {
    color: #667085;
    line-height: 1.8;
}

.sg-contact {
    background: linear-gradient(135deg, #002855 0%, #0046ad 100%);
    padding: 110px 0;
}

.sg-contact-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.sg-contact-info h2 {
    font-size: 44px;
    color: #002855;
    margin-bottom: 20px;
}

.sg-contact-info p {
    color: #667085;
    line-height: 1.8;
}

.sg-contact-form .wpcf7-form input,
.sg-contact-form .wpcf7-form textarea,
.sg-contact-form .wpcf7-form select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.sg-contact-form .wpcf7-submit {
    background: #0046ad;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 700;
}

@media(max-width: 991px){

    .sg-services-grid,
    .sg-diferenciales-grid,
    .sg-contact-box {
        grid-template-columns: 1fr;
    }

    .sg-hero {
        padding: 90px 0;
    }

    .sg-hero h1 {
        font-size: 42px;
    }

    .sg-title h2,
    .sg-contact-info h2 {
        font-size: 34px;
    }

}
