 body, html {
            height: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url('../images/background.png'); /* Imagem de fundo PNG */
            background-size: auto; /* Faz a imagem cobrir todo o fundo */
            background-position: center; /* Centraliza a imagem no fundo */
            background-repeat: no-repeat; /* Evita a repetição da imagem */
        }
.circle-container {
    position: relative;
    width: 80vw; /* Largura relativa ao viewport */
    height: 80vw; /* Altura relativa ao viewport */
    max-width: 500px; /* Limita o tamanho máximo para telas grandes */
    max-height: 500px; /* Limita o tamanho máximo para telas grandes */
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-central {
    position: absolute;
    width: 230px; /* Largura ajustada da logo */
    height: 191px; /* Altura ajustada da logo */
    border: none; /* Remove qualquer borda */
    border-radius: 0; /* Remove qualquer arredondamento de borda */
    overflow: hidden; /* Garante que a imagem não saia do contêiner */
}
.logo-central img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta a imagem para cobrir todo o espaço da logo */
    display: block; /* Remove qualquer espaço extra abaixo da imagem */
}
.circle-container img {
    position: absolute;
    width: 173px; /* Tamanho fixo das imagens */
    height: 173px; /* Tamanho fixo das imagens */
    border-radius: 50%;
    transition: box-shadow 0.2s ease; /* Somente efeito de sombra */
}
.circle-container img:hover {
    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.7); /* Sombra mais forte */
}
/* Posições das imagens ao redor da logo */
.img1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.img2 { top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); }
.img3 { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.img4 { top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); }
.img5 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.img6 { top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); }
.img7 { top: 50%; left: 0; transform: translate(-50%, -50%); }
.img8 { top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); }

.desktop {
	display: block;
}

.mobile{
	display: none;	
	
}

.mobile img:hover{
	box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.7); /* Sombra mais forte */
	border-radius: 50%;
}

.img-mob {
	padding: 3px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .circle-container {
        width: 90vw;
        height: 90vw;
    }
    .circle-container img {
        width: 150px;
        height: 150px;
    }
	
	.desktop {
		display: none;
	}
	
	.mobile{
		display: block;
		position: relative;
	}
	
	.mobile img:hover{
		box-shadow: none;
		border-radius: 50%;
	}

}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .circle-container {
        width: 100vw;
        height: 100vw;
    }
    .circle-container img {
        width: 120px;
        height: 120px;
    }
}



/******** div canto superior direito ***********/

/* Ícone do WhatsApp no canto inferior direito */
#login-icon {
    position: fixed;
    top: 20px;
    margin-top: 20px;
    margin-right: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-color: #fff; /*transparent; /*#25D366; /* Cor verde do WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

#login-icon img {
    width: 75px;
    height: 75px;
}

#login-box {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none; /* Inicialmente escondido */
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 25px;
}

#login-box p {
    margin: 0;
    font-size: 20px;
    color: #333;
    text-align: center;
}


/******** /div canto superior direito ***********/

/******** div canto inferior direito ***********/


/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Ícone do WhatsApp no canto inferior direito */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-color: #fff; /*transparent; /*#25D366; /* Cor verde do WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

#whatsapp-icon img {
    width: 75px;
    height: 75px;
}

/* Quadrado que aparece no canto inferior direito */
#contact-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none; /* Inicialmente escondido */
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 25px;
}

#contact-box p {
    margin: 0;
    font-size: 20px;
    color: #333;
    text-align: center;
}

/* Tornando o layout responsivo */
@media (max-width: 600px) {
    #contact-box {
        width: 90%;
        height: 300px;
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-icon img {
        width: 25px;
        height: 25px;
    }
}

/******** /div canto inferior direito ***********/



/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Caixa de contato */
#contact-box {
    width: 350px;
    height: auto; /*500px;*/
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

#login-box {
    width: 350px;
    height: auto; /*500px;*/
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

/* Grupo de botões */
.button-group {
    display: block; /*flex;*/
    justify-content: space-between;    
}

.button-group button {
    width: 96%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
}

.button-group button:hover {
    background-color: #0056b3;
}

/* Conteúdo escondido */
.content {
    margin-top: 20px;
}

.content a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.content div {
    margin-bottom: 10px;
    font-size: 16px;
}

form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    margin-bottom: 10px;
}

form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
}

form button:hover {
    background-color: #218838;
}
