/* 1. PÁGINA: SUBSIDIOS - SUPERGAS DE NARIÑO */

/* 1.1. CONTENEDOR PRINCIPAL */
.subsidios-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

/* 2. HERO */
.subsidios-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* 2.1. Badge del hero */
.subsidios-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 92, 0, .1);
    color: #FF5C00;
    padding: .7rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* 2.2. Título del hero */
.subsidios-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    color: #1E293B;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.subsidios-hero h1 span {
    color: #FF5C00;
}

/* 2.3. Párrafo del hero */
.subsidios-hero p {
    color: #64748B;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* 3. BOTONES */
.subsidios-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 3.1. Botón base */
.subsidios-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

/* 3.2. Botón naranja */
.subsidios-btn-orange {
    background: #FF5C00;
    color: white;
}

.subsidios-btn-orange:hover {
    background: #E65300;
    transform: translateY(-3px);
}

/* 3.3. Botón verde */
.subsidios-btn-green {
    background: #317F3C;
    color: white;
}

.subsidios-btn-green:hover {
    background: #25632E;
    transform: translateY(-3px);
}

/* 4. VISUAL HERO (IMAGEN DECORATIVA) */
.subsidios-visual {
    min-height: 420px;
    border-radius: 46px 18px 46px 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 55px -25px rgba(49, 127, 60, .55);
    background: #317F3C;
}

/* 4.1. Overlay decorativo */
.subsidios-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(49, 127, 60, .12), rgba(0, 0, 0, .05));
    pointer-events: none;
}

/* 4.2. Círculo decorativo */
.subsidios-visual::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    z-index: 3;
    pointer-events: none;
}

.subsidios-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

/* 5. TARJETAS DE SUBSIDIOS */
.subsidios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* 5.1. Tarjeta individual */
.subsidio-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px -16px rgba(0, 0, 0, .16);
    transition: .3s ease;
}

.subsidio-card:hover {
    transform: translateY(-6px);
    border-color: #FF5C00;
}

/* 5.2. Icono de la tarjeta */
.subsidio-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 92, 0, .1);
    color: #FF5C00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.subsidio-card h3 {
    color: #1E293B;
    margin-bottom: .8rem;
}

.subsidio-card p {
    color: #64748B;
    line-height: 1.7;
}

/* 6. SECCIONES DE INFORMACIÓN */
.subsidios-section {
    background: white;
    border-radius: 30px;
    padding: 2.2rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px -16px rgba(0, 0, 0, .16);
    margin-bottom: 3rem;
}

.subsidios-section h2 {
    color: #1E293B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.subsidios-section p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 7. PASOS (PROCESO) */
.steps-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* 7.1. Elemento de paso individual */
.step-item {
    display: flex;
    gap: 1rem;
    background: #F8FAFC;
    padding: 1rem;
    border-radius: 16px;
    color: #475569;
    line-height: 1.7;
}

/* 7.2. Número del paso */
.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF5C00;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

/* 8. CAJAS DE ALERTA Y ADVERTENCIA */

/* 8.1. Caja de alerta (azul) */
.alert-box {
    background: linear-gradient(135deg, #0664AC, #044A7A);
    color: white;
    border-radius: 30px;
    padding: 2.2rem;
    margin-bottom: 3rem;
}

.alert-box h2 {
    margin-bottom: 1rem;
}

.alert-box p {
    color: rgba(255, 255, 255, .95);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 8.2. Caja de advertencia (naranja) */
.warning-box {
    background: linear-gradient(135deg, #FF5C00, #E65300);
    color: white;
    border-radius: 30px;
    padding: 2.2rem;
    margin-bottom: 3rem;
}

.warning-box h2 {
    margin-bottom: 1rem;
}

.warning-box p {
    color: rgba(255, 255, 255, .95);
    line-height: 1.8;
}

/* 9. FAQ MINI (PREGUNTAS FRECUENTES) */
.faq-mini {
    display: grid;
    gap: 1rem;
}

/* 9.1. Elemento individual del FAQ mini */
.faq-mini-item {
    background: #F8FAFC;
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid #E2E8F0;
}

.faq-mini-item h3 {
    color: #1E293B;
    margin-bottom: .7rem;
    font-size: 1.05rem;
}

.faq-mini-item p {
    margin: 0;
}

/* 10. RESPONSIVE */

/* 10.1. Tablets (992px) */
@media (max-width: 992px) {
    .subsidios-hero {
        grid-template-columns: 1fr;
    }

    .subsidios-grid {
        grid-template-columns: 1fr;
    }
}

/* 10.2. Móviles (768px) */
@media (max-width: 768px) {
    .subsidios-page {
        padding: 100px 0 60px;
    }

    .subsidios-actions {
        flex-direction: column;
    }

    .subsidios-btn {
        width: 100%;
    }

    .subsidios-visual {
        min-height: 320px;
        border-radius: 32px 14px 32px 14px;
    }

    .subsidios-visual img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
    }

    .subsidios-section,
    .alert-box,
    .warning-box {
        padding: 1.5rem;
    }
}