
body {
    font-family: 'Arial', sans-serif;
    color: #444;  /* Color de letra más neutro */
    background-color: #f0f2f5;
    margin: 0 auto;
    padding: 0;
   
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 1000px;
}

.container {
    width: 85%;
    max-width: 600px;  /* Página más estrecha */
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    overflow: hidden;
}

.title h1 {
    font-style: italic;
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clear-fix img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Añadir sombra a la imagen */
    transition: transform 0.3s, box-shadow 0.3s;  /* Efecto de transición */
}

.clear-fix img:hover {
    transform: scale(1.05);  /* Aumentar ligeramente la imagen al pasar el ratón */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);  /* Sombra más grande al pasar el ratón */
}

p {
    line-height: 1.8;
    margin: 0 0 20px;
    font-size: 1.1em;
}

.companyNameText {
    font-weight: bold;
    color: #960000;
}

h2 {
    border-bottom: 2px solid #960000;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #960000;
    font-size: 1.5em;
}

.round {
    list-style-type: none;
    padding: 0;
}

.round li {
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, box-shadow 0.3s;  /* Efecto de transición */
}

.round li:hover {
    background: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Sombra más grande al pasar el ratón */
}

.round li a {
    text-decoration: none;
    color: #960000;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
    transition: color 0.3s;  /* Efecto de transición */
}

.round li a:hover {
    text-decoration: underline;
    color: #ce0000;
}

.newsTextTitle {
    display: block;
    margin-bottom: 5px;
}

form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

form legend {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #960000;
}

form ol {
    list-style-type: none;
    padding: 0;
}

form li {
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;  /* Efecto de transición */
}

form input[type="email"]:focus {
    border-color: #960000;
}

form button {
    background: #980000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

form button:hover {
    background: #960000;
}

.field-validation-error {
    color: red;
    display: none;
}

.message-success {
    color: green;
    font-weight: bold;
}

footer {
    background-color: #484a49;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: small;
    margin-top: 60px;
    
}

footer .botones {
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

footer .botones img {
    width: 30px;
    height: 25px;
    transition: transform 0.3s;
    margin-right: 10px;
}

footer .botones img:hover {
    transform: scale(1.1);
}

footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

footer p:hover {
    opacity: 1;
}