/* Estilos generales de la página */
body {
    font-family: Arial, sans-serif;
    background-color: #cebcbc;
    margin: 0;
    padding: 0;
}

/* Estilos del header */
header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-and-empresa {
    display: flex;
    align-items: center;
}

.logo img {
    width: 190px;
    height: auto;
    max-width: 100%;
    margin-right: 20px;
}

.empresa h1 {
    padding: 15px;
    font-size: 24px;
    margin: 0;
    color: #ffffff;
}

/* Estilos de la información de contacto */
.contacto p {
    margin: 5px 0;
    color: #ffffff;
}

/* Estilos del contenido principal */
main a{
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    background-color: #755a5a;
    border-radius: 5px;
    margin: 15px 0 0 20px;
    text-decoration: none   ;
}
main a:hover{
    background-color: lightslategrey;    
}
/* Estilos del botón de descarga PDF */
.pdf-button {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pdf-button:hover {
    background-color: #0056b3;
}



/* Estilos responsivos */
@media (max-width: 768px) {
    header {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding: 20px 10px;
    }

    .logo img {
        width: 200px; /* Tamaño del logo reducido en dispositivos pequeños */
        max-width: 100%;
        height: auto;
        margin-bottom: 10px; 
    }

    .empresa h1 {
        font-size: 24px; 
        margin: 10px 0; 
    }

    .contacto {
        position: relative;
        flex-direction: row;
    }
}
