/* ===== CSS PARA PÁGINA DE PQRS ===== */
/* Extra Rápido Los Motilones - Sistema de Peticiones, Quejas, Reclamos */

:root {
    --rojo-corporativo: #e31e24;
    --rojo-oscuro: #b71c1c;
    --gris-oscuro: #111;
    --gris-medio: #333;
    --gris-claro: #f8f9fa;
    --texto-oscuro: #222;
    --texto-claro: #666;
    --sombra-suave: 0 15px 35px rgba(0,0,0,0.08);
    --sombra-intensa: 0 20px 40px rgba(227,30,36,0.15);
}

/* ===== HERO ===== */
.hero-pqrs {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(227,30,36,0.75)), url('../img/slidenu.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-pqrs h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-pqrs p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SECCIÓN PRINCIPAL ===== */
.pqrs-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

/* ===== PESTAÑAS ===== */
.pqrs-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.tab-btn i {
    color: #e31e24;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: #e31e24;
    color: #e31e24;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #e31e24;
    border-color: #e31e24;
    color: white;
}

.tab-btn.active i {
    color: white;
}

/* ===== CONTENEDOR DE PESTAÑAS ===== */
.tab-content {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--sombra-intensa);
    border: 1px solid rgba(227,30,36,0.1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PESTAÑA 1: INFORMACIÓN ===== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.info-imagen {
    text-align: center;
}

.info-imagen img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--sombra-intensa);
}

.info-contenido h2 {
    color: #e31e24;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-contenido p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-canales {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #e31e24;
}

.info-canales h4 {
    color: #e31e24;
    margin-bottom: 15px;
}

.canal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.canal-icono {
    width: 40px;
    height: 40px;
    background: #e31e24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.canal-texto {
    flex: 1;
    font-weight: 500;
}

.canal-texto strong {
    color: #e31e24;
}

/* ===== VIGILADOS ===== */
.vigilados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 0;
}

.vigilado-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.vigilado-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-suave);
}

.vigilado-item img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* ===== PESTAÑA 2: FORMULARIO ===== */
.pqrs-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-group label i {
    color: #e31e24;
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #e31e24;
    box-shadow: 0 0 0 0.2rem rgba(227,30,36,0.15);
    outline: none;
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e31e24;
}

.checkbox-group a {
    color: #e31e24;
    text-decoration: none;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-pqrs {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-registrar {
    background: #e31e24;
    color: white;
    box-shadow: 0 8px 20px rgba(227,30,36,0.3);
}

.btn-registrar:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227,30,36,0.4);
}

.btn-cancelar {
    background: #6c757d;
    color: white;
}

.btn-cancelar:hover {
    background: #5a6268;
    transform: translateY(-3px);
}

/* ===== DEFINICIONES (lateral derecho) ===== */
.definiciones-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--sombra-intensa);
    border: 1px solid rgba(227,30,36,0.1);
}

.definicion-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.definicion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.definicion-item h4 {
    color: #e31e24;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.definicion-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== PESTAÑA 3: CONSULTAR ===== */
.consultar-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.consultar-container h2 {
    color: #e31e24;
    font-weight: 700;
    margin-bottom: 30px;
}

.consultar-busqueda {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.consultar-busqueda input {
    flex: 1;
    min-width: 250px;
}

.consultar-busqueda button {
    background: #e31e24;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.consultar-busqueda button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

#datos {
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}
/* ===== ESTILOS PARA RESULTADOS DE CONSULTA ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.table th {
    background: #e31e24;
    color: white;
    padding: 12px;
    font-weight: 600;
}

.table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.table tr:hover {
    background: #f8f9fa;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bg-success {
    background: #d4edda;
    color: #155724;
}

.bg-warning {
    background: #fff3cd;
    color: #856404;
}

.bg-secondary {
    background: #e2e3e5;
    color: #383d41;
}

/* Responsive */
@media (max-width: 768px) {
    .table {
        font-size: 12px;
    }
    
    .table th, 
    .table td {
        padding: 8px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vigilados-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-pqrs h1 {
        font-size: 32px;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .pqrs-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .consultar-busqueda {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-pqrs h1 {
        font-size: 28px;
    }
    
    .info-canales {
        padding: 15px;
    }
}