:root {
 
  --corprincipal: #E63D4F;
  --corsecundaria: #FF7989;
  --corterciaria: #FFE6E6;
  --corprincipal2: #ff4054;
  --corbordaescura: #dd384c;
  --begeradi:#edebe1;
  --corbonus: #30CD72;
  --transparente: rgba(211, 48, 67, 0.1);
  --transparente1: rgba(238, 134, 146, 0.1);
  --transparente5: rgba(230, 60, 79, 0.5);
 
 
 /*var(--corprincipal)
   var(--corsecundaria)
   var(--corbonus)
   var(--transparente)
 */  
		}

        /*ajustes do corpo e de responsividade */

        body {
            background-color: var(--corprincipal);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            width: 100%;
        }
        
        .contconteudo {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
        }
        
        /* Ajustando a Media Query para telas menores que 800px */
        @media (max-width: 800px) {
            .contconteudo {
                width: 100%; /* Ocupa 100% da largura em telas menores */
                padding: 10px;
            }
        }
        
        .conteudo {
            background-color: white;
            padding: 20px;
            box-sizing: border-box;
            border-radius: 10px;
        }


   /* animacao de tudo */     


        *{
            opacity: 0;
            animation: fadeIn 0.2s cubic-bezier(0.25, 1.5, 0.5, 1) forwards;
          }
          
          @keyframes fadeIn {
            from {
              opacity: 0;
              transform: translateY(50px);
            }
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }


h3 {
    color: var(--corprincipal);
	font-weight: 500;
   }

h4 {
    color: var(--corprincipal);
	font-weight: 500;
   }
h1 {
    color: white;
	font-weight: 700;
    font-size: 30px;
}

/*da colocar esse código no lugar certo depois*/
.textobranco {
    color: white;
}

.logo-container {
    width: 100%;
    text-align:left;
    }

.logo-container img {
    max-width: 70px;
    height: auto;
    margin-bottom: 15px;
    margin-top: -30px;
}

hr{
    color: var(--corterciaria);
}
	
	/* Seleção de objetivos */	

.servicos-adicionais {
    margin-bottom: 20px;
}

.servico-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    justify-content: space-between; /* Adicionado */
    background-color: var(--begeradi)
}

.servico-box.ativo {
    background-color: var(--corprincipal2);;
    border-color: var(--corbordaescura);;
    
}

.servico-box.ativo h4, .servico-box.ativo p{
  color:var(--corterciaria);  
}

.custom-switch .form-check-input {
    width: 3em;
    height: 1.5em;
}

.servico-texto h4 {
    margin-bottom: 5px;
}

.servico-texto p {
    margin: 0px;
    font-size: 15px;
}

.form-check-input:checked {
    background-color: var(--corprincipal);
    border-color: var(--corprincipal);
}

.form-check-input:focus {
    border-color: var(--transparente);
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--transparente);
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFE6E6'/%3e%3c/svg%3e") !important;
      
}

/* preços do painel inicial */

.resultadoFinal {
    font-size: 45px;
    font-weight: 900;
    color: white;
}

.finalmes {
    font-size: 20px;
    font-weight: 900;
    color: white;
}


.resultadoFinal2 {
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.resultadoFinal h2 {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
}

#resultadoFinal {
    text-align: center;
}

/* estrutura da seleção de calendários editoriais */

.resumo-container {
    margin-top: 15px;
}

.resumo-label{ 
color:gray;
font-weight: 500;
font-size: 13px;
    
}
.resumo-title{
color:var(--corprincipal);
font-weight: 500;
font-size: 13px;

}

.editorial-container {
    display: flex;
    background-color: var(--corterciaria);
    border-radius: 30px;
    padding: 0;
   	margin-top: 15px;
}

.editorial-btn {
    flex: 1;
    border: none;
    background-color: transparent;
    color: var(--corsecundaria);
    padding: 5px 5px;
    margin: 0;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: 600;
}

.editorial-btn.active {
    background-color: var(--corprincipal);
    color: white;
}

.range-container {
    margin-top: 15px;
}

.range-label {
color:gray;
font-weight: 500;
font-size: 13px;
    
}

.custom-range {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
    z-index: 1;
	

}

/*barra vermelha*/
.custom-range::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
	background-image: linear-gradient(to right, var(--corprincipal), var(--corprincipal) );
    border-radius: 5px;
    width: calc(var(--value) * 1%);
    z-index: 0;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
    border-color: var(--corprincipal);
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px var(--corprincipal);/* sombra da bolinha do slider */
}

.custom-range::-webkit-slider-thumb:active,
.custom-range::-webkit-slider-thumb:focus {
    background: #f1f1f1;/* cor da bolinha do slider pressionada */
	box-shadow: 0 2px 5px var(--corprincipal)
   
	}
	

.custom-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--corprincipal);
    border-radius: 50%;
    cursor: pointer;
	box-shadow: 0 2px 5px var(--transparente5);
}

.bonus-text {
    color: var(--corbonus);
    transition: 0.5s;
	font-weight: 900;
}

/* Hover, active & focus Thumb: Webkit */

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px var(--transparente);
  
}
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px var(--transparente);
  
}
input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px var(--transparente);
  
}

/* Estilos para a barra do slider (WebKit) */
.custom-range::-webkit-slider-runnable-track {
    background: var(--transparente1); /* Cor de fundo da barra clarinha */
	border-radius: 5px; /* Raio da borda da barra */
    box-shadow: inset 0 1px 1px var(--transparente);/*cor da sombra interna da barra*/
    height: 7px; /* Altura da barra */
    
}

/* Estilos para a barra do slider (Firefox) */
.custom-range::-moz-range-track {
  	background: var(--transparente1); /* Cor de fundo da barra */
    border-radius: 5px; /* Raio da borda da barra */
    box-shadow: inset 0 1px 1px var(--transparente);
    height: 7px; /* Altura da barra */
}

/* contador de postagem individual*/
.contvalue {
	font-weight: 700;
	color: var(--corprincipal);
	}


/* fim do paniel de redes sociais */


/*BENEFICIOS*/

.beneficios {
    margin-top: 20px ;
}

/* badges */

.wrapper{
    filter: drop-shadow(2px 12px 7px rgb(159 159 159 / 27%))/*Sombra difusa*/
            ; /* Sombra curta */

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    animation: none !important;
    opacity: 1 !important;
    position: relative;
     
    
  }

.badge-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    border-radius: 50%;
    animation: none !important;
    opacity: 1 !important;
    

}

.badge-square {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    margin-bottom: 5px;
    filter: url(#round);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease!important;
    opacity: 0.1!important; /* Adiciona opacidade inicial */
    animation: none!important;
    
    
    
       
}

.badge-square:hover {
    filter: brightness(0.8)!important;
    
}

.badge-square.active {
    opacity: 1!important; /* Aumenta a opacidade quando ativo */
    
    
}

.badge-square i {
    font-size: 1.5em;
    animation: none !important;
    opacity: 1!important;
}

.badge-text {
    font-size: 0.7em;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
    animation: none !important;
    opacity: 1!important;
}

.badgeRed {
    background: linear-gradient(137deg, rgb(230 61 79) 38%, rgb(255 89 107) 56%, rgb(204 26 45) 66%, rgb(230 61 79) 118%);
    color: white;
    clip-path: polygon(6.67% 25.05%, 4.57% 31.99%, 4.57% 67.71%, 6.89% 75.32%, 12.17% 80.62%, 42.76% 98.27%, 50% 99.99%, 57.47% 98.14%, 88.11% 80.45%, 93.26% 75.08%, 95.43% 67.8%, 95.43% 32.08%, 93.35% 25.09%, 88.09% 19.54%, 57.26% 1.73%, 50% 0%, 42.88% 1.65%, 11.68% 19.67%, 6.67% 25.05%);
    
}

.badgeGold {
    background: linear-gradient(137deg, rgba(255,215,0,1) 0%, rgba(255,239,128,1) 55%, rgba(255,186,0,1) 66%, rgba(194,104,0,1) 118%);
    /*background: linear-gradient(135deg, rgba(255,215,0,1) 0%, rgba(255,239,128,1) 79%, rgba(255,186,0,1) 82%, rgba(194,104,0,1) 100%);*/
    /*background: linear-gradient(135deg, rgba(255,215,0,1) 0%, rgba(255,239,128,1) 52%, rgba(255,186,0,1) 66%, rgba(194,104,0,1) 100%);*/
    /*background-color: #ffb800;*/
    color: black;
    clip-path: polygon(6.67% 25.05%, 4.57% 31.99%, 4.57% 67.71%, 6.89% 75.32%, 12.17% 80.62%, 42.76% 98.27%, 50% 99.99%, 57.47% 98.14%, 88.11% 80.45%, 93.26% 75.08%, 95.43% 67.8%, 95.43% 32.08%, 93.35% 25.09%, 88.09% 19.54%, 57.26% 1.73%, 50% 0%, 42.88% 1.65%, 11.68% 19.67%, 6.67% 25.05%);
}

.badgeBlack {
    background: linear-gradient(137deg, rgb(0 0 0) 0%, rgb(60 60 60) 55%, rgb(0 0 0) 66%, rgb(0 0 0) 118%);
    clip-path: polygon(6.67% 25.05%, 4.57% 31.99%, 4.57% 67.71%, 6.89% 75.32%, 12.17% 80.62%, 42.76% 98.27%, 50% 99.99%, 57.47% 98.14%, 88.11% 80.45%, 93.26% 75.08%, 95.43% 67.8%, 95.43% 32.08%, 93.35% 25.09%, 88.09% 19.54%, 57.26% 1.73%, 50% 0%, 42.88% 1.65%, 11.68% 19.67%, 6.67% 25.05%);
}

.box-explicacao {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -5px);
    z-index: 10;
    font-size: 0.8em;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 10px;
    
}

.box-explicacao.ativo {
    display: block;
    opacity: 1;
    transform: translate(-50%, 0);
}

.box-explicacao h4 {
    font-size: 1em;
    margin-bottom: 5px;
}




/* CSS do painel de trafego */

.planos-trafego {
    display: flex;
    justify-content: space-around;
}

.plano-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin: 0px;
    width: 233px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.plano-box:hover {
    background-color: var(--corprincipal);
    color: white;
}

.plano-box:hover .lista-itens li i {
    color: white;
}

.plano-box.active {
    border-color: var(--corprincipal);
    background-color: var(--corprincipal);
    color: white;
}

.nome-plano {
    font-size: 1em;
    font-weight: bold;
    color: var(--corprincipal); /* Cor padrão do nome do plano */
}

.preco-container {
    display: flex;
    align-items: baseline;
}

.preco-plano {
    font-size: 1.50em;
    font-weight: bold;
    margin-right: 3px;
}

.mes {
    font-size: 0.7em;
}

.desconto {
    color: var(--corbonus);
    font-size: 0.6em; /* Tamanho padrão para desktop */
    font-weight: 500;
}

/* Media Query para telas menores (mobile) */
@media (max-width: 768px) {
    .desconto {
        font-size: 0.7em; /* Tamanho para mobile */
    }
}

.lista-itens {
    list-style: none;
    padding: 0;
}

.lista-itens li {
    margin-bottom: 3px;
    font-size: 0.8em;
}

.btn-quero-esse {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    font-size: 0.9em;
    background-color: var(--corprincipal);
    transition: background-color 0.3s ease;
}

.btn-quero-esse:hover {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    font-size: 0.9em;
    background-color: var(--corsecundaria);
}

/* Ajustando o botão "Quero esse" no hover */
.plano-box:hover .btn-quero-esse {
    background-color: white;
    color: var(--corprincipal);
}

/* Ajustando o botão "Quero esse" no estado ativo */
.plano-box.active .btn-quero-esse {
    background-color: black;
    color: white;
}

/* Ajustando a cor do desconto no estado ativo */
.plano-box.active .desconto {
    color: #4fff9a;
}

/* Ajustando a cor do nome do plano no hover */
.plano-box:hover .nome-plano {
    color: white;
}

/* Ajustando a cor do nome do plano no estado ativo */
.plano-box.active .nome-plano {
    color: white;
}

/* Media query para mobile */
@media (max-width: 768px) {
    .planos-trafego {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plano-box {
        width: 100%;
        margin: 5px;
    }
}

.trafego-observacoes {
    font-size: 10px;
}

/* enviar pelo whatsapp */
.btn-success i {
    margin-right: 5px; /* Adiciona uma pequena margem à direita do ícone */
}





