.float-whats{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;	
	text-align:center;
	padding-top: 8px;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

#estrela-brilho {
    
    animation: brilho 2.5s infinite ease-in-out;
  }

  @keyframes brilho {
    0%, 100% {
      filter: brightness(1);
      opacity: 1;
    }
    50% {
      filter: brightness(1.2);
      opacity: 0.8;
    }
  }

 


/* Flexible iFrame */
 
.flexible-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
 
.flexible-container iframe,   
.flexible-container object,  
.flexible-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.soft-green {
    background-color: rgb(200, 235, 200);
}

.bg-soft-gray {
    background-color: #f2f3f6;
}

.font-gordinha {
    font-weight: 800 !important;
}

.bg-aprumado {
    background-image: url('../img/bg-aprumado.jpg');
    background-size: cover;  /* A imagem vai cobrir toda a área da div */
    background-position: center;  /* Centraliza a imagem */
    
}

.bg-aprumado-cinza {
    background-image: url('../img/bg-cinza.png');
   
    background-position: center;  /* Centraliza a imagem */
    
}

@font-face {
    font-family: 'Basic-Choice2';
    src: url('fontes/BasicChoice2.ttf') format('truetype'); /* Formato moderno de fonte */
        
    /* Adicione outros formatos, se necessário */
}


.font-aprumado {
	font-family: 'Basic-Choice2', sans-serif;
}

.insta-icon {
  position: absolute;
  bottom: 30px;
  right: 12px;
  background: rgba(255, 255, 255, 0.7); /* 50% transparência */
  border-radius: 45%;
  padding: 6px;
  font-size: 20px;
  color: #C13584; /* cor do Instagram */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.insta-icon:hover {
  background: #C13584;
  color: #fff;
}

/* Esconder os dois por padrão */
.only-desktop,
.only-mobile {
	display: none;
}

/* Mostrar apenas no desktop (a partir de 992px) */
@media (min-width: 992px) {
	.only-desktop {
		display: block;
	}
}

/* Mostrar apenas no mobile (até 991px) */
@media (max-width: 991px) {
	.only-mobile {
		display: block;
	}
}
