﻿/* ------------------------------------ FONTES ------------------------------- */
@import url('https://fonts.cdnfonts.com/css/archia');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/* ------------------------------------ GLOBAL ------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* ------------------------------------ HEADER ------------------------------- */
/* Estilo para a seção home */
.section-home {
    font-family: 'Archia', sans-serif;
    position: relative;
}

/* Estilo para a seção hero com a imagem de fundo */
.hero {
    background-image: url('../images/fundo_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*position: relative;*/
    min-height: 10vh;
    width: 100%;
}

/* Estilo para a navbar */
.navbar-custom {
    background-color: #EFB985;
    border-radius: 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 1000;
    padding: 5px 15px 5px 15px;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-nav .nav-link {
    color: #64100A;
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: #D33E21;
    }

.btn-cadastro, .btn-login {
    border-radius: 50px;
    padding: 5px 40px;
    font-weight: 600;
    text-decoration: none;
}

.btn-cadastro {
    background-color: #D33E21;
    border: 1px solid #D33E21;
    color: #FFF;
}

.btn-login {
    background-color: transparent;
    border: 1px solid #D33E21;
    color: #D33E21;
}

.image-header {
    text-align: center;
}

.responsive-image {
    width: 100%;
    height: auto;
    padding-top: 90px;
}

/* ------------------------------------ BENEFÍCIOS ------------------------------- */

.section-beneficios {
    padding: 20px;
    text-align: center;
    font-family: 'Archia', sans-serif;
}

.title-1 h1 {
    font-size: 40px;
    color: #6E1E11;
    text-shadow: 1px 1px 0 #6E1E11;
    font-weight: 700;
}

.beneficios {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.beneficios-item {
    background-color: #EE8543;
    border-radius: 42px 18px;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 15px;
    position: relative;
}

    .beneficios-item img {
        position: absolute;
        top: -30px;
    }

    .beneficios-item p {
        margin-top: 10px;
        line-height: 22px;
        font-size: 18px;
        color: #FFF;
    }

.title-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .title-2 h2 {
        font-size: 24px;
        margin-top: 30px;
        font-weight: 700;
        background-color: #D33E21;
        color: #FFF;
        padding: 8px;
    }

.beneficios-instrucoes {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    width: 100%;
}

.step {
    border: 2px solid #D33E21;
    border-radius: 20px;
    padding: 10px 15px;
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .step h3 {
        font-size: 80px;
        color: #D33E21;
        font-family: "Archivo Black", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .step p {
        font-size: 16px;
        font-weight: 400;
        color: #D33E21;
    }

.beneficios-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .beneficios-btn button {
        background-color: #D33E21;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 15px 30px;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s ease;
        min-width: 250px;
        text-align: center;
    }

        .beneficios-btn button:hover {
            background-color: #B83218;
        }

        .beneficios-btn button:active {
            background-color: #941F10;
        }


/* ------------------------------------ CLUBE ------------------------------- */
/* Fundo da seção Clube */
.clube-background-imagefund img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Texto na seção Clube */
.clube-background-text {
    font-family: 'Archia', sans-serif;
    color: #64100A;
}

.line1 {
    font-weight: normal;
    font-size: 30px;
    line-height: 25px;
    margin: 0;
}

.line2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}

/* Estilo dos botões do carrossel */
.custom-carousel-btn {
    border-radius: 50px;
    background: transparent;
    color: #64100A;
    border: 2px solid #64100A;
    padding: 7px 20px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}


    .custom-carousel-btn:hover {
        background-color: #64100A;
        color: white;
        border-color: #64100A;
    }

    .custom-carousel-btn.active {
        background-color: #64100A;
        color: white;
        border-color: #64100A;
    }

/* Estilo do carrossel */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Estilo dos itens do carrossel */
.carousel-inner {
    display: flex;
}

.carousel-item {
    flex: 0 0 100%;
    transition: transform 0.5s ease;
    position: relative;
}

    /* Estilo da imagem dentro do item do carrossel */
    .carousel-item img {
        width: 100%;
        height: auto;
    }


/* Estilo Responsivo */
@media screen and (max-width: 768px) {
    .custom-carousel-btn {
        font-size: 9px;
        padding: 8px 10px;
        flex: 1;
    }
}

/* ------------------------------------ DEPOIMENTOS ------------------------------- */

.container-depoimentos {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #64100A;
    font-family: 'Archia', sans-serif;
}

.title-depoimentos {
    width: 100%;
    padding: 20px 10px;
    background-color: #64100A;
    color: #EFB985;
}

    .title-depoimentos img {
        max-width: 100%;
        height: auto;
        display: block;
        align-items: center;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .title-depoimentos h1 {
        font-size: 30px;
        font-weight: 400;
        color: #EFB985;
        text-align: center;
    }

.text-depoimentos {
    width: 70%;
    margin: 10px 0;
}

.left-text {
    color: #fff;
    text-align: justify;
}

.right-text {
    border-radius: 20px 48px 20px 48px;
    background-color: #520d08cb;
    padding: 18px 15px 5px 15px;
    margin-bottom: 10px;
}

    .right-text h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

    .right-text p {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        text-align: justify;
    }

    .right-text .highlight {
        color: #EE8543;
    }

.titulo-depoimentos h3 {
    color: #EE8543;
    font-size: 30px;
    font-weight: 700;
    padding: 20px;
}

.titulo-depoimentos h3 {
    color: #EE8543;
    font-size: 30px;
    font-weight: 700;
    padding: 20px;
}

/* Estilos para telas pequenas */
@media (max-width: 576px) {
    .text-depoimentos {
        width: 95%;
        padding: 0 15px;
    }

    .titulo-depoimentos h3 {
        font-size: 20px;
    }

    .left-text p,
    .right-text p {
        font-size: 14px;
    }

    .right-text h3 {
        font-size: 14px;
    }
}

.depoimento-btn p {
    font-size: 22px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

/* Estilo do botão */
.depoimento-btn button {
    background-color: #D33E21;
    color: #fff;
    width: 250px;
    height: 48px;
    border: none;
    border-radius: 24px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.btn-cadastre-se:hover {
    background-color: #D94A1E;
}


/*SLIDE DEPOIMENTO*/
.carrosel-depoimentos {
    justify-content: center;
    width: 90%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
    margin: 10px auto;
    margin-bottom: 10px;
}

    .carrosel-depoimentos .slide {
        padding: 20px 80px;
        text-align: justify;
        cursor: grab;
    }

        .carrosel-depoimentos .slide:active {
            cursor: grabbing;
        }

    .carrosel-depoimentos p.depoi-txt {
        font-weight: 400;
        margin-bottom: 30px;
        color: #000;
    }

.slide .person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .slide .person img {
        width: 80px;
        height: 80px;
    }

    .slide .person p.nome-person {
        font-size: 22px;
        font-weight: 800;
        color: #EE8543;
        margin-bottom: 0px;
    }

    .slide .person p.func-person {
        font-size: 14px;
        margin-bottom: 0px;
        color: #000;
    }

    .slide .person p.local-person {
        font-size: 12px;
        margin-bottom: 0px;
        color: #000;
    }


/* Ajuste para telas menores (celulares) */
@media screen and (max-width: 768px) {
    .slide .person p.nome-person {
        font-size: 16px;
    }

    .slide .person p.func-person {
        font-size: 10px;
    }

    .slide .person p.local-person {
        font-size: 10px;
    }

    .carrosel-depoimentos .slide {
        padding: 20px 40px;
        text-align: justify;
        hyphens: auto;
        cursor: grab;
    }

    .nav-btn {
        display: none;
    }
}
/* ------------------------------------ FAQ ------------------------------- */

/* FAQ Section */
.faq-section {
    height: auto;
    padding: 30px 0;
    font-family: Archia, sans-serif;
}

.faq-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    color: #D33E21;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 0px;
    padding-left: 110px;
}

/* Estilizando o botão do acordeão quando não está selecionado (colapsado) */
.accordion-button {
    color: #8B8B8B !important;
    font-family: Archia, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: color 0.3s, border-color 0.3s !important;
    padding-right: 40px !important;
}

    /* Estilizando o botão do acordeão quando está selecionado (expandido) */
    .accordion-button:not(.collapsed) {
        background-color: transparent !important;
        border-bottom: 1px solid #D33E21 !important;
    }

    /* Remover a borda ao expandir (opcional) */
    .accordion-button:not(.collapsed) {
        border-bottom: none !important;
    }

    /* Remover o foco padrão azul */
    .accordion-button:focus {
        box-shadow: none !important;
        outline: none !important;
    }

/* Estilizando o conteúdo do acordeão */
.accordion-body {
    color: #2C2C2C !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-align: left !important;
    padding: 20px !important;
}

/* Estilizando o cabeçalho do acordeão */
.accordion-header {
    border-bottom: none !important;
}

/* Estilizando o item do acordeão */
.accordion-item {
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Remover a seta padrão do Bootstrap */
.accordion-button::after {
    content: none !important;
}

/* Estilo do ícone PNG */
.accordion-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

/* Rotacionar a seta PNG quando o acordeão estiver aberto */
.accordion-button:not(.collapsed) .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* ------------------------------------ SAC ------------------------------- */

.sac-section {
    all: unset;
    height: 50px;
    background-color: #EE8543;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sac-itens {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.sac-title {
    all: unset;
    font-size: 25px;
    color: #fff;
    font-weight: 400;
}

.sac-img {
    all: unset;
    width: 15px;
    height: 27px;
}

.phone {
    all: unset;
    font-size: 25px;
    color: #fff;
    font-weight: 700;
}


/* ------------------------------------ FOOTER ------------------------------- */
.footer {
    color: #6A6A6A;
    padding: 30px 0;
}

.nav-link {
    color: #6A6A6A !important;
    font-size: 16px;
    text-decoration: none;
}

.left-image {
    width: 81px;
    height: 81px;
}

.right-image {
    width: 30px;
    height: 30px;
}

.img1 {
    width: 142px;
    height: 41px;
}

.img2 {
    width: 110px;
    height: 36px;
}

.img3 {
    width: 79px;
    height: 43px;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}



/* Toast Formulario Fale Conosco */
.toast-container-fale-conosco {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6000;
}

/* Toast individual */
.toast {
    min-width: 200px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toast-header {
    background-color: #f0f0f0;
}
    /* Cabeçalho do Toast */
    .toast-header img {
        width: 30px;
        height: 30px;
    }

.toast-body {
    color: #333333;
    font-family: Archia, sans-serif;
}

/* Estilo para sucesso */
.toast-success {
    background-color: #6DE488;
    color: #fff;
}

/* Estilo para erro */
.toast-error {
    background-color: #F48F98;
    color: #fff;
}

.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 0.25em;
}

.input-error {
    border: 1px solid red;
    background-color: #fdd;
}

/* Adiciona uma classe para remover o erro */
.no-error {
    border: 1px solid #ccc;
    background-color: #fff;
}
