/* --- ESTILOS PARA PROTECCIÓN CIVIL --- */

.pc-alerta-box {
    background: #fff3cd; /* Amarillo suave de precaución */
    border-left: 6px solid #ff8800; /* Naranja PC */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pc-status-dot {
    width: 20px;
    height: 20px;
    background-color: #28a745; /* Verde: Todo en calma */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Tarjetas de Prevención */
.pc-card {
    background: var(--blanco);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.pc-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-top: 4px solid #ff8800;
}

.pc-icon {
    font-size: 2.5rem;
    color: #ff8800; /* Color oficial de PC */
    margin-bottom: 20px;
    display: block;
}

.pc-card h4 {
    color: var(--vino);
    font-weight: 700;
    margin-bottom: 15px;
}

.pc-card ul {
    padding-left: 20px;
    font-size: 0.9rem;
    color: #555;
}

.pc-card ul li {
    margin-bottom: 8px;
}

/* Sección de Inspecciones */
.pc-inspeccion-box {
    background: var(--vino-oscuro);
    color: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* --- CORRECCIÓN DE BOTONES (Blindaje contra framework-gb) --- */
.pc-btn-tramite {
    background-color: #ff8800 !important;
    color: white !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.pc-btn-tramite:hover {
    background-color: #e67a00 !important;
    transform: scale(1.05);
}

.pc-btn-outline {
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.pc-btn-outline:hover {
    background-color: white !important;
    color: var(--vino-oscuro) !important;
}