/* Styles for Libro de Reclamaciones */
body {
    background-color: #f8f9fa;
}

.reclamaciones-hero {
    background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
    color: #ffffff;
    padding: 60px 0;
}

.reclamaciones-card {
    border-radius: 18px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reclamaciones-section-title {
    font-weight: 700;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #343a40;
}

.reclamaciones-section-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0bd36;
    color: #111;
    font-weight: 700;
}

.reclamaciones-required-label::after {
    content: '*';
    color: #d63384;
    margin-left: 4px;
}

.reclamaciones-helper {
    font-size: 0.85rem;
    color: #6c757d;
}

.reclamaciones-divider {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.reclamaciones-summary {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reclamaciones-summary .summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #495057;
}

.reclamaciones-summary .summary-item strong {
    color: #212529;
}

.reclamaciones-alert {
    border-left: 4px solid #f0bd36;
    padding: 1.25rem;
    background: rgba(240, 189, 54, 0.08);
    border-radius: 12px;
    color: #5c4d12;
}

.reclamaciones-form .form-control,
.reclamaciones-form .form-select,
.reclamaciones-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1rem;
}

.reclamaciones-form .form-control:focus,
.reclamaciones-form .form-select:focus,
.reclamaciones-form textarea:focus {
    border-color: #f0bd36;
    box-shadow: 0 0 0 .25rem rgba(240, 189, 54, 0.25);
}

.reclamaciones-submit {
    background: #f0bd36;
    border: none;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.95rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reclamaciones-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(240, 189, 54, 0.35);
}

.reclamaciones-toggle {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    display: inline-flex;
    gap: 0.75rem;
    background: #ffffff;
}

.reclamaciones-toggle input {
    display: none;
}

.reclamaciones-toggle label {
    margin-bottom: 0;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #343a40;
    border: 1px solid transparent;
}

.reclamaciones-toggle input:checked + label {
    background: #f0bd36;
    color: #111;
    border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .reclamaciones-hero {
        padding: 40px 0;
    }

    .reclamaciones-summary {
        margin-top: 2rem;
    }
}
