@import url('https://fonts.googleapis.com/css2?family=Heebo&family=Lora&family=Montserrat&display=swap');
*{
    margin: 0;
    padding: 0;
}
.primeraSeccion{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fondo{
    width: 100%;
    height: 35rem;
    display: flex;
    justify-content: center; 
    position: relative;
}

.fondo img{
    position: absolute;
    object-fit: cover;
    object-position: 20% 50% ;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fondo .degradado{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: linear-gradient(180deg, rgb(54, 54, 54) 0%, transparent 90%);
    
}

.fondo .texto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 4;
    margin-top: 5%;
}

.texto .logo{
    width: 8rem;
    height: 8rem;
    position: relative;
    z-index: 4;
}
.texto .logo img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
}

.texto p{
    color:aliceblue;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Heebo';
    align-items: center;
    justify-content: center;
}

.texto button{
    height: 2rem;
    width: 40%;
    margin-top: 1rem;
    border-radius: 15px;
    border-style: none;
    background-color: #B78010;
    color: aliceblue;
    cursor: pointer;
}

.texto .become{
    margin-top: 0%;
    margin-bottom: 2rem;
    font-size: 25px;
    font-family: 'Lora';
    font-style: italic;
    font-weight: 500;
    color: #B78010;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto .elite{
    font-size: 35px;
    font-family: "Moserrat";
    font-weight: 500;
    margin-bottom: 0%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.segundaSeccion{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fondo2{
    width: 100%;
    height: 32rem;
    display: flex;
    justify-content: center; 
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(54, 54, 54);
}
.imagen{
    display:flex;
    width: 40%;
    height: 22rem;
    background-color: aqua;
    margin: 10%;
    position: relative;
}

.imagen img{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.texto2{
    width: 60%;
    margin: 10% 0% 10% 10%;
}

.texto2 .titulo{
    font-family: 'Heebo';
    font-size: 25px;
    color: #B78010;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.texto2 .parrafo{
    font-family: 'Heebo';
    font-size: 18px;
    color:aliceblue
}

.whatsapp-flotante {
    position: fixed; /* Fija el botón en relación con la ventana del navegador */
    width: 60px;
    height: 60px;
    bottom: 40px; /* Distancia desde la parte inferior */
    right: 40px; /* Distancia desde la parte derecha */
    color: #FFF; /* Color del ícono (blanco) */
    border-radius: 50px; /* Hace el botón circular */
    text-align: center; /* Centra el ícono dentro del botón */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
    display: flex; /* Para centrar el ícono verticalmente */
    align-items: center; /* Para centrar el ícono verticalmente */
    justify-content: center; /* Para centrar el ícono horizontalmente */
  }
  
  .whatsapp-flotante:hover {
    scale: 1.5; /* Escalado en el hover*/
  }
  
  /* Si no usas Font Awesome y pones un <img> directamente, puedes necesitar ajustar esto */
  .whatsapp-flotante img {
    width: 60px; /* Ajusta el tamaño según sea necesario */
    height: 60px; /* Ajusta el tamaño según sea necesario */
  }

@media (max-width:600px) {
    .texto p{
        width: 80%;
        text-align: center;
    }
    .texto button{
        width: 60%;
    }
    
    .texto p{
        width: 80%;
        text-align: center;
        font-size: 14px;
    }
    .texto .elite{
        font-size: 30px;
    }
    .texto .become{
        font-size: 20px;
    }
    .texto button{
        width: 60%;
    }
    .texto .logo{
        width: 7rem;
        height: 7rem;
        margin-top: 4rem;
    }
    .imagen{
        display:none;
    }
    .fondo2{
        justify-content: center;
    }
    .texto2{
        width: 90%;
        margin: 1rem;
    }
    .texto2 .titulo{
        font-size: 18px;
        width:90%;
    }
    .texto2 .parrafo{
        font-size: 17px;
    }
}