* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* caso voce queira colocar uma imagem no tamanho da pag. para garantir que vai ficar a img total no fundo: */
    /* background-image: url(img/Margin\_e\_Padding.png) */
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
}

    header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: 100vw;
        padding: 6.5rem 0 3rem;
        /* padding-top só o suficiente para liberar o menu fixo, sem centralizar o conteúdo numa caixa gigante */
        position: relative;
        background: #E5D9CA;
        background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%);
        color: #fff;
        z-index: 1;
    }

    nav {

        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        z-index: 1;

        width: 100vw;
        height: 4rem;
        padding: 5px;
        background: #e5d9ca6d;


        .ordem {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 80%;
            height: 4rem;
            /* position: fixed; */
            background-color: #e5d9ca15;
            padding: 5px;
        }

        .logo img {

            width: 4rem;

        }

        .menu {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            gap: 4rem;
            list-style-type: none;

            a {
                text-decoration: none;
                color: #ad7d43;
                font-size: large;
                transition: 0.3s;
            }

            a:hover {

                color: #fff;
            }
        }

        .btn-contato {
            text-decoration: none;
            background-color: transparent;
            color: #ad7d43;
            border: 1px solid #ad7d43;
            border-radius: 30px solid #ad7d43;
            padding: 8px;
            border-radius: 4px;
            font-size: large;
            font-size: 20px;
            cursor: pointer;
        }

        .btn-contato:hover {

            background: #ad7d4334;
            color: #fff;
            /* Para deixar o fundo branco e mudar a cor da letra: */
            /* background: rgb(229, 226, 226); color: black; */

        }

        /* Botão hamburguer: só aparece no menu mobile (ver media query) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 34px;
            height: 34px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 20;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: #ad7d43;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
    }


    #container {
        /* background: #E5D9CA;
        background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%); */
        display: flex;
        margin: 10px;
        width: 100%;
        gap: 20px;

    

        #capa{
            display: flex;
            justify-content: space-evenly;
            align-items: flex-start;
            /* gap: 10px; */
            width: 100%;
            


            .texto {
                display: flex;
                justify-content: center;
                /* align-items: center; */
                flex-direction: column;
                gap: 40px;
                /* text-align: left; */
                width: 60%;
                padding-top: 20px;
                margin-top: 30px;
        

                h2 {
                    font-family: Montserrat;
                    font-size: 20px;
                    /* color: #BB966B; */
                    color: #C9A86A;
                    /* size: 60; */
                    padding: 0 35px;
                }

                h1 {
                    font-family: Playfair;
                    font-size: 50px;
                    text-align: left;
                    /* size: 5; */
                    padding: 0 35px;
                    color: #22444C;
                }
            
                p {
                    font-family: Montserrat;
                    color: #776654;
                    text-align: left;
                    padding: 0 35px;
                }

                .contato {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;

                    a {
                        text-decoration: none;
                    }
                }

                .botao {
                    padding: 15px;
                    width: 100%;
                    display: flex;
                    justify-content: space-evenly;
                    align-items: center;

                    a {
                        text-decoration: none;
                    }
                }

                .botao button {
                    /* Largura Total */
                    width: 180px;
                    /* Definindo a largura */
                    height: 45px;
                    /* Definindo a cor do fundo do botao */
                    background-color: transparent;
                    /* Defindo a cor do conteudo/ texto do que vai no botao */
                    color: #776654;
                    /* Tamanho do texto do botao */
                    font-size: 10px;
                    /* definir a borda no botao */
                    border: 2px solid;
                    /* para arredondar a borda dele */
                    border-radius: 35px;
                    /* para mudar o cursor para quando voce passar o mouse por cima do botao para parecer clicavel */
                    cursor: pointer;
                    transition: 2s;
                    box-shadow: 0 0 30px 10px #E6D9CA;
                }
            }

            .imagem {
                /* padding: 30px; */
                width: 40%;
                height: 500px;
                display: flex;
                justify-content: center;
                align-items: center;
                
                /* margin: 10px; */


                img {
                    max-width: 97%;
                    height: 100%;
                    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
                    border-radius: 15px;
                    padding: auto;
                }

            }
        }
    }

        h2 {
            font-family: Montserrat;
            font-size: medium;
            /* color: #BB966B; */
            color: #C9A86A;
            size: 70;
            text-align: left;
            letter-spacing: 3px;

        }

        h3 {
            font-family: Playfair;
            font-size: 40px;
            text-align: left;
            size: 5;
            color: #22444C;

        }

        h4 {
            font-family: Playfair;
            font-size: 40px;
        }

        h5 {
            font-family: Montserrat;
            font-size: medium;
            color: #fff;
            size: 80;
            text-align: left;
        }

        h6 {
            font-family: Montserrat, sans-serif;
            font-size: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-align: left;
            color: #22444C;
        }

    #sobre {

        #conheca {
            display: flex;
            justify-content: space-evenly;
            direction: row;
            width: 100vw;
            padding: 100px 0;
            background-color: #d1ad888c;
            


            .video {
                width: 40%;
                height: 700px;
                overflow: hidden;
                /*  corta o excesso da imagem */
                display: flex;
                justify-content: center;
                align-items: end;

                box-shadow:
                    rgba(0, 0, 0, 0.25) 0px 54px 55px,
                    rgba(0, 0, 0, 0.12) 0px -12px 30px,
                    rgba(0, 0, 0, 0.12) 0px 4px 6px,
                    rgba(0, 0, 0, 0.17) 0px 12px 13px,
                    rgba(0, 0, 0, 0.09) 0px -3px 5px;

                overflow: hidden;
                /* importante */
                border-radius: 16px;
                /* opcional */
            }


            .gif {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .dados {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 30px;
                text-align: left;
            }

            .resumo {
                display: flex;
                flex-direction: column;
                gap: 15px;
                font-family: Montserrat;
            }
        }

    }

    #consultoria {
        background-image: url("./img/fundo_aurea.png");
        background-size: cover;
        /* cobre toda a div */
        background-position: center;
        /* centraliza */
        background-repeat: no-repeat;
        /* não repete */
        width: 100vw;
        height: 100%;
        /* altura da seção */
        /* background: #E5D9CA;
        background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%); */
        padding: 40px;


        #especialidade {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 30px;
            padding: 40px;
        }

        .titulo {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 15px;
        }

        .accordion {
            max-width: 2000px;
            width: 80%;
        }

        .title {
            width: 100%;
            background: transparent;
            font-family: Playfair;
            border: none;
            border-bottom: 1px solid #ccc;
            padding: 20px;
            font-size: 22px;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .title:hover {
            color: #BB966B;
            /* dourado elegante */
        }


        .arrow {
            transition: transform 0.3s ease;
        }

        .content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: #ddd;
            padding: 0 20px;

            p {
                font-family: 'Arial', sans-serif;
                font-size: 1.1rem;
                color: fff;
                line-height: 1.6;
                margin-bottom: 20px;
                /* Espaço inferior entre parágrafos */
                text-align: justify;
            }


        }

        .item.active .content {
            max-height: 2000px;
            /* valor alto o suficiente para caber todo o texto sem cortar */
            padding: 20px;
        }

        .item.active .arrow {
            transform: rotate(180deg);
        }

    }

    /* =========================================================================
   CARROSSEL DE PARCEIROS
   Usa classes próprias com prefixo "parceiro-" / "parceiros-" para não
   conflitar com o carrossel de depoimentos que já existe no site
   (#carrossel, .carrossel-interno, .opniao, .prev, .next).
   As classes originais dos cards (.parceiro-card, .parceiro-imagem-wrap,
   .profissionais, #parceiros, .parNav etc.) foram mantidas como estão.
   ========================================================================= */

/* ---- Wrapper que recorta o carrossel e posiciona as setas ---- */
.parceiros-carrossel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 0 60px;
    overflow: hidden;
}

/* ---- Trilho que desliza (mesma div que já tinha .profissionais) ---- */
.profissionais.parceiros-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start; /* sobrescreve o space-evenly original só aqui dentro */
    align-items: stretch;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
    margin-bottom: 0;
}

.profissionais.parceiros-track .parceiro-card {
    flex: 0 0 auto; /* impede que os cards encolham dentro do flex */
}

/* ---- Setas de navegação ---- */
.parceiro-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.85);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.parceiro-nav-btn:hover {
    background: #6d5638;
    transform: translateY(-50%) scale(1.08);
}

.parceiro-prev {
    left: 0;
}

.parceiro-next {
    right: 0;
}

/* ---- Indicadores (bolinhas) ---- */
.parceiros-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.parceiro-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.35);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.parceiro-dot.ativo {
    background: #8b6f47;
    transform: scale(1.3);
}

/* ---- Responsivo ---- */
@media (max-width: 1024px) {
    .parceiros-carrossel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .parceiros-carrossel-wrapper {
        padding: 0 40px;
        margin-bottom: 20px;
    }

    .parceiro-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .profissionais.parceiros-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .parceiros-carrossel-wrapper {
        padding: 0 30px;
    }

    .parceiro-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}


    #parceiros{


        width: 100vw;
        height: auto;
        padding-top: 50px;
        padding-bottom: 40px;
        /* contém a margem inferior do .parceiros-cta dentro do fundo da seção,
           evitando o colapso de margem que deixava uma faixa em branco abaixo */
        position: relative;
        background: #E5D9CA;
        background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%);
        color: #fff;
        gap: 50px;


        .parNav{
        
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            margin-bottom: 50px;
            width: 100vw;

                .parc{

                    display: flex;
                    justify-content: center;
                    align-items: left; 
                    gap: 20px;
                    margin-bottom: 0;
                    margin-top: 30px;
                    
                    h2 {
                    font-family: Montserrat;
                    font-size: 50px;
                    /* color: #BB966B; */
                    color: #C9A86A;
                    /* size: 100; */
                    text-align: left;
                    letter-spacing: 3px;

                    }

                    h3 {
                        font-family: Playfair;
                        font-size:30px;
                        text-align: center;
                        /* size: 5; */
                        color: #22444C;

                    }

                    .segundoTit{
                        display: flex;
                        justify-content: center;
                        align-items:end; /* 🔥 ESSA LINHA É O SEGREDO */
                        margin-bottom: 10px;

                    }

                }
                .linha {
                    width: 60%;
                    height: 3px;
                    background: #C9A86A;
                    margin: 15px auto;
                    border-radius: 2px;
                }

                p{
                    color: #22444C;
                }

        



            .subTitulo{

                display: flex;
                justify-content: center;
            }

        }
   

            .profissionais {

                display: flex;
                justify-content: space-evenly;
                align-items: center;
                flex-direction: row;
                width: 100vw;
                margin-bottom: 20px;

            }
    

                /* ===== SEÇÃO DE PARCEIROS ===== */

            .parceiros-section {
            padding: 100px 20px;
            background-color: #E5D9CA;
            margin-bottom: 0;
            
            }

            .parceiros-container {
            max-width: 1200px;
            margin: 0 auto;
            }

            /* --- Cabeçalho --- */
            .parceiros-header {
            text-align: center;
            margin-bottom: 70px;
            }

            .parceiros-titulo {
            font-size: 48px;
            color: #3e2723;
            margin-bottom: 20px;
            font-weight: bold;
            letter-spacing: -0.5px;
            }

            .parceiros-linha {
            width: 100px;
            height: 3px;
            background-color: #8b6f47;
            margin: 0 auto 25px;
            }

            .parceiros-subtitulo {
            font-size: 20px;
            color: #5d4037;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            }

            /* --- Grid --- */
            .parceiros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
            margin-bottom: 80px;
            }

            /* --- Card --- */
            .parceiro-card {
            background-color: #ffffff;
            border-radius: 20px;
            width: 300px;
            height: 500px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .parceiro-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            }

            /* --- Imagem --- */
            /* .parceiro-imagem-wrap {
            position: relative;
            height: 45%;
            overflow: hidden;
            object-fit: cover;
            object-position: center 0%/* 🔥 sobe a imagem (mostra mais o topo/rosto) 
            }*/

            .parceiro-imagem-wrap {
                position: relative;
                height: 300px; /* ou px/vh (melhor que %) */
                overflow: hidden;
                object-fit: cover;
            }

            .parceiro-imagem-wrap img {
                width: 100%;
                height: 100%;

                object-fit: cover;
                object-position: center 20%; /* ajusta aqui */
}

            .parceiro-imagem {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            }

            .parceiro-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 40px 20px 20px;
            }

            .parceiro-especialidade {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin: 0;
            }

            /* --- Conteúdo do Card --- */
            .parceiro-conteudo {
            padding: 10px;
            display: flex;
            flex-direction: column;
            }

            .parceiro-nome {
            font-family: Playfair;
            font-size: 26px;
            color: #22444C;
            margin-top: 5px;
            margin-bottom: 5px;
            font-weight: bold;

            }

            .parceiro-descricao {
            color: #6d4c41;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.5;
            }

            /* --- Instagram --- */
            .parceiro-instagram {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 25px;
            padding-top: 10px;
            border-top: 1px solid #e0e0e0;
            color: #5d4037;
            font-size: 15px;
            font-weight: 500;

            a {
                color: inherit;        /* usa a cor do elemento pai */
                text-decoration: none; /* remove o sublinhado */
            }
            }

            .instagram-icone {
            width: 22px;
            height: 22px;
            color: #8b6f47;
            flex-shrink: 0;
            }

            /* --- Botão do Card --- */
            .parceiro-btn {
            display: block;
            width: 60%;
            background-color: #8b6f47;
            color: #ffffff;
            padding: 5px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            letter-spacing: 0.3px;
            box-sizing: border-box;
            transition: background-color 0.3s ease;
            }

            .parceiro-btn:hover {
            background-color: #6d5638;
            color: #ffffff;
            }

            /* --- CTA Novas Parcerias --- */
            .parceiros-cta {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 20px 40px;
            text-align: center;
            width: 70%;
            min-height: 200px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-self: center;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            }

            .cta-titulo {
            font-size: 30px;
            color: #3e2723;
            margin-bottom: 10px;
            font-weight: bold;
            margin-top: 5px;
            }

            .cta-texto {
            font-size: 18px;
            color: #5d4037;
            max-width: 700px;
            margin: 0 auto 10px;
            line-height: 1.6;
            }

            .cta-btn {
            display: inline-block;
            background-color: #8b6f47;
            color: #ffffff;
            padding: 16px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            }

            .cta-btn:hover {
            background-color: #6d5638;
            color: #ffffff;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
            }

            /* --- Responsivo --- */
            @media (max-width: 768px) {
            .parceiros-section {
                padding: 60px 16px;
            }

            .parceiros-titulo {
                font-size: 34px;
            }

            .parceiros-subtitulo {
                font-size: 17px;
            }

            .parceiros-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .parceiros-cta {
                padding: 40px 24px;
            }

            .cta-titulo {
                font-size: 26px;
            }

            .cta-texto {
                font-size: 16px;
            }

            .cta-btn {
                font-size: 16px;
                padding: 14px 32px;
            }
            }

            /* ===== /SEÇÃO DE PARCEIROS ===== */
    }



    #clientes {
        background-image: url("./img/fundo_aurea.png");
        background-size: cover;
        width: 100vw;
        min-height: 800px; /* ou remove height fixa */
        /* cobre toda a div */
        background-position: center;
        /* centraliza */
        background-repeat: no-repeat;
        /* não repete */
        /* altura da seção */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 30px 10px 80px 10px;
        





        .feedbacks {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 30px;
            height: auto;
            padding: 30px;
            width: 100%;
            max-width: 100%;
            padding: 30px;
            overflow-x: hidden; /* 👈 importante */
        }

                /* ===== CARD DEPOIMENTO — MODELO A ===== */

        .dep-card-a {
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
        /* max-width: 340px; */
        flex-shrink: 0;
        width: 350px;
        height: 400px;
        transform: scale(0.8);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0.4;
        display: flex;
        flex-direction: column;
        

            

        }

        .dep-card-a:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
        }

        /* --- Área do vídeo --- */
        .dep-video-a {
        position: relative;
        height: 210px;
        overflow: hidden;
        cursor: pointer;
        }

        .dep-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
        }

        .dep-card-a:hover .dep-thumb {
        transform: scale(1.04);
        }

        .dep-overlay-a {
        position: absolute;
        inset: 0;
        background-color: rgba(62, 39, 35, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        }

        /* Botão Play */
        .dep-play {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        transition: transform 0.2s ease;
        }

        .dep-play:hover {
        transform: scale(1.12);
        }

        .dep-play svg {
        width: 24px;
        height: 24px;
        margin-left: 4px;
        }

        /* Badge de resultado */
        .dep-badge {
        position: absolute;
        bottom: 12px;
        left: 14px;
        background-color: rgba(139, 111, 71, 0.92);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 0.4px;
        }

        /* --- Corpo do card --- */
        .dep-body-a {
        padding: 15px 17px 19px;
        height: 50%;
        }

        /* Estrelas */
        .dep-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 14px;
        }

        .dep-stars svg {
        width: 18px;
        height: 18px;
        fill: #C8A97E;
        }

        /* Texto do depoimento */
        .dep-texto-a {
        color: #5d4037;
        font-size: 15px;
        line-height: 1;
        font-style: italic;
        margin: 0 0 0px;

        }

        /* Autor */
        .dep-autor-a {
        display: flex;
        align-items: center;
        gap: 12px;
        }

        .dep-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #E5D9CA;
        flex-shrink: 0;
        }

        .dep-nome {
        color: #3e2723;
        font-weight: 700;
        font-size: 15px;
        margin: 0;
        }

        .dep-label {
        color: #a1887f;
        font-size: 12px;
        margin: 0;
        }

        /* ===== /CARD DEPOIMENTO — MODELO A ===== */

        #carrossel {
            display: flex;
            align-items: center;
            position: relative;
            width: 100%;
            max-width: 1000px;
            /* Ou a largura que preferir */
            margin: 0 auto;
            overflow: hidden;
            /* Corta os cards que saem da lateral */
            padding: 50px 0;
        }

        /* Container interno que realmente desliza */
        .carrossel-interno {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            gap: 30px;
        }

        .opniao {
            width: 250px;
            height: 400px;
            flex-shrink: 0;
            border-radius: 20px;
            /* Bordas mais suaves */
            /* background-color: #C9A86A; */
            background: #E5D9CA;
            background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%);
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            opacity: 0.4;
            transform: scale(0.8);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;


            .video{
                position: relative;
                height: 70%px;
                overflow: hidden;
                cursor: pointer;
            }

            
        }

        /* Card em destaque */
        .opniao.ativo {
            opacity: 1;
            transform: scale(1.1);
            z-index: 10;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        /* Botões sobrepostos */
        #carrossel button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background: rgba(201, 168, 106, 0.8);
            border: none;
            color: white;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
        }

        #carrossel button:first-child {
            left: 10px;
        }

        #carrossel button:last-child {
            right: 10px;
        }

        p {
            font-size: 10px;
            text-align: center;
            padding: 5px 16px 10px 16px;
            font-family: Montserrat;
        }
    }


        /* ===== SEÇÃO E-BOOKS ===== */

    .ebooks-section {
        background-color: #d1ad888c;
        margin-top: 0;
        width: 100vw;

        
        }

        .ebooks-container {
        margin-top: 0;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        padding: 50px 30px;
        background-color: #d1ad888c;
        width: 100vw;

        }

        /* --- Cabeçalho --- */
        .ebooks-header {
        text-align: center;
        margin-top: 5px;
        margin-bottom: 70px;
        gap: 15px;
        }

        .conhecimento{
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            
        }

        .ebooks-tag {
        display: inline-block;
        background-color: rgba(139, 111, 71, 0.15);
        color: #8b6f47;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 6px 18px;
        border-radius: 20px;
        margin-bottom: 18px;
        }

        .ebooks-titulo {
        font-size: 48px;
        color: #3e2723;
        font-weight: bold;
        letter-spacing: -0.5px;
        margin: 0 0 20px;
        }

        .ebooks-linha {
        width: 100px;
        height: 3px;
        background-color: #8b6f47;
        margin: 0 auto 25px;
        }

        .ebooks-subtitulo {
        font-size: 19px;
        color: #5d4037;
        max-width: 750px;
        margin: 0 auto;
        line-height: 1.7;
        }

        /* --- Grid --- */
        .ebooks-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
        }

        /* --- Card --- */
        .ebook-card {
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 400px;
        height: 550px;
        }

        .ebook-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
        }

        /* Card em destaque */
        .ebook-card--destaque {
        outline: 3px solid #8b6f47;
        outline-offset: -3px;
        }

        /* --- Capa --- */
        .ebook-capa-wrap {
        position: relative;
        height: 300px;
        overflow: hidden;
        }

        .ebook-capa {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
        }

        .ebook-card:hover .ebook-capa {
        transform: scale(1.06);
        }

        .ebook-capa-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(62, 39, 35, 0.45) 100%
        );
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 14px;
        }

        /* Badges da capa */
        .ebook-novo,
        .ebook-mais-vendido {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.8px;
        padding: 5px 12px;
        border-radius: 20px;
        }

        .ebook-novo {
        background-color: #4caf50;
        color: #ffffff;
        }

        .ebook-mais-vendido {
        background-color: #8b6f47;
        color: #ffffff;
        }

        /* --- Corpo do card --- */
        .ebook-corpo {
        padding: 20px 22px 22px;
        display: flex;
        flex-direction: column;
        flex: 1;
        }

        .ebook-categoria {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #8b6f47;
        margin-bottom: 8px;
        display: block;
        }

        .ebook-titulo {
        font-size: 22px;
        color: #3e2723;
        font-weight: bold;
        margin: 0 0 12px;
        line-height: 1.3;
        }

        .ebook-desc {
        color: #6d4c41;
        font-size: 14px;
        line-height: 1.2;
        margin: 0 0 16px;
        }

        /* Tópicos */
        .ebook-topicos {
        list-style: none;
        padding: 0;
        margin: 0 0 22px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        }

        .ebook-topicos li {
        font-size: 13px;
        color: #5d4037;
        padding-left: 20px;
        position: relative;
        line-height: 1.5;
        }

        .ebook-topicos li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #8b6f47;
        font-weight: 700;
        }

        /* Rodapé do card */
        .ebook-rodape {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
        }

        .ebook-info {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid #f0ebe4;
        }

        .ebook-paginas {
        font-size: 12px;
        color: #8b6f47;
        font-weight: 600;
        }

        .ebook-formato {
        font-size: 12px;
        color: #a1887f;
        background-color: #f7f0e8;
        padding: 3px 10px;
        border-radius: 10px;
        }

        /* Botão do card */
        .ebook-btn {
        display: block;
        background-color: #8b6f47;
        color: #ffffff;
        text-align: center;
        padding: 13px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: background-color 0.3s ease;
        }

        .ebook-btn:hover {
        background-color: #6d5638;
        color: #ffffff;
        }

        /* --- CTA final --- */
        .ebooks-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        background-color: #3e2723;
        border-radius: 20px;
        padding: 36px 40px;
        flex-wrap: wrap;
        }

        .ebooks-cta-texto {
        color: #E5D9CA;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        line-height: 1.4;
        }

        .ebooks-cta-btn {
        display: inline-block;
        background-color: #8b6f47;
        color: #ffffff;
        padding: 14px 38px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: 0.4px;
        box-shadow: 0 4px 16px rgba(139, 111, 71, 0.45);
        transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .ebooks-cta-btn:hover {
        background-color: #c8a97e;
        color: #3e2723;
        transform: scale(1.04);
        }

        /* --- Responsivo --- */
        @media (max-width: 768px) {
        .ebooks-section {
            padding: 60px 16px;
        }

        .ebooks-titulo {
            font-size: 34px;
        }

        .ebooks-subtitulo {
            font-size: 16px;
        }

        .ebooks-grid {
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .ebook-capa-wrap {
            height: 200px;
        }

        .ebooks-cta {
            flex-direction: column;
            text-align: center;
            padding: 30px 24px;
            gap: 18px;
        }

        .ebooks-cta-texto {
            font-size: 17px;
        }
        }
    
    /* ===== /SEÇÃO E-BOOKS ===== */



    .opniao video {
        width: 100%;
        height: 200px;
        object-fit: cover;
        /* 🔥 isso resolve */
        display: block;
        /* 🔥 remove espaços laterais */
        max-width: none;
        /* 🔥 remove limite escondido */
    }


    #rodape {
        background: #E5D9CA;
        background: linear-gradient(180deg, rgba(229, 217, 202, 0.92) 0%, rgba(228, 225, 224, 1) 50%);
        box-sizing: border-box;
        height: auto; /* ou remove totalmente */
        padding-bottom: 40px; /* garante respiro embaixo */
        overflow-x: hidden;
        width: 100;
        /* margin: 0 8px; */
    }

    #nave {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        width: 100%;
        height: 50px;
        padding: 30px;
    }

    #corpo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;


    }

    .formulario {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        width: 50%;
        height: 500px;



    }

    .duvidas {
        display: flex;
        justify-content: center;
        align-items: left;
        flex-direction: column;
        gap: 2px;
        padding: 20px;
        border: 2px solid #C9A86A;

    }

    .primeiro {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 30px;

    }

        .pessoal {

            margin-bottom: 10px;

        }

        /* INPUT BASE */
        .pessoal input,
        .pessoal textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid #C9A86A;

            padding: 12px 8px;
            font-size: 16px;
            color: #C9A86A;

            transition: all 0.3s ease;

        }

        /* CAIXA APARECE */
        .pessoal input:hover,
        .pessoal input:focus,
        .pessoal textarea:hover,
        .pessoal textarea:focus {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #C9A86A;
            border-radius: 6px;

        }

        /* remove outline padrão */
        .pessoal input:focus,
        .pessoal textarea:focus {
            outline: none;
        }

        .pessoal_1 {

            margin-bottom: 40px;

        }

        /* INPUT BASE */
        .pessoal_1 input,
        .pessoal_1 textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid #C9A86A;

            padding: 12px 8px;
            font-size: 16px;
            color: #C9A86A;

            transition: all 0.3s ease;

        }

        /* CAIXA APARECE */
        .pessoal_1 input:hover,
        .pessoal_1 input:focus,
        .pessoal_1 textarea:hover,
        .pessoal_1 textarea:focus {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #C9A86A;
            border-radius: 6px;

        }

        /* remove outline padrão */
        .pessoal_1 input:focus,
        .pessoal_1 textarea:focus {
            outline: none;
        }

        .enviar button {
            /* Largura Total */
            width: 200px;
            /* Definindo a largura */
            height: 45px;
            /* Definindo a cor do fundo do botao */
            background-color: transparent;
            /* Defindo a cor do conteudo/ texto do que vai no botao */
            color: #776654;
            /* Tamanho do texto do botao */
            font-size: 15px;
            /* definir a borda no botao */
            border: 2px solid;
            /* para arredondar a borda dele */
            border-radius: 35px;
            /* para mudar o cursor para quando voce passar o mouse por cima do botao para parecer clicavel */
            cursor: pointer;
            transition: 2s;
            box-shadow: 0 0 30px 10px #E6D9CA;
        }


        .infos {
            display: flex;
            justify-content: center;
            align-items: self-start;
            flex-direction: column;
            gap: 20px;
            text-align: left;
            width: 40%;

            p {
                text-align: left;
                color: #C9A86A;
                font-family: Montserrat;
                letter-spacing: 2px;

            }
        }

        .endereco {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;

            img {
                width: 20px;
                height: 18px;
            }


        }

        /* Ícones de redes sociais do rodapé: mesma cor, sem borda/fundo de botão */
        .footer-redes {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 5px;
        }

        .footer-rede-icone {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            color: #8b6f47;
            background: transparent;
            border: none;
            transition: color 0.3s ease, transform 0.2s ease;

            svg {
                width: 100%;
                height: 100%;
            }
        }

        .footer-rede-icone:hover {
            color: #6d5638;
            transform: translateY(-2px);
        }

        /* Botão flutuante do WhatsApp: fixo no canto inferior direito da tela,
           visível em todas as seções durante a rolagem da página. */
        .whatsapp-flutuante {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
            z-index: 999;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .whatsapp-flutuante svg {
            width: 32px;
            height: 32px;
        }

        .whatsapp-flutuante:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
        }


        @media (max-width:600px) {

            #container {
                flex-direction: column;
            }

            #capa {
                flex-direction: column;
            }

        }


/* =========================================================================
   ===== BLOCO DE RESPONSIVIDADE ADICIONADO (nada acima foi alterado) =====
   Este bloco só ACRESCENTA regras via media queries para telas menores
   (tablet e celular). Como CSS é aplicado em ordem/cascata e este bloco
   fica no final do arquivo, essas regras sobrescrevem as originais apenas
   dentro das faixas de largura indicadas, sem remover nada do que já
   existia acima.
   ========================================================================= */

/* ---------- Tablets e telas médias (até 1024px) ---------- */
@media (max-width: 1024px) {

    header {
        height: auto;
        min-height: auto;
        padding: 90px 0 40px;
    }

    nav .ordem {
        width: 90%;
    }

    nav .menu {
        gap: 2rem;
    }

    #container #capa {
        height: auto;
    }

    #container #capa .imagem {
        height: auto;
    }

    #sobre #conheca {
        padding: 80px 20px;
    }

    #sobre #conheca .video {
        height: 500px;
    }

    #consultoria .accordion {
        width: 90%;
    }

    .parceiro-card {
        width: 280px;
    }

    .ebook-card {
        width: 340px;
        height: auto;
    }

    .formulario,
    .infos {
        width: 45%;
    }
}

/* ---------- Celulares e telas pequenas (até 768px) ---------- */
@media (max-width: 768px) {

    /* ---- header / nav ---- */
    header {
        height: auto;
        min-height: auto;
        padding: 80px 15px 50px;
    }

    nav {
        height: auto;
        padding: 10px 0;
    }

    /* Fundo mais sólido quando o painel do menu está aberto, para manter
       os links legíveis por cima do conteúdo da seção logo abaixo */
    nav.menu-aberto {
        background: #e5d9caf2;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    nav .ordem {
        width: 92%;
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
        align-items: center;
    }

    nav .logo img {
        width: 3rem;
    }

    /* Menu de navegação vira um painel oculto por padrão, revelado pelo
       botão hamburguer, em vez de quebrar em várias linhas na barra. */
    nav .menu-toggle {
        display: flex;
        order: 2;
    }

    nav .menu,
    nav .contato {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    nav.menu-aberto .menu,
    nav.menu-aberto .contato {
        max-height: 400px;
        opacity: 1;
    }

    /* O padding só entra quando o painel está aberto: se ficasse na regra
       base, ele somaria à altura mesmo com max-height: 0 (padding não é
       comprimido pelo overflow:hidden), deixando uma faixa visível fechada. */
    nav.menu-aberto .menu {
        padding-top: 15px;
    }

    nav.menu-aberto .contato {
        padding: 10px 0 5px;
    }

    nav .menu {
        gap: 1.2rem;
    }

    nav .contato {
        justify-content: center;
    }

    nav .menu a {
        font-size: 16px;
    }

    nav .btn-contato {
        font-size: 14px;
        padding: 6px 10px;
    }

    /* Anima o ícone hamburguer virando um "X" quando o menu está aberto */
    nav.menu-aberto .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    nav.menu-aberto .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.menu-aberto .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ---- container / capa (topo) ---- */
    #container {
        flex-direction: column;
        margin: 0;
        gap: 0;
    }

    #container #capa {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }

    #container #capa .texto {
        width: 100%;
        gap: 20px;
        text-align: center;
    }

    #container #capa .texto h1 {
        font-size: 34px;
        text-align: center;
        padding: 0 15px;
    }

    #container #capa .texto h2 {
        font-size: 13px;
        text-align: center;
        padding: 0 15px;
    }

    #container #capa .texto p {
        text-align: center;
        padding: 0 15px;
    }

    #container #capa .texto .botao {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }

    #container #capa .imagem {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    /* títulos genéricos */
    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 28px;
    }

    /* ---- #sobre / #conheca ---- */
    #sobre #conheca {
        flex-direction: column;
        width: 100%;
        padding: 60px 20px;
        gap: 30px;
    }

    #sobre #conheca .video {
        width: 100%;
        height: 320px;
    }

    #sobre #conheca .dados {
        width: 100%;
        text-align: center;
    }

    /* ---- #consultoria ---- */
    #consultoria {
        padding: 20px;
    }

    #consultoria #especialidade {
        padding: 20px 10px;
    }

    #consultoria .accordion {
        width: 100%;
    }

    #consultoria .title {
        font-size: 18px;
        padding: 15px 10px;
    }

    /* ---- #carrossel (depoimentos em vídeo) ---- */
    #carrossel .opniao {
        min-width: 220px;
        max-width: 220px;
    }

    /* ---- #parceiros ---- */
    #parceiros {
        height: auto;
        padding-bottom: 40px;
    }

    #parceiros .parNav .parc {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    #parceiros .parNav .parc h2 {
        font-size: 30px;
        text-align: center;
    }

    #parceiros .parNav .parc h3 {
        font-size: 22px;
    }

    .profissionais {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .parceiros-section {
        padding: 50px 16px;
    }

    .parceiro-card {
        width: 100%;
        max-width: 340px;
    }

    .parceiros-cta {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    /* ---- #clientes / depoimentos ---- */
    #clientes {
        min-height: auto;
        padding: 20px 10px 60px;
    }

    #clientes .feedbacks {
        padding: 10px;
    }

    #clientes .dep-card-a {
        width: 90%;
        max-width: 320px;
    }

    #clientes #carrossel {
        padding: 30px 0;
    }

    #clientes .opniao {
        width: 200px !important;
        min-width: 200px;
        max-width: 200px;
        height: 340px;
    }

    /* ---- e-books ---- */
    .ebooks-container {
        padding: 40px 20px;
    }

    .conhecimento .ebooks-titulo {
        font-size: 30px;
    }

    .ebooks-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .ebook-card {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .ebooks-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    /* ---- rodapé / contato ---- */
    #nave {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    #corpo {
        flex-direction: column;
        padding: 0 15px;
    }

    .formulario {
        width: 100%;
        height: auto;
        gap: 15px;
        margin-bottom: 30px;
    }

    .primeiro {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .duvidas {
        width: 100%;
    }

    .infos {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .infos h3 {
        text-align: center;
    }

    .infos p {
        text-align: center;
    }

    .endereco {
        justify-content: center;
    }
}

/* ---------- Celulares pequenos (até 480px) ---------- */
@media (max-width: 480px) {

    #container #capa .texto h1 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 24px;
    }

    #sobre #conheca .video {
        height: 240px;
    }

    #parceiros .parNav .parc h2 {
        font-size: 24px;
    }

    .parceiros-titulo,
    .ebooks-titulo {
        font-size: 26px;
    }

    #clientes .opniao {
        width: 170px !important;
        min-width: 170px;
        max-width: 170px;
        height: 300px;
    }

    .ebook-card {
        max-width: 100%;
    }

    .cta-titulo {
        font-size: 22px;
    }

    .enviar button,
    .botao button {
        width: 100%;
    }

    .whatsapp-flutuante {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-flutuante svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== /FIM DO BLOCO DE RESPONSIVIDADE ADICIONADO ===== */
