/* HERO */
.hero-section {
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
}

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

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 720px;
    margin: 0 auto;
}

/* SECCIONES */
.section {
    padding: 90px 0;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: #f4f6f9;
}

.section-cta {
    background: linear-gradient(135deg, #00a75d, #28a745);
    color: #fff;
}

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

.section-title-left {
    margin-bottom: 6px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.line {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin: 15px auto 30px;
}

.line-left {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin: 15px 0 24px;
}

/* CARDS */
.detail-card {
    background: #fff;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid #00a75d;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: #00a75d;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #0a4f6d;
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #5f6f7a;
    margin-bottom: 0;
    line-height: 1.75;
}

/* PANELES */
.info-panel {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.info-pill {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f8ef;
    color: #00a75d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-panel p {
    color: #5f6f7a;
    line-height: 1.8;
    margin-bottom: 0;
}

.req-list {
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.req-list li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 0.97rem;
    position: relative;
    color: #53646f;
}

.req-list li:last-child {
    border-bottom: 0;
}

.req-list-solid li::before {
    content: "✓";
    color: #00a75d;
    font-weight: 700;
    font-size: 1.05rem;
    margin-right: 12px;
}

/* PLAZO */
.deadline-box {
    background: linear-gradient(135deg, #ffffff, #f5fbff);
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.deadline-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00a75d, #28a745);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex: 0 0 auto;
    box-shadow: 0 18px 36px rgba(0, 167, 93, 0.22);
}

.deadline-content {
    flex: 1;
}

.deadline-content p {
    color: #5f6f7a;
    margin-bottom: 0;
    line-height: 1.85;
    font-size: 1rem;
}

/* CTA */
.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-text {
    max-width: 740px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-btn-primary {
    background: #fff;
    color: #00a75d;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
}

@media (max-width: 992px) {
    .deadline-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.3rem;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-title,
    .cta-title {
        font-size: 1.8rem;
    }

    .info-panel,
    .deadline-box,
    .benefit-card {
        padding: 24px;
    }
}