@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LinotypeAperto Bold';
    src: url('fonts/LinotypeAperto-Bold.eot');
    src: url('fonts/LinotypeAperto-Bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/LinotypeAperto-Bold.woff2') format('woff2'),
         url('fonts/LinotypeAperto-Bold.woff') format('woff'),
         url('fonts/LinotypeAperto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Estilos específicos para la página de modelo.php */

.modelo-seccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    width: 100%;
    background: #ffffff;
}

.contenedor-imagen {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px; /* Aumentado para más espacio */
}

.contenedor-imagen img {
    max-width: 90%;
    height: auto;
}

.btn-contacto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 40px; 
    height: 50px; /* Recuperado el alto fijo */
    width: auto;
    min-width: 200px;
    white-space: nowrap; /* Evita saltos no deseados */
    font-family: 'LinotypeAperto Bold', serif;
    background-color: #4c7e9a;
    color: white;
    font-size: 1.8rem;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    margin: 0 auto 80px; 
    text-transform: uppercase;
}

.btn-contacto:hover {
    transform: scale(1.1);
}
