/* ===============================
   RESET BÁSICO
   =============================== */
body {
    font-family: 'Work Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ===============================
   CONTENEDOR PRINCIPAL
   =============================== */
.contenedor-reclamaciones {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* ===============================
   TARJETA FORMULARIO
   =============================== */
.libro-reclamaciones-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 700px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.libro-reclamaciones-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ===============================
   TITULO Y SUBTITULO
   =============================== */
.libro-reclamaciones-titulo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.libro-reclamaciones-subtitulo {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

/* ===============================
   SECCIONES DEL FORMULARIO
   =============================== */
.libro-seccion {
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.libro-seccion h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.libro-seccion h3 i {
    margin-right: 10px;
    color: #ff6fb5;
}

/* ===============================
   CAMPOS DEL FORMULARIO
   =============================== */
.libro-campo {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.libro-campo label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
}

.libro-campo input,
.libro-campo select,
.libro-campo textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.libro-campo input:focus,
.libro-campo select:focus,
.libro-campo textarea:focus {
  
 
}

/* ===============================
   TEXTAREA
   =============================== */
.libro-campo textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===============================
   BOTON ENVIAR
   =============================== */
.libro-boton-enviar {
    background-color: #0e0b0c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.libro-boton-enviar:hover {
    background-color: #3b3a3b;
    transform: translateY(-2px);
}

/* ===============================
   MENSAJE EXITO / ERROR
   =============================== */
#mensaje-exito {
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
}

/* ===============================
   TEXTO LEGAL
   =============================== */
.texto-reclamo-form {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    line-height: 1.5;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px){
    .contenedor-reclamaciones {
        padding: 30px 10px;
    }

    .libro-reclamaciones-wrapper {
        padding: 30px 20px;
    }
}