
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}

header {
    display: inline-block;
    background-color: rgb(14, 0, 45);
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

header a {
    display: inline-block;
    color:#fff;
    text-decoration: none;
}

header img {
    display: inline-block;
    max-width: 100px;
    height: auto;
}

header h2 {
    font-size: 30px;
    color:rgb(255, 255, 255);
    text-align: left;
}

.title-product {
    /* display: inline-block; */
    font-size: 30px;
    color:rgb(255, 255, 255);
    text-align: center;
    /* margin-left: 15rem; */
}

.menu h2 {
    display: inline-block;
    font-size: 20px;
    color:rgb(255, 255, 255);
    text-align: center;
    padding-left: 150px;
}

.menu-products h2 {
    display: inline-block;
    font-size: 20px;
    color:rgb(255, 255, 255);
    text-align: center;
    padding-left: 15px;
}

.countdown-timer h2 {
    text-align: center; 
    font-size: 17px; 
    margin: 0;
    padding: 20px 0 5px; 
    color: white;
    background-color: rgb(14, 0, 45);
}

.countdown-timer span {
    background-color: #db3232;
    border-radius: 5px;
}

.countdown-container {
    display: flex;
    gap: 30px;
    background-color: rgb(14, 0, 45);
    padding: 5px;
    border-radius: none;
    margin-left: 18rem;
}

.countdown-container p {
    font-size: 25px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-left: 20rem;
    background-color: rgb(255, 0, 0); 
    padding: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}

.header-cta {
    display: inline-block;
    background-image: linear-gradient(to top left, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%);
    color: #fff;
    text-align: center;
    align-content: center;
    font-weight: bold;
    white-space: nowrap;
    padding: 20px;
    width: 300px;
    height: 20px;
    margin-top: 10px;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.header-cta:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

.time-unit-wrapper {
    position: relative;
    width: 80px; /* Largura do círculo */
    height: 80px; /* Altura do círculo */
    text-align: center;
}

.time-unit {
    position: relative;
    width: 100%;
    height: 100%;
}

.unit-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin-left: 0;
}

.label {
    font-size: 0.5em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-left: 0;
}

/* Estilização do SVG */
.circular-chart {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: 0;
}

.circle-bg {
    fill: none;
    stroke: #3c3c5c; /* Cor de fundo do círculo */
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round; /* Ponta arredondada */
    transform: rotate(-90deg); /* Inicia o preenchimento no topo */
    transform-origin: center;
    transition: stroke-dasharray 1s linear; /* Animação suave */
}

/* Cores específicas para cada círculo */
.days-circle { stroke: #3498db; }
.hours-circle { stroke: #e67e22; }
.minutes-circle { stroke: #2ecc71; }
.seconds-circle { stroke: #e74c3c; }

.hero {
    background-image: url('img/background-churches.png');
    background-size: cover;
    background-position: center;
    height: 35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    justify-content: center;
}

.cta-promocao {
    margin: 50px 0;
}

/* Garante que não haja margens padrões atrapalhando */
.cta-promocao h2 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;

}
.cta-promocao p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 100%;
}

.hero-cta1 {
    margin-left: 0;
}

.hero h1 {
    font-size: 25px;
    color: red;
    background-color: whitesmoke;
    border-radius: 15px;
    max-width: 50rem;
    text-align: center;
    margin-top: 40px;
}

.month-upper-sub{
    font-size: 25px;
    vertical-align: sub;
}

.hero a {
    display: inline-block;
    background-color:aliceblue;

}

.hero h2 {
    font-size: 25px;
    color: white;
    max-width: 50rem;
    text-align: center;
}

.hero p {
    font-size: 20px;
    color: white;
    max-width: 50rem;
    text-align: center;
}

.hero h2 span {
    /* background-color: rgb(255, 0, 0); */
    color: rgb(0, 188, 212);
    font-weight: bold;
    border-radius: 5px;
    padding: 2px
}

.hero .cta-button {
    display:block;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%);
    color: #fff;
    text-align: center;
    margin: 10px auto 10px;
    padding: 20px 20px;
    width: 400px;
    border: none;
    border-radius: 200px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.hero .cta-button:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

/* Estilos para o contador de vagas vendidas */
.vagas-vendidas-container {
    background-color: rgba(26, 26, 26, 0.800);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 400px;
    height: 200px;
    margin: 40px auto;
}

/* Texto do contador */
.vagas-vendidas-container p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 0;
}

/* Wrapper da barra de progresso */
.progress-bar-wrapper {
    background-color: #333;
    height: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; /* Garante que a barra interna não ultrapasse as bordas */
}

/* Barra de progresso preenchida */
.progress-bar-fill {
    background-color: #db3232; /* Cor vermelha da barra */
    height: 100%;
    width: 96%; /* Ajuste este valor para mudar a porcentagem */
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
}

/* Botão de ação */
.vagas-vendidas-container a {
    display: block;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%); /* Cor azul do botão */
    color: #fff;
    padding: 15px;
    border-radius: 200px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.vagas-vendidas-container a:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

/* Texto da localização */
/* .local-vagas-vendidas {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
} */

@keyframes piscar {
    0% {opacity: 1;}
    50% {opacity: 0.65;}
    100% {opacity: 1;}
}

.progress-bar-fill {
    animation: piscar 5s infinite;
}

/*TOOL PRESANTATION */

.tool-container-1{
    margin-bottom: 50px;
}

.tool-container-1 h2 {

    font-size: 30px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 5rem 0 0;
}
 
.tool h2 span {
    background-color: red;
    border-radius: 5px;
}

 .tool-img-1 {
    width: 1053px;
    height: 859px;
    border-radius: 20px;
    margin: 2rem 0rem 5rem 15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
}

.tool-container-2 {
    display: flex;
    gap: 20px;
    margin: 0;
    margin: 0 0 70px 100px;
}


.tool-text-2 {
    width: 50ch;
    padding: 20px;
}

 .tool-text-2 h2 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
    margin-top: 60px;;
}

.tool-text-2 p {
    font-size: 20px;
    color: #000;
    margin-top: 15px;
    line-height: 1.5rem;
}

.tool-text-2 span {
    font-weight: bold;
    background-color: rgb(14, 0, 45);
    color: white;
    border-radius: 5px;
}
 
 .tool-img-2 {
    width: 800px;
    height: 500px;
    border-radius: 20px;
    margin: 0 0 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
}

.tool-container-3 {
    display: flex;
    gap: 20px;
    margin: 0;
    margin: 0 0 70px 100px;
}

.tool-container-4 {
    display: flex;
    gap: 20px;
    margin: 0;
    margin: 0 0 0 100px;
}


.tool-img-3-container {
    position: relative;
    width: 800px;
    height: 500px;
    border-radius: 20px;
    margin: 0 0 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
}
 
 .tool-img-3 {
    width: 800px;
    height: 500px;
    margin: 0 0 50px;
}

.tool-button-2 {
    display: flex;
    position: absolute;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%); /* Cor azul do botão */
    color: #fff;
    padding: 15px;
    width: 0 10px;
    border-radius: 200px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 15px 20px 0 0;
}

.tool-button-2:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}
.tool-button-3 {
    display: flex;
    position: absolute;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%); /* Cor azul do botão */
    color: #fff;
    padding: 15px;
    width: 0 10px;
    border-radius: 200px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 290px 15px 0;
    text-align: center;
}

.tool-button-3:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 0px 100px;
}

.container {
    background-image: linear-gradient(to right, rgb(14, 0, 45), rgb(51, 0, 160));
    padding: 40px;
}

.container h2 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    margin: 20px 0 5px 290px;
    text-transform: uppercase;
    max-width: 60%;
    line-height: 1.5;
}

.container h2 span {
    background-color: rgb(255, 0, 0);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    padding: 2px;
}

.nowrap {
    white-space: nowrap;
}

.pricing-card {
    background-color:#edecea;
    border: 4px solid #00f5d8;
    border-radius: 30px;
    padding: 30px;
    text-align: none;
    width: 360px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card-highlighted {
    background-color:#edecea;
    border: 4px solid rgb(165, 247, 1);
    border-radius: 30px;
    padding: 30px;
    text-align: none;
    width: 360px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.pricing-card-highlighted:hover {
    transform: translateY(-10px);
}

.card-header {
    background-color:rgb(14, 0, 45);
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin: -30px -30px 20px -30px;;
}

 .card-header h2 {
    text-align: center;
    font-size: 25px;
    margin: 20px 0;
} 

 .pricing-card h3 {
    text-align: none;
    font-size: 20px;
    margin: 0 0 50px 0;
} 
 .pricing-card-highlighted h2 {
    text-align: none;
    font-size: 25px;
} 

 .pricing-card-highlighted h3 {
    text-align: none;
    font-size: 20px;
    margin: 0 0 50px;
} 

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding:10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card-highlighted ul {
    list-style: none;
    padding: 0;
}

.pricing-card-highlighted li {
    padding:10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-table .cta-button {
    display:block;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%);
    color: rgb(245, 240, 240);
    text-align: center;
    margin: 10px 20px 30px;
    padding: 15px 20px;
    width: 250px;
    border: none;
    border-radius: 200px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.pricing-table .cta-button:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 20px;
}

.price-number {
    font-size: 30px; 
    font-weight: 700; 
    color: #0d47a1;
}

.price-old {
    font-size: 20px;
    font-weight: bold;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: red;
}

.service-not-available {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #000;
}

.description-1 {
    background-color:#13003d;
    padding: 50px 0 100px;
}

.description-2 {
    background-image: linear-gradient(to top right, #004d57 60%, #2f0095);
    padding: 50px 0 100px;
}

.description {
    text-align: center;
    margin: 5px auto 20px;
}

.description h2 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    padding-top: 20px;
    margin: 30px auto 40px;
}

.description p {
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.cta-description {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 20px;
    margin-left: 20px;
}

.container-description {
    background-color: rgba(255, 255, 255, 0.102);
    margin: 0 10rem 0;
    border-radius: 80px;
}


.cta-description ul {
    display: column;
    font-size: 20px;
    color: #fff;
    text-align: none;
    padding-bottom: 10px;
    line-height: 37px;
}

.img-content-cta {
    width: 40rem;
    height: auto;
    margin: 0 10px 0 0;
    border-radius: 20px;
}

.cta-description-button {
    display:block;
    background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%);
    color: rgb(245, 240, 240);
    text-align: center;
    margin: 30px 10px;
    padding: 15px 60px;
    width: 250px;
    border: none;
    border-radius: 200px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.cta-description-button:hover {
    background-image: linear-gradient(to top, rgb(51, 0, 160) 20%, rgb(51, 0, 160) 100%);
    transform: translateY(-5px);
}

.icon-list {
    width: 20px;
    height: 20px;
}

.divider-1 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #403230;
}

.divider-1::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 31px solid #403230;
}

.divider-2 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #13003d;
}

.divider-2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 31px solid #13003d;
}

.divider-3 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
}

.divider-3::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 31px solid white;
}

.divider-4 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #210067;
}

.divider-4::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 31px solid #210067;
}

.banner-fixo-desconto {
    display: flex;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 0 0 0 20rem;
    position: fixed; /* It was relative */
    background-color: white;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
}

.banner-fixo-desconto-logo {
    max-width: 100px;
}

.banner-fixo-desconto h2 {
    margin: 28px 0 0;
}

.banner-fixo-desconto-button {
    display: flex;
    /* background-image: linear-gradient(to top, rgb(14, 0, 45) 20%, rgb(51, 0, 160) 100%); */
    background-color: red;
    color: rgb(245, 240, 240);
    font-size: 15px;
    text-align: center;
    margin: 15px 15px;
    padding: 15px 2.8rem;
    width: 400px 0 400px;
    border: none;
    border-radius: 200px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.banner-fixo-desconto-button:hover{
    background-color: darkred;
    transform: translateY(-5px);
}

.whatsapp-btn img {
    position: fixed;
    z-index: 1100;
    height: 55px;
    margin: 23.75rem 0 0 90rem; 
}

footer {
    color:#000;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    padding: 30px 0 100px;
}

@media (max-width: 768px) { 

    header {
        padding: 0;
    }

    header a h2 {
        font-size: 20px;
        margin-left: 10px;
    }

    header img {
        max-width: 100px;
    }

    .title-product {
        font-size: 25px;
        margin-left: 20px;
    }

    .menu h2 {
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    h2 {
        font-size: 25px;
        margin-left: 20px;
    }

    .countdown-timer h2 {
        font-size: 26px; /* Fonte menor */
        text-align: center;
        line-height: 1.2;
        padding: 10px;
    }
    .countdown-timer h2 span {  
        display: block; /* Força o span a ir para uma nova linha */
    }
    .countdown-container {
        display: flex; /* Mantém os itens lado a lado */
        flex-direction: row; /* Garante que a direção é em linha */
        flex-wrap: wrap; /* Permite que os itens quebrem a linha se não houver espaço */
        justify-content: center; /* Centraliza os contadores na horizontal */
        gap: 10px; /* Reduz o espaço entre os contadores para caber na tela */
        padding: 20px 10px;
        margin: 0; /* Remove a margem lateral que estava quebrando o layout */ 
    }

    .countdown-container p {
        font-size: 25px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        margin-left: 0;
        background-color: rgb(255, 0, 0); 
        padding: 2px 0;
        border-radius: 5px;
        text-transform: uppercase;

    }

    .header-cta {
        width: 90%; /* Deixa o botão mais largo */
        max-width: none; /* Remove o max-width para que o width funcione */
        padding: 15px 0;
        margin: 15px 0 0; /* Remove margem lateral */
    }

    .circular-chart {
        margin-left: 0;
    }

    .time-unit-wrapper {
        width: 70px; /* Tamanho do círculo para mobile */
        height: 70px;
        margin: 0;
    }

    .value {
        font-size: 20px; 
        margin: 0;
    }

    .label {
        font-size: 8px;
        margin-left: 0;
    }

    .hero {
        display: inline-block;
        height: 30rem;
    }

    .cta-promocao {
        margin: 25px 0;
    }

    .hero h2 {
        /* font-size: auto; */
        text-align: center;
        /*margin-left: 5px;*/
    }

    .hero h1 {
        font-size: 22px;
        margin: 14.740px 0;
    }

    .month-upper-sub{
        font-size: 16px;
        vertical-align: sub;
    }

    .hero p {
        font-size: 20px;
        width: 90%;
        margin: 0 auto 20px;
        text-align: center;
    }

    .hero .cta-button {
        width: 80%;
        padding: 15px;
        font-size: 14px;
    }

    .hero-cta1 {
    margin-left: 0;
    }

    .hero-cta1 h2 {
        font-size: 20px;
    }

    .vagas-vendidas-container {
        display: inline-block;
        margin: 0 30px;
        padding: 0;
    }

    .vagas-vendidas-container p {
        text-align: center;
    }

    .vagas-vendidas-container a{
        font-size: 15px
    }

    .tool-container-1 {
        display: flex; /* Mantém o display flex */
        flex-direction: column; /* Empilha os itens verticalmente */
        align-items: center; /* Centraliza os itens */
        margin: 0 20px;
    }

    .tool-container-1 h2 {
        font-size: 20px;
        margin: 40px 0 0;
        white-space: nowrap;
    }

    .tool-img-1 {
        width: 100%;
        height: auto;
        border-radius: 20px;
        margin: 2rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
    }
    
    .tool-container-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
    }
    
    .tool-text-2 {
        width: 100%; /* Ocupa a largura total */
        padding: 20px;
    }
    
    .tool-text-2 h2 {
        font-size: 20px; /* Fonte menor para mobile */
        margin-top: 0;
    }

    .tool-text-2 p {
        font-size: 16px; /* Fonte menor para mobile */
    }

    .tool-img-2 {
        width: 100%;
        height: auto;
        border-radius: 20px;
        margin: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
    }

    .tool-container-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
    }

    .tool-img-3-container {
        width: 100%; /* Ocupa a largura total */
        height: auto;
        margin: 2rem 0 8rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.859);
    }
    
    .tool-img-3 {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .tool-container-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
    }
    
    .tool-button-2 {
        display: block;
        position: relative;
        bottom: 10px; /* Posição sobre a imagem */
        padding: 15px 0 15px;
        /* transform: translateX(-50%); */
        margin: 0;
        width: 100%; /* Ajusta a largura para mobile */
        max-width: 400px;
        text-align: center;
    }
    
    .tool-button-3 {
        display: block;
        position: absolute;
        bottom: 0; /* Posição sobre a imagem */
        padding: 15px 0 15px;
        margin: 0 0 -70px;
        width: 100%; /* Ajusta a largura para mobile */
        max-width: 400px;
        text-align: center;
    }

    .container h2 {
        font-size: 20px;
        padding-bottom: 0;
        margin: 20px 0 5px;
        max-width: 100%;
    }

    .pricing-table{
        flex-direction: column;
    }

    .pricing-card {
        width: 90%;
        padding: 15px;
        font-size: 11px;
    }

    .pricing-card-highlighted {
        width: 90%;
        padding: 15px;
        font-size: 11px;
    }

    .card-header {
        padding: 10px;
        margin: -15px -15px 10px -15px;
    }

    .pricing-table .cta-button {
        width: 90%;
        margin-left: 0;
        margin-right: 0;
    }

    .price {
        font-size: 15px;
        padding-bottom: 15px;
    }

    .price-number {
    font-size: 20px; 
    font-weight: 700; 
    color: #0d47a1;
    }

    .pricing-card h3, .pricing-card-highlighted h3 {
        font-size: 18px;
    }

    .price-old {
        font-size: 15px;
    }

    .description h2 {
        font-size: 20px;
        padding-top: 0;
        margin: 0px 0 40px;
    }

    .cta-description {
        flex-direction: column; /* Empilha a imagem e o texto verticalmente */
        gap: 20px; /* Adiciona um espaço entre os itens empilhados */
        margin-left: 0; /* Remove a margem fixa da esquerda */
        padding: 20px;
    }

    .cta-description ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* list-style: none; */
        padding: 0;
        margin-left: 25px;
        line-height: 25px; /* Ajusta a altura da linha para evitar muito espaço */
        font-size: 16px; /* Reduz o tamanho da fonte para melhor leitura */
    }

    .img-content-cta {
        width: 100%; /* A imagem ocupa 90% da largura da tela */
        height: auto; /* Mantém a proporção da imagem */
        margin: 0;
    }

    .cta-description-button {
        width: 90%; /* O botão ocupa 90% da largura da tela */
        margin: 20px auto; /* Centraliza o botão */
        padding: 15px;
    }

    .container-description {
        background-color: rgba(255, 255, 255, 0.102);
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 50px;
    }

    .banner-fixo-desconto {
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 10px;
    }

    .banner-fixo-desconto-logo {
    max-width: 100px;
    height: auto;
    }

    .banner-fixo-desconto h2 {
        margin: 20px 0 0;
        font-size: 15px;
        font-weight: bolder;
    }

    .banner-fixo-desconto-button {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
        font-size: 10px;
    }

    .whatsapp-btn img {
        /*margin: 13.5rem 0 0 20rem;*/
        margin: 30.5rem 0 0 22rem;
    }

    footer {
        font-size: 16px;
    }

    .icon-list {
    width: 16px;
    height: 16px;
    }

    .hide-on-mobile {
        display: none;
    }

}