.fonte-responsiva {
    font-size: clamp(14px, 2vw, 20px);
  }

.h1Responsivo {
    font-size: clamp(20px, 2vw, 34px);
}

.h4Responsivo {
    font-size: clamp(16px, 2vw, 24px);
}

body{
    font-family: arial, sans-serif;
    margin: 0;
    padding: 0;
    
}

main{
    background-color: #f3f3f3;
}

header{
    background-color: #eeeeee;
}

.navbar{
    margin:0px;
    padding: 0px;
}

.navbar-brand, .logoCabecalho{
    margin: 0%;
    padding: 0px;
    height: 150px;
    display: flex;
    justify-content: flex-start;
}

.divCabecalho{
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem; /* small offset from logo when expanded */
    padding-right: 1%;
}

.divCabecalho a{
    display: inline-block;
}

.jumbotron{
    display:flex;
    justify-content: space-between;
    margin: 0px;
    padding-bottom: 1.5%;
    padding-top: 2.5%;
    margin-bottom: 5%;
}

.botaoBanner{
    display: flex;
    gap: 2.5%;
    margin-top: 3.5%;
}

.h1Banner{
    margin-bottom: 3.5%;
    font-weight: 600;
}

.bi-check-circle-fill{
    padding-right: 0.5%;
}

.imgBanner{
    max-width: 522px;
    max-height: 322px;
}

.h1promocao{
    margin: 0px;
    padding-bottom: 1%;
    text-align: center;
}

.cards{
    background-color: #f3f3f3;
    padding: 0px;
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
}

.card{
    margin: 1%;
}

.cardPromocao{
    background-color: #f3f3f3;
    padding: 0%;
}

.card-header{
    font-weight: bolder;
}

.ajusteIcones{
    font-size: 2.5vw;
}

.apresentacao{
    max-width:100%;
}

.estabelecimentos{
    margin-bottom: 5%;
}

.funcionalidades{
    display: grid;
    justify-content: center;
}

.itemFuncionalidades{
    display: flex;
    justify-content: space-between;
}

.h4Funcionalidades{
    font-weight: 600;
}

.txtFuncionalidades{
    font-size: clamp(14px, 2vw, 18px);
}

.containerPlanos{
    display: flex;
    gap: 3vw;
    white-space: nowrap; /* impede quebra de linha */
}

.card-header{
    text-align: center;
}

.containerPlanos{
    margin-bottom: 5%;
}

.paragrafoPlanos{
    margin-bottom: 0.25rem;
}

.card-body{
    background-color: #f3f3f3;
}

.cardFaq{
    display: flex;
    justify-content: space-between;
}

/* Aumenta o tamanho da seta e adiciona uma transição */
.seta-faq {
    font-size: 1.5rem; /* Ajuste aqui para o tamanho desejado */
    transition: transform 0.3s ease;
}

/* Opcional: Gira a seta quando o menu estiver aberto */
[aria-expanded="true"] .seta-faq {
    transform: rotate(180deg);
}

/* Remove o estilo antigo que causava o layout lado a lado */
.cardFaq {
    display: block; /* Alterado de flex para block */
}

footer{
     background-color: #eeeeee;
}

@media (max-width: 720px) {
    .divCabecalho{
        padding-right: 4%;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .divCabecalho a{
        width: 100%;
        margin: 0.25rem 0;
    }
    .navbar-brand, .logoCabecalho{
    margin: 0%;
    padding: 0px;
    height: 150px;
    display: flex;
    justify-content: flex-start;
    }
    .imgBanner{
        display: none;
    }
    .h1promocao{
        padding: 2.5%;
        padding-top: 0%;
    }
    .botaoBanner {
        flex-direction: column;   /* coloca os botões um embaixo do outro */
        gap: 10px;                /* espaço entre eles */
        width: 100%;
    }
    .botaoBanner a {
        font-size: 15px !important;  /* diminui o texto dos botões */
        padding: 10px 12px !important;  /* reduz o tamanho total */
        width: 100%;                    /* ocupa largura inteira do container */
        text-align: center;
    }
    .ajusteIcones{
        font-size: 7vw;
    }
}

@media(max-width:1024px){
    .imgBanner{
        display: none;
    }
}


