* {
    padding: 0;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* mesma altura da #navbar */
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}
p {
  text-indent: 30px; /* Você pode usar pixels (px), em ou rem */
}



/* BOTÕES VOADORES FIXOS--------------------------------------------------------------------------------------------------------------*/

.botoes-flutuantes {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;
}

.botoes-flutuantes a {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 28px;

    transition: 0.3s;
}

.botao-whatsapp {
    background: #25D366;
}

.botoes-flutuantes a i {
    color: white;
}

.botoes-flutuantes a:hover {
    transform: scale(1.1);
}


/* NAVBAR---------------------------------------------------------------------------------------------------------------------------------------------- */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding-left: 40px;
    padding-right: 40px;
}


.navbar-brand {
    font-size: 30px;
    font-weight: bold;
    color: black !important;
}


.nav-link {
    font-size: 18px;
    margin-left: 20px;
    padding: 8px 14px !important;
    border-radius: 6px;
    color: black !important;
    background-color: rgb(233, 219, 201);
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}
.nav-link:hover {
    background-color: rgb(247, 226, 200);
    color: rgb(39, 39, 39) !important;
}

#agendar {
    background-color: #0c4220;
    color: white !important;
    border-radius: 6px;
    margin-left: 20px;
}

#agendar:hover {
    background-color: #1ebe5d;

    color: white !important;
}


@media (max-width: 850px) {

    #navbar {
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    #menu {
        width: 100%;
        margin-top: 10px;
        padding: 10px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    }
    .nav-item {

        width: 100%;

    }
    .nav-link {
        width: 100%;
        margin-left: 0;
        padding: 12px 15px !important;
        border-radius: 6px;
    }
    #agendar {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
        text-align: center;
    }
    .navbar-toggler {
        border: none;
        outline: none !important;
        padding: 5px 8px;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
}


@media (max-width: 500px) {
    #navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .botoes-flutuantes {
        right: 15px;
        bottom: 15px;
    }

    .botoes-flutuantes a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/*SEÇÃO INICIO -----------------------------------------------------------------------------------------------------------*/
.textocor{
    color: #5b7e0a;
}

#inicio{
    width: 100%;
    min-height: 40vw;
    background-color: antiquewhite;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 70px;

    opacity: 0.8;
    background-image: radial-gradient(circle, rgb(231, 179, 111) 0.6px, transparent 0.6px);
    background-size: 7px 7px;
}

.inicio-texto{
    flex: 1;
    padding-left: 7%;
}

.inicio-texto h1{
    color: rgb(64, 151, 72);
    font-size: 3vw;
    font-weight: bold;
}

.inicio-imagem{
    flex: 1;
    display: flex;
    justify-content: center;
    padding-right: 8%;
}

.inicio-imagem img{
    width: 100%;
    max-width: 530px;
    height: auto;
    border-radius: 12px;
}
.btn-cta {
    background-color: rgb(6, 161, 19);
    border-color: rgb(6, 161, 19);
    color: white;
}
.hero-cta{
    text-align: center;
    padding-top: 3%;
}
.btn-cta:hover {
    background-color: rgb(4, 125, 15);
    border-color: rgb(4, 125, 15);
    color: white;
}

@media (max-width: 850px){
    #inicio{
        flex-direction: column;
        min-height: auto;
        padding: 110px 6% 40px 6%;
        gap: 30px;
    }
    .inicio-texto{
        padding-left: 0;
        text-align: center;
    }
    .inicio-texto h1{
        font-size: 7vw;
    }
    .inicio-imagem{
        padding-right: 0;
    }
}


/*SEÇÃO SOBRE MIM -----------------------------------------------------------------------------------------------------------*/
#sobremim{
    width: 100%;
    min-height: 15vw;

    background-color: whitesmoke;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5% 0 0 0;

    position: relative;

}

.sobremim-imagem{
    flex: 1;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding-left: 8%;
}

.sobremim-imagem img{
    width: 50%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

.sobremim-texto{
    flex: 1;

    padding-right: 12%;
    padding-left: 6%;
}

.sobremim-texto h2{
    font-weight: bold;
    color: rgb(6, 161, 19);
    font-size: 3vw;
    margin-bottom: 4%;
}

.sobremim-texto p{
    font-size: 1.2vw;
    line-height: 1.6;
}

@media (max-width: 850px){

    #sobremim{
        flex-direction: column;

        min-height: auto;

        padding: 60px 6% 0 6%;

        gap: 30px;
    }

    .sobremim-texto{
        width: 100%;

        padding-right: 0;
        padding-left: 0;

        text-align: center;

        order: 1;
    }

    .sobremim-texto h2{
        font-size: 7vw;
    }

    .sobremim-texto p{
        font-size: 4vw;
    }

    .sobremim-imagem{
        width: 100%;

        padding-left: 0;

        display: flex;
        justify-content: center;
        align-items: flex-end;

        order: 2;
    }

    .sobremim-imagem img{
        width: 50%;
        max-width: 600px;
        height: auto;
        display: block;
    }
}


/*SEÇÃO ABORDAGEM -----------------------------------------------------------------------------------------------------------*/
#abordagem{
    width: 100%;
    min-height: 30vw;
    background-color: antiquewhite;
    padding: 5% 8%;

    opacity: 0.8;
    background-image: radial-gradient(circle, rgb(231, 179, 111) 0.6px, transparent 0.6px);
    background-size: 7px 7px;
}

#abordagem h2{
    text-align: center;
    font-weight: bold;
    color: rgb(6, 161, 19);
    font-size: 3vw;
    margin-bottom: 4%;
}

.abordagem-conteudo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6%;
}

.abordagem-slideshow{
    position: relative;
    flex: 1;
    max-width: 580px;
    aspect-ratio: 4/2;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.abordagem-slideshow .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.abordagem-slideshow .slide.ativo{
    opacity: 1;
}

.abordagem-texto{
    flex: 1;
}

.abordagem-texto p{
    font-size: 1.2vw;
    line-height: 1.6;
    margin-bottom: 4%;
}

@media (max-width: 850px){
    #abordagem{
        min-height: auto;
        padding: 60px 6%;
    }
    #abordagem h2{
        font-size: 7vw;
    }
    .abordagem-conteudo{
        flex-direction: column;
    }
    .abordagem-slideshow{
        max-width: 100%;
    }
    .abordagem-texto p{
        font-size: 4vw;
        text-align: center;
    }
}


/*SEÇÃO AVALIAÇÕES -----------------------------------------------------------------------------------------------------------*/
#avaliacao{
    width: 100%;
    min-height: 20vw;
    background-color: whitesmoke;
    padding: 5% 8%;
}

#avaliacao h2{
    text-align: center;
    font-weight: bold;
    color: rgb(6, 161, 19);
    font-size: 3vw;
    margin-bottom: 4%;
}

.avaliacao-grade{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.avaliacao-caixa{
    background-color: white;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.avaliacao-caixa h4{
    color: rgb(6, 161, 19);
    font-weight: bold;
    margin-bottom: 12px;
}

.avaliacao-caixa p{
    font-size: 0.95vw;
    line-height: 1.5;
}

@media (max-width: 850px){
    #avaliacao{
        min-height: auto;
        padding: 60px 6%;
    }
    #avaliacao h2{
        font-size: 7vw;
    }
    .avaliacao-caixa p{
        font-size: 3.5vw;
    }
}


/*SEÇÃO RODAPÉ ----------------------------------------------------------------------------------------------------------------*/
footer {
    height: 10vh;
    background-color: #ffc58fd2;

    position: relative;
}

footer p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0px !important;

    font-size: larger;
    white-space: nowrap;
}

footer p:nth-child(1) {
    left: 2%;
}

footer p:nth-child(2) {
    left: 50%;
    transform: translate(-50%, -50%);
}

footer p:nth-child(3) {
    right: 2%;
}

@media (max-width: 800px) {

    footer {
        height: auto;
        min-height: 18vh;
        position: relative;
        padding: 20px 0;
    }

    footer p {
        position: static;
        transform: none !important;

        width: 100%;
        text-align: center;

        margin: 8px 0 !important;
        padding: 0 !important;

        text-indent: 0px !important;
        white-space: normal;
        font-size: medium;
    }

}

/*CELULAR ------------------------------------------------------*/



/* Celular: até 500px */
@media (max-width: 550px) {
    .inicio-texto h1{
        font-size: 7vw;
    }
}


/*TELAS MÉDIAS (NOTEBOOK / TABLET DEITADO) ---------------------------------*/
@media (min-width: 850px) and (max-width: 1300px) {

    /* NAVBAR */
    .navbar-brand {
        font-size: 26px;
    }
    .nav-link {
        font-size: 16px;
        margin-left: 10px;
        padding: 6px 10px !important;
    }
    #agendar {
        margin-left: 10px;
    }
    #navbar {
        padding-left: 25px;
        padding-right: 25px;
    }

    /* INÍCIO */
    #inicio {
        min-height: auto;
        padding: 110px 5% 50px 5%;
    }
    .inicio-texto {
        padding-left: 0;
    }
    .inicio-texto h1 {
        font-size: 38px;
    }
    .inicio-imagem {
        padding-right: 0;
    }
    .inicio-imagem img {
        max-width: 420px;
    }

    /* SOBRE MIM */
    #sobremim {
        padding: 60px 5% 0 5%;
    }
    .sobremim-imagem {
        padding-left: 0;
    }
    .sobremim-imagem img {
        width: 75%;
    }
    .sobremim-texto {
        padding-right: 0;
        padding-left: 5%;
    }
    .sobremim-texto h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .sobremim-texto p {
        font-size: 17px;
    }

    /* ABORDAGEM */
    #abordagem {
        min-height: auto;
        padding: 60px 5%;
    }
    #abordagem h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .abordagem-conteudo {
        gap: 4%;
    }
    .abordagem-texto p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    /* AVALIAÇÕES */
    #avaliacao {
        min-height: auto;
        padding: 60px 5%;
    }
    #avaliacao h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .avaliacao-grade {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .avaliacao-caixa p {
        font-size: 15px;
    }

    /* RODAPÉ */
    footer {
        min-height: auto;
        p {
            font-size: 15px;
        }
    }
}