/* ========== INFORMACIÓN RECLAMACIONES ========== */
.info-reclamaciones {
    padding: 4rem 0;
    background:  rgba(255, 255, 255, 0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(121, 85, 72, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--marron-madera) 0%, var(--marron-claro) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.info-card h3 {
    color: var(--marron-madera);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin: 0;
}

/* ========== FORMULARIO RECLAMACIONES ========== */
.formulario-reclamaciones {
    padding: 4rem 0;
    background: var(--blanco-roto);
    animation: fadeInUp 1s ease;
}

/*Animacion fade-in y slide-up*/
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.formulario-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--marron-madera) 0%, #8B4513 100%);
    color: white;
    padding: 3rem;
    text-align: center;
}

.form-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.formulario-reclamo {
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--marron-madera);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--marron-madera);
    font-family: 'Quicksand', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--marron-madera);
    background: white;
    box-shadow: 0 0 0 4px rgba(121, 85, 72, 0.1);
}

.char-count {
    text-align: right;
    font-size: 0.9rem;
    color: var(--gris-oscuro);
    margin-top: 0.5rem;
}

/* ========== UPLOAD DE ARCHIVOS ========== */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white; /* ✅ CAMBIADO A BLANCO */
    color: var(--verde-forestal)!important; /* ✅ COLOR DEL TEXTO verde */
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid var(--verde-forestal); /* ✅ BORDE verde */
}

.file-label:hover {
    background: var(--verde-forestal);
    transform: translateY(-2px);
    color: white !important;
}

.file-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gris-oscuro);
}

/* ========== CHECKBOXES ========== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    transform: scale(1.2);
}

.checkbox-group label {
    font-weight: normal;
    line-height: 1.5;
    color: var(--gris-oscuro);
}

/* ========== BOTONES FORMULARIO ========== */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-limpiar {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-limpiar:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-enviar-reclamo {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-enviar-reclamo:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.admin-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

/* BOTÓN: Lista de Reclamaciones */
.btn-lista-reclamos {
    background: #2b7cff;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    box-shadow: 0 4px 10px rgba(43, 124, 255, 0.25);
    display: none;
}

.btn-lista-reclamos:hover {
    background: #1e63d6;
    box-shadow: 0 6px 14px rgba(43, 124, 255, 0.35);
    transform: translateY(-2px);
}

.btn-lista-reclamos:active {
    transform: translateY(0);
}

/* BOTÓN: Eliminar todas las reclamaciones */
#btnEliminarReclamos {
    background: #e63946;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.25);
    display: none;

}

#btnEliminarReclamos:hover {
    background: #c52834;
    box-shadow: 0 6px 14px rgba(230, 57, 70, 0.35);
    transform: translateY(-2px);
}

#btnEliminarReclamos:active {
    transform: translateY(0);
}


/* ========== RESPONSIVE RECLAMACIONES ========== */
@media screen and (max-width: 1200px) {
    .reclamaciones-hero h1 {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr; /* 1 columna en moviles */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .formulario-reclamo {
        padding: 2rem;
    }
    
    .form-header {
        padding: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .reclamaciones-hero h1 {
        font-size: 2rem;
    }
    
    .formulario-reclamo {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}