body 
{
    background-color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

.header 
{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 15px; 
    background: #000000;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    position: sticky;  
    top: 0;
    z-index: 1000;
    gap: 1rem;
}

.logo-container 
{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0; 
    margin-right: auto;
}

.logo-container img 
{
    width: 70px;
    height: auto;
}

.logo-container div 
{
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    white-space: nowrap;
}

.header h1 
{
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

.eslogan 
{
    font-size: 0.75rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin-top: 2px;
}

.contacto-container 
{
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.contacto-container a 
{
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-volver 
{
    color: #ffffff; 
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px; 
    font-size: 0.9rem; 
    transition: 0.3s;
    margin-left: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 10.5px;
}

.btn-volver:hover 
{
    background: rgba(255,255,255,0.1);
}

.reclamaciones-wrapper 
{
    padding: 40px 15px;
    display: flex; 
    justify-content: center;
    background-color: #f4f4f4;
    min-height: calc(100vh - 200px); 
}

.reclamaciones-container 
{
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border-top: 5px solid #000000;
}

.titulo-legal 
{
    text-align: center;
    padding: 30px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.titulo-legal h2 
{ 
    font-size: 1.8rem; 
    margin-bottom: 5px; 
    color: #000000; 
}

.titulo-legal p 
{ 
    color: #555; 
    font-size: 0.9rem; 
    margin-bottom: 15px; 
}

.fecha-actual 
{ 
    display: inline-block; 
    background: #c5a059; 
    color: #000000; 
    padding: 5px 15px; 
    border-radius: 4px; 
    font-weight: bold; 
    font-size: 0.9rem;
}

.form-legal 
{ 
    padding: 30px; 
}

.form-section 
{
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child 
{ 
    border-bottom: none; 
}

.form-section h3 
{
    background: #000000; 
    color: #ffffff;
    padding: 8px 15px; 
    font-size: 1rem; 
    margin-bottom: 20px;
    border-radius: 4px; 
    display: inline-block;
}

.form-grid 
{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.input-group 
{ 
    display: flex; 
    flex-direction: column; 
}

.full-width 
{ 
    grid-column: 1 / -1; 
}

.input-group label 
{
    font-weight: 600; 
    font-size: 0.9rem; 
    margin-bottom: 5px; 
    color: #444;
}

.input-group input, 
.input-group textarea 
{
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    font-size: 0.95rem; 
    font-family: inherit; 
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus 
{
    border-color: #c5a059; 
    outline: none;
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
}

.archivo-container input[type="file"] 
{
    background: #ffffff;
    padding: 10px;
}

.archivo-container small 
{
    display: block; 
    margin-top: 5px; 
    color: #000000;
}

.radio-group-boxes 
{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 20px;
}

.radio-box 
{
    border: 1px solid #ddd; 
    padding: 15px; 
    border-radius: 8px; 
    cursor: pointer;
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 5px;
    transition: 0.2s;
}

.radio-box:hover 
{ 
    background-color: #fafafa; 
}

.radio-box:has(input:checked) 
{
    border-color: #c5a059; 
    background-color: rgba(197, 160, 89, 0.05);
}

.form-actions 
{ 
    margin-top: 20px; 
    text-align: center; 
}

.checkbox-legal 
{ 
    margin-bottom: 20px; 
    font-size: 0.9rem; 
    color: #555; 
}

.checkbox-legal a 
{ 
    color: #c5a059; 
    font-weight: bold; 
}

.btn-enviar 
{
    background-color: #c5a059; 
    color: #000000;
    border: none; 
    padding: 12px 40px; 
    font-size: 1rem; 
    font-weight: bold;
    border-radius: 5px; 
    cursor: pointer; 
    transition: 0.3s; 
    width: 100%; 
    max-width: 300px;
}

.btn-enviar:hover 
{ 
    background-color: #b08d4b; 
    transform: translateY(-2px); 
}

.btn-enviar:disabled 
{ 
    background-color: #ccc; 
    cursor: not-allowed; 
    transform: none; 
}

.obligatorio 
{
    color: #dc3545;
    font-weight: bold;
    margin-left: 4px;
}

.footer 
{
    background: #000000; 
    color: #ffffff; 
    text-align: center;
    padding: 2rem 1rem; 
    font-size: 0.9rem; 
    display: flex;
    flex-direction: column; 
    gap: 1.5rem;
}

.footer-legal-links 
{
    display: flex; 
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 2rem; 
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a 
{
    color: #ffffff; 
    text-decoration: none; 
    font-size: 0.95rem;
    font-weight: 500; 
    transition: color 0.3s ease; 
    display: flex; 
    align-items: center; 
    gap: 8px;
}

.footer-info p 
{ 
    margin: 0.4rem 0; 
    color: #ffffff; 
}

@media (max-width: 1024px) 
{
    .header 
    {
        flex-direction: column; 
        justify-content: center; 
        padding: 1rem 1rem; 
        gap: 1rem; 
    }
    .contacto-container 
    {
        justify-content: center; 
        width: 100%; 
        margin-right: 0;
    }
}

@media (max-width: 600px) 
{
    .header 
    {
        position: relative; 
        padding: 1.5rem 1rem;
    }

    .contacto-container 
    { 
        flex-direction: column; 
        gap: 0.8rem; 
    }

    .footer-legal-links 
    { 
        flex-direction: column; 
        gap: 1rem; 
    }

    .form-grid 
    { 
        grid-template-columns: 1fr; 
    }
    
    .radio-group-boxes 
    { 
        grid-template-columns: 1fr; 
    }
    
    .form-legal 
    { 
        padding: 20px 15px; 
    }
    
    .titulo-legal h2 
    { 
        font-size: 1.4rem; 
    }
}