a {
    text-decoration: none;
    color: rgb(36, 55, 72);
}

#marquesina{
    display: flex;
    
}

#texto-cambiante {
    font-family: open Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
    white-space: pre-wrap; 
    overflow: hidden;
    /*border-right: 0.15em solid orange;*/
    animation: 
    opacity: 0; /* Inicialmente el texto es transparente */
    transition: opacity 0.5s ease; /* Transición suave de opacidad */
}

.marquesina {
    display: flex;
    align-content: center;
    align-items: center;
    position: relative; /* Agregamos esta línea */
}

.contenedor-boton {
    display: flex;
    justify-content: center;
    position: absolute; /* Agregamos esta línea */
    bottom: 20px; /* Ajusta el margen inferior según sea necesario */
    left: 0; 
}

.boton-llamar {
    background-color: rgb(36, 55, 72); 
    color: white; 
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    -webkit-transition: all 0.3s 0.2s ease;
    -o-transition: all 0.3s 0.2s ease;
    transition: all 0.3s 0.2s ease;
}

.boton-llamar:hover
{
    color: rgb(255, 255, 255);
    
	scale: 1.02;
}

/* Animación del cursor parpadeante */
@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

/* Animación de escritura (no la usaremos en este caso) */
@keyframes typing {
    from { width: 0 }
}

@media (max-width: 768px) { 
    #texto-cambiante {
        justify-content: center; 
        height: 3rem;
        font-size: 18px; 
        text-align: center;
    }
    .marquesina {
        justify-content: center;
        flex-direction: column; /* Cambiamos la dirección a columna en mobile */
    }

    .contenedor-boton {
        position: static; /* Quitamos el posicionamiento absoluto */
        margin-top: 1rem; /* Agregamos un margen superior para separar del texto */
        width: 100%; /* Hacemos que el contenedor ocupe todo el ancho */
        text-align: center; /* Centramos el botón dentro del contenedor */
    }
    #marquesina{
        flex-direction: column;
        
    }
    
}