/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos do corpo da página */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
    font-family: Arial, sans-serif;
}

/* Contêiner principal */
.container {
    text-align: center;
}

/* Estilos para a imagem do logotipo */
.logo {
    max-width: 100%;
    height: auto;
    width: 350px; /* Tamanho fixo para a largura da imagem */
    margin-bottom: 20px;
}

/* Estilos para o título */
h1 {
    font-size: 24px;
    margin-top: 20px;
}

/* Responsividade */
@media (min-width: 600px) {
    .logo {
        width: 500px; /* Aumenta o tamanho do logotipo em telas maiores */
    }

    h1 {
        font-size: 32px; /* Aumenta o tamanho do título em telas maiores */
    }
}

@media (min-width: 1024px) {
    .logo {
        width: 500px; /* Aumenta ainda mais o tamanho do logotipo em telas muito grandes */
    }

    h1 {
        font-size: 32px; /* Aumenta ainda mais o tamanho do título em telas muito grandes */
    }
}

/* Estilo para o botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

