@keyframes spin3d {
    from {
        transform: rotateY(0deg); /* Inicia a rotação em 0 graus */
    }
    to {
        transform: rotateY(360deg); /* Completa a rotação em 360 graus */
    }
}
.home {
    background-image: url('../images/home.png');
}
header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid white;
    background-color: rgba(0,0,0,0.3);
}
ul {
    display: flex;
}
header h1 {
    font-family: "Manrope", serif;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
    margin-left: 104px;
}
header ul {
    color: white;
    font-family: "Inter", serif;
    text-transform: uppercase;
    font-size: 14px;

}
header li {
    margin-left: 16px;
    margin-right: 16px;
}
header a, header a:hover {
    color: white;
    text-decoration: none;
}
.home .home-tittle {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-tittle-left h3 {
    font-size: 35px;
    font-family: "Manrope", serif;
    font-weight: bold;
    color: #F73647;
    text-shadow: 1px 1px 0px white;
    text-align: center;
}
.home-textbox {
    font-family: "Inter", serif;
    font-size: 17px;
    width: 60%;
    margin-top: 50px;
    margin-bottom: 50px;
    color: white;

    text-align: center;
}
.home .tittle {
    margin: 60px;
    width: 65%;
    font-family: "Manrope", serif;
    font-size: 30px;
    text-transform: uppercase;
    color: white;
}
.logos-container {
    background-color: var(--background-primary);
    height: 100px;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.computer-none {
    display: none;
}
.computer-width {
    width: 100px;
}
.container-icon {
    perspective: 1000px; /* Adiciona perspectiva para o efeito 3D */
    display: inline-block; /* Mantém o contêiner do tamanho da imagem */
}
.icon-home {
    margin: 60px;
    animation: spin3d 10s linear infinite; /* Animação de rotação */
    transform-style: preserve-3d; /* Mantém o contexto 3D */
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    border: 4px solid #F73647;
    border-radius: 10px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    border: 4px solid #F73647;
    border-radius: 10px;
    overflow: hidden;
}

video {
    width: 100%;
    display: block;
    border-radius: 6px;
}
.float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Garante que fique sobre outros elementos */
}

.float-button a img {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: var(--background-emphasys);
    border-radius: 25%;
    padding: 3px;
}

.float-button a img:hover {
    transform: scale(1.1);
}
.aling-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-whatsapp-button {
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    background-color: var(--background-emphasys);
    color: white;
    font-family: var(--font-tittle);
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.home-whatsapp-button a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-whatsapp-button img {
    margin-right: 6px;
    width: 40px;
}