* {
    margin: 0;
}


/* NAV */
.gt-current-lang {
    display: none !important;
}

/* Importando a fonte Outfit diretamente no CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');


.elementor-element-4504aa4 {
    background-color: white !important;
}

/* Estilizando o container da barra de navegação */
.nav-container {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 600;
    gap: 20px;
}

/* Estilizando os links da navegação */
.nav-container span  {
    text-decoration: none;
    color: #bc1888 !important; 
    
}
/* Efeito ao passar o mouse */
.nav-container a:hover {
    color: #9b1570 !important; /* Cor quando passar o mouse */
}


.elementor-element-100cff4 {
    background-image: linear-gradient(55deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888) !important;
}

/* FOOTER */

.elementor-element-141ecef {
    background: linear-gradient(55deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.elementor-element-c4331d9 {
    background: linear-gradient(55deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.elementor-element-74f4481 {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF) !important;

}

.elementor-element-b89c26e {
    background: linear-gradient(45deg, #25F4FF, #FE2C55, #64FFDA) !important;

}

.elementor-element-1474ab01 {
    background: linear-gradient(45deg, #b02626 25%, #dc2335 50%, #c0252b 75%, #ec2039) !important;
}


.brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    padding: 5rem;
}

.textContent {
    color: white;
    /* Deixa o texto branco */
    font-family: Arial, sans-serif;
    /* Define a fonte */
    font-size: 1rem;
    /* Tamanho base do texto */

    padding: 20px;
    /* Espaçamento interno */
}

.textContent p {
    font-size: 1.5rem;
    /* Tamanho maior para os parágrafos */
}

.textContent h2 {
    font-size: 3.5rem;
    /* Tamanho maior para o h2 */
    font-weight: 900;
}

.textBottom {
    font-size: 1.5rem !important;
    /* Tamanho maior para o h3 */
    margin-top: 10px;
}

.cardList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas de tamanho igual */
    gap: 20px;
    /* Espaçamento entre os cards */
    justify-content: center;
    align-items: stretch;
    padding: 20px;
}

/* Estilizando o container do card */
.elementor-price-table {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #F58529, #DD2A7B, #8134AF) border-box;
  border: 5px solid transparent;
  border-radius: 15px;
  color: #9b1570;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 350px;
  padding: 30px;
  margin: auto;
  position: relative;
}


/* Título do plano */
.elementor-price-table__heading {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Estilizando a área do número de seguidores */
.area-numero-seguidores {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 200;
    background: #f4edff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: left;
}

.area-numero-seguidores .content {
    display: flex;
    align-items: center;
}

.content .number{
    font-size: 30px;
    margin: 0px 5px 0px 15px;
    font-weight: bold;
}

.area-numero-seguidores img {
    width: 41px;
    height: 32px;
}

/* Preços */
.area-precos {
    font-size: 1.2rem;
    margin: 15px 0;
}

.preco-original {
    text-decoration: line-through;
    color: #f71a1a;
}

.preco-desconto {
    font-size: 1.8rem;
    color: #9b1570;
    font-weight: bold;
}

/* Lista de benefícios */
.elementor-price-table__features-list {
    list-style: none;
    padding: 0;
   
}

.elementor-price-table__feature-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Botão de compra */
.elementor-price-table__footer button {
    background: linear-gradient(to right, #bc1888, #9b1570);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.elementor-price-table__footer button:hover {
    background: linear-gradient(to right, #9b1570, #bc1888);
}

/* POPUP */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');



.loading-spinner {
    font-size: 18px !important;
    color: #bc1888 !important;
    margin-top: 10px !important;
    font-weight: bold !important;
}

.popup-overlay {
    z-index: 10000 !important;
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    justify-content: center !important;
    align-items: center !important;
}


.popup-content {
    font-family: 'Quicksand', sans-serif !important;
    background: white !important;
    padding: 20px !important;
    border-radius: 10px !important;
    width: 300px !important;
    text-align: center !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

.popup-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.popup-footer {
    margin-top: 10px;
}

.popup-footer p {
    margin-bottom: 24px;
    color: #515063;
}

.popup-body p {
    color: #515063;
}
.popup-body label {
    color: #515063;
}

.popup-logo {
    width: 80px !important;
}

.close-btn {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    color: #bc1888 !important;
    transition: 0.3s !important;
}

.close-btn:hover {
    color: #9b1570 !important;
}

.followers-area {
    margin: 10px 0 !important;
}

.followers-area p {
    margin-bottom: 28px;
}

.followers-number {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #bc1888 !important;
}

.followers-label p {
    font-size: 16px !important;
    color: #333 !important;
}

.price-area {
    margin: 10px 0 !important;
}

.number-discount-price {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #27ae60 !important;
}

.popup-input {
    width: 90% ;
    height: 30px !important;
    padding: 10px !important;
    margin: 10px auto !important;
    border-radius: 5px !important;
    border: 1px solid #ddd !important;
    font-size: 16px !important;
    text-align: center !important;
    outline: none;
}

.verify-btn,
.buy-now-btn {
    margin-top: 10px;
    width: 100% !important;
    padding: 12px !important;
    border-radius: 5px !important;
    border: none !important;
    font-size: 16px !important;
    transition: 0.3s !important;
}

.verify-btn {
    cursor: not-allowed !important;
    background: #bc1888 !important;
    color: white !important;
}

.verify-btn.enabled {
    background: #27ae60 !important;
    cursor: pointer !important;
}

.buy-now-btn {
    background: #3498db !important;
    color: white !important;
    display: none;
    cursor: pointer !important;
}

.popup-footer {
    font-size: 14px !important;
    color: #666 !important;
}

/* Estilos principais para o contador */
.custom-counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.custom-counter {
    background: #ff0000;  /* Fundo vermelho forte */
    color: white;  /* Texto branco */
    border-radius: 10px;  /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    text-align: center;
    width: 189px;  /* Largura ajustada */
    height: 69px;  /* Altura ajustada */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para o número */



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Título do contador */
.custom-counter-number-wrapper p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0 !important;
    font-family: 'Montserrat', sans-serif;
}

/* Título do contador */
.custom-counter-number {
    margin-left: 2px;
}

#opinioes-section h2 {
    font-weight: bold;
}

@media (max-width: 768px) {
    /* Ajustes para a div .brand */
    .brand {
        flex-direction: column;
        padding: 3rem;
    }

    .textContent {
        font-size: 0.9rem;
        text-align: center;
    }

    .textContent h2 {
        font-size: 2.5rem;
    }

    .textBottom {
        font-size: 1.2rem !important;
        margin-top: 10px;
    }

    .brand img {
        width: 50%;
        height: auto;
        margin-top: 10px;
    }

    /* Ajustes para os cards */
    .cardList {
        grid-template-columns: 1fr; /* Um card por linha */
        gap: 20px; /* Adiciona espaço entre os cards */
        padding: 0 10px; /* Adiciona espaçamento nas laterais */
    }

    .elementor-price-table {
        max-width: 90%; /* Reduz a largura do card */
        padding: 20px;
        margin: 0 auto; /* Centraliza o card */
    }

    .elementor-price-table__heading {
        font-size: 1.4rem;
    }

    .area-numero-seguidores {
        font-size: 1rem;
        padding: 8px;
    }

    .area-precos {
        font-size: 1rem;
    }

    .preco-original {
        font-size: 1rem;
    }

    .preco-desconto {
        font-size: 1.6rem;
    }

    .elementor-price-table__features-list {
        font-size: 0.9rem;
    }

    .elementor-price-table__footer button {
        font-size: 1rem;
        padding: 10px;
    }

    .custom-counter {
        width: 150px;  /* Ajuste da largura */
        height: 55px;  /* Ajuste da altura */
    }

    .custom-counter-number-wrapper p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para a div .brand */
    .brand {
        padding: 2rem;
    }

    .textContent h2 {
        font-size: 2rem;
    }

    /* Ajustes para os cards */
    .elementor-price-table {
        max-width: 90%; /* Reduz a largura do card */
        padding: 15px;
        margin: 0 auto; /* Centraliza o card */
    }

    .elementor-price-table__heading {
        font-size: 1.3rem;
    }

    .area-numero-seguidores {
        font-size: 0.9rem;
    }

    .area-precos {
        font-size: 1rem;
    }

    .preco-desconto {
        font-size: 1.5rem;
    }

    .elementor-price-table__footer button {
        font-size: 1rem;
        padding: 8px;
    }

    .custom-counter {
        width: 130px;  /* Ajuste da largura */
        height: 50px;  /* Ajuste da altura */
    }

    .custom-counter-number-wrapper p {
        font-size: 12px;
    }
}


.swiper {
    width: 240px;
    height: 320px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    margin-bottom: 10px;
}

.name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.comment {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stars {
    font-size: 1.2rem;
    color: #ffb400;
}

.stars span {
    margin: 0 2px;
}

.explanation-section {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin: 20px 0;
}

.explanation-content {

    max-width: 50%;
}

.explanation-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.explanation-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Ajusta a distância do traço ao texto */
    left: 0;
    /* Mantém o traço alinhado à esquerda */
    height: 6px;
    width: 50%;
    /* Ajusta a largura ao texto */
    border-radius: 10px;
    background-color: #ff8c00 ;
    /* Cor do traço */
}

.explanation-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
}

.explanation-image {
   
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .explanation-section {
        flex-direction: column;
        text-align: center;
    }

    .explanation-content h2::after {
        display: none;
    }

    .explanation-content {
        max-width: 100%;
    }

    .explanation-image {
        margin-top: 20px;
    }
}


.oferta svg {
    width: 50px; /* Tamanho ajustado */
    height: 50px; /* Tamanho ajustado */
    fill: white;  /* Cor branca */
    stroke: white; /* Cor das linhas */
    stroke-width: 1; /* Aumento da espessura das linhas */
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo {
    margin-top: 5px;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
}

.containerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 86.22px;
    height: 31.5px;
}

.menu-button {
    width: 40px;
    /* Definindo um tamanho fixo */
    height: 40px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CC3366 !important;
}
.menu-button:hover {
    color: #c03261 !important;
}
.menu-button:focus {
    color: #CC3366 !important;
    outline: none;
}

.nav-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% - 1px);
    /* Ajusta para eliminar qualquer pequeno vão */
    left: 0;
    background: white;
    width: 100%;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 20px;
}

.nav-container a {
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

.nav-container.show {
    max-height: 250px;
    /* Ajuste conforme necessário */
    padding: 10px 20px;
}

@media (min-width: 769px) {
    .nav-container {
        
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        width: auto;
        padding: 0;
        max-height: none;
    }

    .menu-button {
        display: none;
    }
}

/* Estilo geral para o container dos benefícios */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 20px;
}

/* Estilo para cada card de benefício */
.benefit-card {
    font-family: 'Outfit', sans-serif;
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c 25%, #ff8c00 50%, #e6683c 75%, #fc4a1a);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Efeito de hover nos cards */
.benefit-card:hover {
    transform: scale(1.05);
}

/* Estilo para os ícones dentro de cada card */
.benefit-icon {
    font-size: 40px;
    color: #BC1888;
    margin-bottom: 15px;
}

/* Estilo para os títulos dentro dos cards */
.benefit-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Estilo para as descrições dentro dos cards */
.benefit-description {
    font-size: 1rem;
    color: #ffffff;
}

/* Responsividade: para telas menores, os cards ocupam 100% da largura */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Para telas muito pequenas (celulares), os cards ocupam 100% da largura */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

.elementor-image {
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
    filter: brightness(0) invert(1);
}

.elementor-image img {
    margin-top: 5px;
   
}