﻿/* Estilo alineado a la linea visual de canaleselec.php */
.hero-section {
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    color: #fff;
    padding: 70px 0 45px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 500;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: .95;
}

.section {
    padding: 85px 0;
}

.section-light {
    background: #ffffff;
}

.section-gray {
    background: #f4f6f9;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: #0a4f6d;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.line {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin-bottom: 25px;
}

.channel-photo {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    object-fit: cover;
}

.benefits-list {
    padding-left: 0;
    margin-top: 15px;
}

.benefits-list li {
    list-style: none;
    padding: 6px 0;
    font-size: 0.97rem;
}

.benefits-list li i {
    color: #00a75d;
    margin-right: 8px;
}

.compact-list {
    margin-top: 8px;
    margin-bottom: 10px;
}

.corresponsal-card {
    border: 1px solid #e5edf5;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(8, 34, 69, 0.08);
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
}

.corresponsal-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a75d, #28a745, #2f8bdc);
    z-index: 2;
}

.corresponsal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(8, 34, 69, 0.14);
}

.card-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid #edf2f7;
}

.card-body-custom {
    padding: 22px;
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.card-head h3 {
    margin: 0;
    color: #0a4f6d;
    font-size: 1.34rem;
    font-weight: 700;
    letter-spacing: .1px;
}

.badge-sector {
    background: linear-gradient(135deg, #ebfbf3, #dff8ec);
    color: #00a75d;
    border: 1px solid #c6efda;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: .84rem;
    font-weight: 700;
    white-space: nowrap;
}

.card-body-custom p {
    margin: 0 0 10px;
    color: #425466;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body-custom p i {
    color: #00a75d;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ecf9f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0;
}

.card-body-custom h4 {
    color: #0a4f6d;
    font-size: 1rem;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: 700;
}

.compact-list li {
    border-bottom: 1px dashed #e2eaf2;
    padding: 7px 0;
    color: #2f4054;
}

.compact-list li:last-child {
    border-bottom: none;
}

.btn-coac {
    background: linear-gradient(135deg, #00a75d, #28a745);
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    box-shadow: 0 10px 24px rgba(0, 167, 93, 0.28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-coac:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 167, 93, 0.35);
    text-decoration: none;
}

.btn-coac-outline {
    background: transparent;
    color: #00a75d !important;
    border: 2px solid #00a75d;
    box-shadow: none;
}

.btn-coac-outline:hover {
    background: #00a75d;
    color: #ffffff !important;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px 50px;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-section p {
        font-size: 1.05rem;
    }

    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .line {
        margin: 0 auto 20px;
    }

    .btn-coac {
        width: 100%;
        justify-content: center;
    }

    .card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-photo {
        aspect-ratio: 4 / 3;
    }
}

