:root {
    --primary-color: #1463d9;
    --secondary-color: #0e5ea3;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --light-bg: #f5f6fa;
    --border-color: #dcdde1;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--primary-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Coneteiner (titulo, ruc, jr.) */
.header-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background:  #1463d9;
    border-radius: 12px;
    color: white;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-details {
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

.datetime-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Estructura de filas del formulario */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Nombre de Campos */
label {
    font-weight: 500;
    color:#222222;
    margin-bottom: 0.5rem;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.required {
    color: var(--danger-color);
    margin-left: 4px;
}

.radio-group {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.radio-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
}

.radio-option input[type="radio"] {
    margin-right: 10px;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
}

/* Botón Enviar */
.enviar_reclamo{
    text-align: center;
}
button[type="submit"] {
    align-items: center;
    background: linear-gradient(to right, var(--accent-color), #1463d9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 40%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: linear-gradient(to right, #1463d9, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* Información Importante */

.info-container {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 8rem;
}

.info-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.2rem;
}

.info-section p {
    margin-bottom: 0.5rem; /* Reduce la separación entre los párrafos */
    font-size: 0.8rem; /* Reduce el tamaño de la letra */
}

.info-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.8rem;
}

.info-list li {
    padding: 0rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-warning {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--danger-color);
    padding: 0.5rem;
    border-radius: 8px;
    color: var(--danger-color);
    font-weight: 500;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }
}

/* Adjunto archivo */
.file-input-container {
    margin-bottom: 1.5rem;
}

.file-input-label {
    border: 2px solid #908e8e;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #9a9a9ad6;
    color: rgb(250, 250, 250);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input-label:hover {
    background: #27ae60;
    border: 2px solid #2facff89;
}

.file-input {
    display: none;
}

.file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.file-size-warning {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}