/* 1. PÁGINA: POLÍTICAS - SUPERGAS DE NARIÑO */

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

/* 2. ENCABEZADO */
.politicas-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 4rem;
}

.politicas-header h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: #1E293B;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

/* 2.1. Línea decorativa del título */
.politicas-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 120px;
    height: 4px;
    background: #FF5C00;
    border-radius: 999px;
}

.politicas-header p {
    margin-top: 1.8rem;
    color: #64748B;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 3. GRID DE POLÍTICAS */
.politicas-grid {
    display: grid;
    gap: 2rem;
}

/* 4. TARJETAS DE POLÍTICA */

/* 4.1. Tarjeta individual */
.politica-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, .12);
    transition: all .35s ease;
}

.politica-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px -18px rgba(0, 0, 0, .18);
}

/* 4.2. Cabecera de la tarjeta (fondo verde) */
.politica-top {
    background: linear-gradient(135deg, #317F3C, #25632E);
    color: white;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* 4.3. Icono de la tarjeta */
.politica-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.politica-top h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.3;
    font-weight: 800;
}

/* 4.4. Contenido de la tarjeta */
.politica-content {
    padding: 2rem;
}

.politica-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1rem;
}

.politica-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.politica-content li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.8;
}

/* 5. DESTACADOS (CAJA DE TEXTO RESALTADA) */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 92, 0, .08), rgba(255, 92, 0, .02));
    border-left: 5px solid #FF5C00;
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    margin-top: 1.5rem;
    color: #334155;
    line-height: 1.8;
    font-weight: 500;
}

/* 6. RESPONSIVE */

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

    .politica-top {
        flex-direction: column;
        text-align: center;
    }

    .politica-content {
        padding: 1.5rem;
    }

    .politica-content p {
        text-align: left;
    }
}