body {
    background-attachment: fixed;
    background-color: #EEEEEE;
    background-image:url('background.jpg');
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.button {
    display: inline-block;
    padding: 20px 40px;
    margin: 10px;
    background-color: #CCA75E;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    font-size: 20px;
    min-width: 386px;
}
.button br {
    display: none;   
}
.button b {
	justify-content: center;
	display: flex;
	align-items: center;
	height: 100%;
}
.button img {
    float: left;
}
.button-whatsapp {
    background-color: #CCA75E; /* Cor do WhatsApp */
    position: relative;
    z-index: 1;
}
.button-whatsapp-main::after {
    content: "";
	background-color: #CCA75E;
	border: 1px solid #CCA75E;
	border-radius: 5px;
	display: inline-block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .4s;
	/* animation-name: pulse; */
	/* animation-duration: 650ms; */
	/* animation-iteration-count: infinite; */
}
.button-whatsapp:hover {
    background-color: #075E54; /* Cor do WhatsApp em hover */
}
.button-whatsapp img {
    border: 3px solid #25D366;
    border-radius: 50%;
    max-width: 62px;
    margin: 0 8px 0 -15px;
    vertical-align: middle;
}
.button-phone {
    background-color: #007bff; /* Cor azul para o botão de ligar */
}
.button-phone:hover {
    background-color: #0056b3; /* Cor azul mais escura em hover */
}
.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.groups-text {
    font-size: 20px; /* Aumentando o tamanho do texto */
    margin-top: 20px; /* Aumentando a margem superior do texto */
}
.group-button {
    padding: 15px 30px; /* Reduzindo o padding dos botões do grupo */
    margin: 5px; /* Reduzindo a margem dos botões do grupo */
    font-size: 16px; /* Ajustando o tamanho do texto dos botões do grupo */
    min-width: 265px; /* Ajustando a largura mínima dos botões do grupo */
}
@keyframes pulse {
	0%   {transform: scaleX(1.0) scaleY(1.0); opacity:1;}
	25%  {transform: scaleX(1.1) scaleY(1.2); opacity:0.7;}
	50%  {transform: scaleX(1.2) scaleY(1.4); opacity:0.4;}
	75%  {transform: scaleX(1.3) scaleY(1.5); opacity:0.1;}
	100% {transform: scaleX(1.4) scaleY(1.6); opacity:0;}
}
@media (max-width: 767px) {

    body, html {
        max-width: 100%;
        overflow-x: hidden;
    }
    .container {
        display: block !important;
        height: auto !important;
        padding-top: 15px;
    }
    .button {
        max-width: 100%;
    }
    .d-inline-mobile {
        display: inline !important;
    }
}
@media (max-width: 500px) {
    .button {
        min-width: 72%;
    }
    .button br {
        display: inline;   
    }
    .button img {
        float: left;
        margin: 0;
    }
    .button b {
        display: block;
        padding-top: 12px;
    }
}