/* Estilos generales */
.libro-reclamaciones {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 20px;
}

/* Layout con dos columnas */
.row {
    display: flex;
    justify-content: space-between;
}

/* Columna izquierda */
.columna-izquierda {
    flex: 0 0 70%;
}

.libro-reclamaciones .header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.libro-reclamaciones .empresa-info{
    font-size: 16px;
    color: #ffffff;
    margin-bottom: -0px
}

.libro-reclamaciones .direccion {
    font-size: 12px;
    color: #6c757d;
}

.libro-reclamaciones .titulo {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 10px;
}

.libro-reclamaciones .subtitulo {
    font-size: 32px;
    color: #000000;
    margin-bottom: -3px;
    font-weight: normal;
}

.libro-reclamaciones .descripcion {
    font-size: 16px;
    color: #495057;
}

.libro-reclamaciones .fecha {
    font-size: 19px;
    color: #6c757d;
    text-align: right;
    background-color: #0b0b0b;
    border-radius: 8px;
    padding: 10px 10px;
    display: inline-block;
    position: relative;
    margin-top: -60px;
}

/* Columna derecha (Card) */
.columna-derecha {
    flex: 0 0 20%;
}

.card {
    background-color: #0b0b0b;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ff3e01;
    margin-bottom: 15px;
}

.card p {
    font-size: 14px;
    color: #868585;
    line-height: 1.6;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subtitulo {
    margin-right: 10px;
}

.fecha {
    margin-left: auto;
}

.logo {
    max-width: 30%;
    height: auto;
    align-self: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .libro-reclamaciones {
        padding: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .row {
        flex-direction: column;
        gap: 20px;
    }
    .columna-izquierda,
    .columna-derecha {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .libro-reclamaciones .subtitulo {
        font-size: 22px;
    }
    .libro-reclamaciones .titulo {
        font-size: 18px;
    }
    .libro-reclamaciones .descripcion,
    .libro-reclamaciones .empresa-info {
        font-size: 14px;
    }
    .libro-reclamaciones .fecha {
        font-size: 15px;
        margin-top: 10px;
        display: block;
        text-align: left;
    }
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .logo {
        max-width: 60%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .libro-reclamaciones {
        padding: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    .libro-reclamaciones .subtitulo {
        font-size: 16px;
    }
    .libro-reclamaciones .titulo {
        font-size: 14px;
    }
    .logo {
        max-width: 90%;
    }
}
