* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-time: 10s; /* Ajuste o valor conforme necessário */
}

body {
    position: relative;
    /*background-image: url('img/fundo2.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    max-height: 700px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    
}

/* Adicione este bloco */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('img/fundo2.png');*/
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: blur(8px); /* Ajuste o valor do desfoque conforme necessário */
    z-index: -1;
  }

body::-webkit-scrollbar {
    width: 10px;
    /* Largura da barra de rolagem */
}

body::-webkit-scrollbar-thumb {
    background-color: #DC9E47;
    /* Cor do "pulso" da barra de rolagem */
    border-radius: 5px;
    /* Borda arredondada do "pulso" */
}


body::-webkit-scrollbar-thumb {
    background-color: #DC9E47;
    /* Cor do "pulso" da barra de rolagem */
    border-radius: 5px;
    /* Borda arredondada do "pulso" */
}

/* CSS para dispositivos pequenos (até 767px) */
@media (max-width: 767px) {
    body {
        width: 100%;
        /* Remova as propriedades max-height e max-width para evitar limitações */
        zoom: 75%; /* Aplicar zoom de 75% no body */
        transform: scale(0.75); /* Opção alternativa para ajustar o zoom */
    }

    /* Aumentar o tamanho de fonte dos elementos filhos proporcionalmente */
    h1, h2, h3, h4, h5, h6, p, a, li {
        font-size: 1.33em; /* Aumentar o tamanho de fonte em 33% */
    }

    /* Ajuste o estilo do menu */
    .menu-container {
        position: relative;
    }

    .menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .main-menu ul {
        display: none;
        background-color: #f1f1f1;
        position: absolute;
        top: 60px;
        right: 0;
        z-index: 1;
        width: 100%;
        max-height: calc(100vh - 60px);
        padding: 0;
        overflow-y: auto;
    }

    .menu-container.menu-open .main-menu ul {
        display: flex;
        flex-direction: column;
    }

    .main-menu ul li {
        text-align: center;
        padding: 10px;
    }

    .main-menu ul li a {
        color: black;
        text-decoration: none;
        font-size: 16px;
    }

    .main-menu ul li:hover a {
        color: #DC9E47;
    }

    /* Ajuste para a imagem no header */
    .menu-image-lower img {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block; /* Exiba a imagem */
    }

    .content-section {
        margin-top: 0 !important;
    }
    .menu-image {
        display: none; /* Oculte a imagem de dispositivo maior */
    }
    .whatsapp-button {
        display: none; /* Ocultar o botão em dispositivos pequenos */
    }
    .content-right {
        display: none;
    }

    .hidden-card {
        display: none; /* Ocultar o review-card em dispositivos pequenos */
    }

}





/* CSS para dispositivos maiores */
@media (min-width: 768px) {
    .large-menu {
        display: block; /* Exibir o menu para dispositivos maiores */
        width: 100%; /* Garante que o menu ocupe toda a largura do contêiner */
        max-width: 1200px; /* Limitar a largura máxima do menu */
        margin: 0 auto; /* Centralizar o menu na página */
    }

    .main-menu {
        margin-top: 10px;
        padding: 20px; /* Padding do menu */
        background-color: #f1f1f1; /* Fundo do menu */
        width: 100%; /* Faz com que o menu ocupe toda a largura disponível */
    }

    .main-menu ul.menu-list {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex; /* Usar flexbox para o layout do menu */
        flex-wrap: nowrap; /* Impede quebra de linha */
        overflow: hidden; /* Esconde itens que excedem o espaço */
    }

    .main-menu ul.menu-list li {
        flex-shrink: 0; /* Impede que os itens encolham */
    }

    .main-menu ul.menu-list li a {
        text-align: center;
        padding: 15px 20px; /* Padding ajustado */
        min-width: 150px; /* Largura mínima ajustada */
        color: black;
        text-decoration: none;
        background: #f1f1f1;
        font-weight: bold;
        transition: color 0.3s ease, background 0.3s ease;
        white-space: nowrap; /* Impede quebra de linha nos títulos */
    }

    .main-menu ul.menu-list li a:hover {
        color: #DC9E47; /* Cor ao passar o mouse */
        background: rgba(220, 158, 71, 0.1); /* Fundo ao passar o mouse */
    }

    .main-menu ul.menu-list li ul {
        display: none; /* Ocultar submenus inicialmente */
    }

    .main-menu ul.menu-list li:hover ul {
        display: flex; /* Exibir submenu ao passar o mouse */
        flex-direction: column; /* Exibir submenu em coluna */
    }

    .menu-image-lower {
        display: none; /* Ocultar o menu para dispositivos menores */
    }

    header img {
        display: flex; /* Mostrar imagem no cabeçalho */
        width: 100%; /* A imagem ocupa toda a largura do contêiner */
        height: auto; /* Mantém a proporção da imagem */
    }
}




header {
    background-color: white;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header h1 {
    color: #DC9E47;
    font-size: 2.5rem;
}

header span {
    color: black;
}


header .navegacao-primaria {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .navegacao-primaria li a {
    color: black;
    width: 0px;
    height: 0px;
    font-size: 1.3rem;
}

header .navegacao-primaria li a::after {
    content: '';
    width: 0px;
    height: 0px;
    display: block;
    border-bottom: 4px solid transparent;
    transition: .9s;
}

header .navegacao-primaria li a:hover::after {
    width: 100%;
    height: 0px;
    padding: 0px;
    border-bottom: 4px solid #DC9E47;
}



.section-div {
    animation: inicializar .7s forwards;
    background-color: rgba(206, 206, 206, 0.7);
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    padding: 60px;
}

.section-div div {
    margin-top: 120px;
    align-self: start;
    display: grid;
    gap: 30px;
}

.section-div div h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: black;
}

.section-div div p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: black;
}

.section-div div a {
    justify-self: start;
    color: black;
    padding: 15px 40px;
    border-radius: 5px;
    border: 2px solid black;
}


.section-div img {
    max-width: 100%;
}

.digitando::after {
    content: '|';
    margin-left: 5px;
    opacity: 1;
    animation: pisca .5s infinite;
}

@keyframes pisca {
    from {
        opacity: 1;

    }

    to {
        opacity: 0;
    }
}



@keyframes inicializar {
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* SEÇÃO PRINCIPAL SOBRE MIM */


main {
    background-color: white;
    color: black;
}

main .sobre {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    justify-content: center;
    padding: 40px;
}

.sobre_titulo {
    margin: 30px 0;
    grid-column: 1/-1;
    text-align: center;
    color: black;
}

.sobre_titulo h1 {
    font-size: 2.5rem;
    color: #DC9E47;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.sobre_titulo p {
    color: black;
    font-size: 19px;
    margin-bottom: 1rem;
    position: relative;
}

.sobre_titulo div {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sobre_titulo span {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 10%;
    background-color: #DC9E47;
}

.sobre img {
    animation: ladoSecao .5s ease-in-out forwards;
    cursor: pointer;
    grid-row: 2;
    max-width: 100%;
    border-radius: 4px;
}

.sobre img:hover {
    transition: .5s ease-in;
}

.sobre_conteudo {
    animation: sobeSecao .6s ease-in-out forwards;
    grid-column: 2/-1;
    display: grid;
    color: #707070;
    grid-template-columns: 1fr 1fr;
}

.sobre_texto {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
}

.sobre_texto h1 {
    font-size: 2.3rem;
    color: black;
    grid-column: 1/-1;
}

.sobre_texto h1::after {
    background-color: #DC9E47;
    height: 6px;
    width: 60px;
    margin: 20px 0;
    content: '';
    display: block;
    border-radius: 5px;
}

.sobre_texto p {
    font-size: 1.3rem;
    grid-row: 2;
    grid-column: 1/-1;
}

.sobre_info {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1/-1;
    gap: 15px;
    align-items: center;
}

.sobre_info i {
    color: #DC9E47;
    display: inline-block;
    padding-right: 15px;
    font-size: 1.5rem;
}

.sobre_info p {
    font-size: .9rem;
}

@keyframes sobeSecao {
    from {
        transition: .5s;
        transform: translate3d(60px, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes ladoSecao {
    from {
        transition: .5s;
        transform: translate3d(-60px, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}


/* RESPONSIVO */

@media(max-width: 992px) {
    .section-div img {
        display: none;
    }

    .section-div {
        background-image: url(img/pessoa\ ilustrativa.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    header {
        justify-content: space-between;
        
    }

    header .navegacao-primaria {
        display: none;
    }

    header i {
        color: black;
        font-size: 3rem;
    }

    header .navegacao-primaria.ativado {
        background: linear-gradient(rgba(43, 42, 42, 0.176), rgba(46, 46, 46, 0.724));
        position: absolute;
        display: grid;
        top: 80px;
        color: black;
        z-index: 1;
        padding: 30px;
        font-size: 1.6rem;
        font-weight: bold;
        border-radius: 0 0 4px 4px;
        right: 20px;
        animation: sobeSecao .8s ease-in-out forwards;
    }
}


@media(max-width: 992px) {
    .sobre img {
        grid-column: 1/-1;
        justify-self: center;
    }

    .sobre_conteudo {
        grid-column: 1/-1;
    }
}


/* SEÇÃO SERVICES */

.services {
    margin-top: 90px;
    padding: 60px;
    background-color: #660F00;
}


.my_services {
    padding: 60px;
    color: black;
}


.my_services ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.my_services ul li {
    cursor: pointer;
    border-radius: 6px;
    position: relative;
    padding: 10px;
    display: grid;
    gap: 30px;
    text-align: center;
    max-width: 300px;
    align-content: center;
    height: 300px;
    background-color: #4e0c00;
}

.my_services ul li i {
    font-size: 2.7rem;
    color: #DC9E47;
}

.my_services ul li h3 {
    color: white;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.my_services ul li p {

    color: white;
    font-size: 1.1rem;
}

.my_services li::before,
.my_services li::after {
    content: '';
    transition: transform 0.3s ease-in-out;
    border-radius: 6px;
    width: 0px;
    height: 0px;
    position: absolute;
    opacity: 0;
    /* Adicionado para evitar que os elementos sejam visíveis inicialmente */
}

.my_services li::before {
    top: -2px;
    right: -2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}

.my_services li::after {
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
}

.my_services li:hover::before,
.my_services li:hover::after {
    width: calc(100% + 4px);
    /* Ajustado para incluir a largura das bordas */
    height: calc(100% + 4px);
    /* Ajustado para incluir a largura das bordas */
    opacity: 1;
    /* Tornar os elementos visíveis ao passar o mouse */
    transform: scale(1.02);
    /* Adicionado efeito de escala para tornar a animação mais suave */
    background-color: rgba(220, 158, 71, 0.1);
    /* Adicionado um fundo com transparência */
    border-color: #DC9E47;
    /* Cor da borda ao passar o mouse */
}

/* SOBRE MINHAS EXPERIÊNCIAS */

.my_resume {
    color: black;
}

.resume_gerenico {
    padding: 30px;
    display: grid;
    justify-content: center;
    align-items: start;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.resume_gerenico h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    background-color: #DC9E47;
    justify-self: start;
    padding: 10px;
    border-radius: 1px;
}

.resume_gerenico h2 i {
    margin-right: 10px;
}

.experience {
    margin-bottom: 30px;
    grid-column: 1;
    grid-row: 1;
}

.education {
    margin-bottom: 30px;
    grid-column: 2;
    grid-row: 1;
}

.experience_content ul {
    color: #DC9E47;
    gap: 10px;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}


.resume_gerenico .experience_content div {
    animation: ladoSecao .5s ease-in-out forwards;
    display: none;
    background-color: #222;
    padding: 40px;
}


.resume_gerenico .experience_content div::before {
    content: '';
    display: inline-block;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #222;
    top: -20px;
    left: 30px;
    position: absolute;
}

.resume_gerenico .experience_content div span {
    color: #DC9E47;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.resume_gerenico .experience_content div h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0;
}

.resume_gerenico .experience_content div p {
    color: #707070;
    font-size: 1.1rem;
}


.resume_gerenico .experience_content div.ativo {
    display: block;
    padding: 40px;
}

.experience_content ul li.ativo {
    color: #3e3d3d;
}

/* MEUS DIPROMAS E CURSOS */

.resume_gerenico .education_content div {
    animation: sobeSecao .5s ease-in-out forwards;
    display: none;
    background-color: #222;
    padding: 20px;
}

.resume_gerenico .education_content ul {
    color: #DC9E47;
    gap: 10px;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.resume_gerenico .education_content div::before {
    content: '';
    display: inline-block;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #222;
    top: -20px;
    left: 30px;
    position: absolute;
}

.resume_gerenico .education_content div span {
    color: #DC9E47;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.resume_gerenico .education_content div h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0;
}

.resume_gerenico .education_content div p {
    color: #707070;
    font-size: 1.1rem;
}

.resume_gerenico .education_content ul li.ativo {
    color: #2f2b2b;
}

.resume_gerenico .education_content div.ativo {
    display: block;
    padding: 40px;
    animation: sobeSecao .5s ease-in-out forwards;
}


/* SOBRE CURSOS E SKILLS */

.cursos {
    margin-top: 50px;
    display: grid;
    gap: 30px;
    justify-content: center;
    align-items: start;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 30px;
}


.my_skill {
    display: grid;
}

.my_skill h2 {
    padding: 10px 30px;
    border-radius: 3px;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background-color: #DC9E47;
    justify-self: start;
    margin-bottom: 30px;
}

.my_skill h2 i {
    padding-right: 10px;
}

.skill_content {
    font-size: 1.5rem;
    grid-column: 1/2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
}

.skill_content h3 {
    font-size: 1.5rem;
}

.skill_content ul {
    display: flex;
}


/* FUN FACTS */

.funfacts {
    grid-column: 3/-1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.funfacts h2 {
    grid-column: 1/-1;
    padding: 10px 30px;
    border-radius: 3px;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background-color: #DC9E47;
    justify-self: start;
    margin-bottom: 30px;
}

.funfacts h2 i {
    padding-right: 10px;
}

.funfacts ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.funfacts ul li {
    border: 3px solid #2f2b2b;
    display: grid;
    grid-template-columns: auto 1fr;
    align-self: start;
    background-color: #222;
    width: 200px;
    height: 100px;
}

.funfacts ul li i {
    grid-row: 1/3;
    margin: auto auto;
    padding: 20px;
    font-size: 2rem;
    border-right: 2px solid #3e3d3d;
    color: #DC9E47;
}


.funfacts ul li span {
    font-size: 1.5rem;
    color: black;
    font-family: 'Montserrat', sans-serif;

    font-weight: bold;
    padding-top: 10px;
    padding-left: 10px;
}

.funfacts ul li p {
    padding-left: 10px;
    color: #707070;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}


@media (max-width: 1089px) {

    .resume_gerenico .experience_content,
    .education_content {
        justify-self: center;
        grid-column: 1/-1;
    }

    .resume_gerenico .education {
        grid-column: 1/-1;
        margin-top: 30px;
        grid-row: 3;
        text-align: center;
        justify-self: center;
    }

    .resume_gerenico .experience {
        grid-column: 1/-1;
        margin-top: 30px;
        grid-row: 1;
        text-align: center;
        justify-self: center;
    }

    .cursos {
        grid-template-columns: 1fr;
    }

    .cursos .funfacts h2 {
        justify-self: center;
    }

    .cursos .funfacts {
        margin-bottom: 30px;
        text-align: center;
        grid-template-columns: 1fr;
        justify-self: center;
        grid-column: 1/-1;
    }

    .cursos .my_skill h2 {
        justify-self: center;
    }

    .cursos .my_skill {
        text-align: center;
        grid-template-columns: 1fr;
        justify-self: center;
        grid-column: 1/-1;
    }
}


/* PROJECTS */

.projects {
    padding: 30px;
    display: grid;
    gap: 30px;
    justify-content: center;
    background-color: #151515;
}

.projects ul {
    justify-content: center;
    display: flex;
    gap: 30px;
}

.project_models ul li {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    background-color: #222;
    border: 1px solid #333;
    color: #707070;
    padding: 6px 20px;
}

.project_models ul li.ativo {
    background-color: #DC9E47;
    color: #151515;
    font-weight: bold;
}


.projects_armazenamento ul {
    display: grid;
    margin-top: 60px;
    gap: 20px;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
}

.projects_armazenamento ul li {
    display: none;
    max-width: 100%;
    height: 100%;
}



.projects_armazenamento ul li.ativo {
    display: block;
    animation: animationButton 2s ease-in-out forwards;
}

.projects_armazenamento ul li img {
    cursor: pointer;
    max-width: 100%;
    height: 100%;
    border-radius: 4px;
}

.projects a {
    background-color: #222;
    text-decoration: none;
    padding: 20px 40px;
    justify-self: center;
    border-radius: 3px;
    color: #707070;
    border: 1px solid #333;
}


@keyframes animationButton {
    0% {
        opacity: 0;
        transform: translate3d(0, -90px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }
}


/* FOOTER */

/* Estilização do rodapé */
footer {
    background-color: #660F00;
    color: #fff;
    padding: 50px 0;
    text-align: left;
    width: 100%;
    position: static;
    left: 50%;
    padding-bottom: 0px;
}

.about-title {
    margin-bottom: 30px;
}

.about-title h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #DC9E47;
    margin-left: 40px;
}

.about-title p {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 40px;
}

.footer-socials {
    
    list-style: none;
    margin: 0;
    margin-left: 40px;
    padding: 0;
    display: flex;
    justify-content: left;
    margin-bottom: 30px;
}

.footer-socials li {
    margin: 0 10px;

}

.footer-socials a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #DC9E47;
}

.footer-commercial {
    font-size: 0.8rem;
    margin-left: 40px;
}









.plan-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 20px;
    margin-top: 0px;
    margin-bottom: 160px;
}

.plan {
    flex-basis: calc(95% - 20px);
    padding: 20px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.compare {
    flex-basis: calc(20% - 20px);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}



.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.plan i {

    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}
.plan li {
    font-weight: bold;
    padding-top: 15px;
}
.compare {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: calc(33.33% - 20px);
}

.x {
    margin-top: 140px;
    font-size: 36px;
    color: #333;
    font-weight: bold;
}






.stylish-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    background-color: #f1f1f1;
    color: #660F00;
}

.content {
    flex: 1;
    padding-right: 50px;
}

.title-beneficios {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #660F00;
}

.description,
.solution {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.solution {
    font-weight: bold;
}

.cta {
    display: flex;
    align-items: center;
}

.whatsapp-link {
    font-size: 1.4rem;
    padding: 15px 30px;
    background-color: green;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #660F00;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .stylish-section {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }

    .content {
        padding: 0;
        margin-bottom: 40px;
    }

    .whatsapp-link {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}









.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
    z-index: 1000;
    font-size: 24px;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}






.reviews {
    background-color: #660F00;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.title-sucesso {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #DC9E47;
}

.review-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.review-card.highlight {
    background-color: #fffbea; /* Fundo leve dourado */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6); /* Sombra dourada */
    border-radius: 10px;
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    padding: 20px; /* Ajusta o padding para melhorar o layout */
}

.review-card.highlight:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8); /* Efeito de hover */
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    padding: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-photo i {
    font-size: 50px;
    color: blue;
}

.client-name h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #333;
}

.star-rating {
    font-size: 1.2rem;
    color: #FFD700;
    margin-top: 5px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

.review-text a {
    color: #660F00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.review-text a:hover {
    color: #DC9E47;
}

.cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}






/* Estilização da seção de caixa de perguntas */
.faq {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #660F00;
}


.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    overflow: hidden;
}

.question {
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h3 {
    font-size: 1.2rem;
    color: #333;
    flex: 1;
    margin: 0;
}

.toggle-icon::before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.5rem;
    color: #660F00;
    transition: transform 0.3s;
}

.answer {
    padding: 0 20px 20px;
    background-color: #fff;
    display: none;
    color: #333;
}
.answer p {
    font-weight: bold;
}

.answer-block {
    color: black;

}

.faq-item.open {
    border-color: #660F00;
}

.faq-item.open .toggle-icon::before {
    transform: rotate(180deg);
}

.faq-item.open .answer {
    display: block;
}

.faq-list {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-column {
    flex: 1;
    margin: 0 10px;
}




.menu-list li a{
    font-size: 13px;
}









.hero {
    background-color: white;
    color: #333333;
    padding: 100px 0;
    text-align: left;
    flex: 1;
}

.content-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content-hero h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.content-hero p {
    font-weight: bold;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

/* Estilos para links */
.content-hero a {
    color: #005ea8;
    text-decoration: none;
}

.content-hero a:hover {
    text-decoration: underline;
}









.contact {
    background-color: #660F00;
    text-align: center;
    padding: 100px 0;
    color: #ffffff;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}







.content-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-top: 80px;
}

.content-left {
    flex: 1;
}

.content-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.content-paragraph {
    font-weight: bold;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.content-right {
    flex: 1;
    text-align: center;
}



.content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Adicionei um canto arredondado à imagem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adicionei uma sombra suave */
    margin-left: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent 25%, black 100%);
    background-image: url(https://placecage.com/100/180);
}


.content-right2 {
    flex: 1;
    text-align: center;
}



.content-right2 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Adicionei um canto arredondado à imagem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adicionei uma sombra suave */
    margin-left: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent 5%, black 100%);
    background-image: url(https://placecage.com/100/180);
}








/* Estilos para a seção "Problem Solution" */
.problem-solution-section {
    background-color: white;
    padding: 50px;
    text-align: left;
}

.content-problem {
    margin: 0 auto;
    padding: 2rem;
    text-align: left;

}

.content-problem h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.reasons-list {
    list-style-type: disc;
    margin-left: 0; /* Remova o padding-left */
    margin-bottom: 20px;
}

.reasons-list li {
    font-weight: bold;
    line-height: 1.6;
    color: #666666;
}

.content-problem p {
    font-weight: bold;
    line-height: 1.6;
    color: #666666;
}




























/* Seu CSS existente */
.professionals-section {
    background-color: white;
    padding: 2rem 0;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.professional-card {
    display: inline-block;
    width: 250px;
    margin: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
    vertical-align: top; /* Adicione esta linha */

}

.professional-card:hover {
    transform: translateY(-5px);
}

.professional-card img {
    width: 100%;
    max-height: 333px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.professional-card .arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.professional-card.open .arrow {
    transform: rotate(180deg);
}

.professional-card-details {
    display: none;
    padding: 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ccc;
}
.details-list li {
    font-weight: bold;
}








.atuacao {
    padding: 60px;
    color: black;
    text-align: center;
}

.atuacao h2 {
    padding: 40px;
}

.atuacao ul {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem em múltiplas linhas */
    gap: 20px; /* Espaço entre os itens */
    align-items: center;
    justify-content: center; /* Centraliza os itens */
}

.atuacao ul li {
    cursor: pointer;
    border-radius: 6px;
    position: relative;
    padding: 10px;
    display: grid;
    gap: 30px;
    text-align: center;
    width: 240px; /* Largura fixa para os itens */
    align-content: center;
    height: 240px; /* Altura fixa para os itens */
    background-color: #f1f1f1;
    transition: background-color 0.3s ease; /* Transição suave ao mudar o fundo */
}

/* Estilo do link */
.atuacao ul li a {
    text-decoration: none; /* Remove o sublinhado do link */
    color: inherit; /* Mantém a cor do texto do pai */
    display: flex; /* Alinha ícone e texto verticalmente */
    flex-direction: column; /* Para empilhar o conteúdo */
    align-items: center; /* Centraliza o conteúdo */
}

.atuacao ul li i {
    font-weight: bold;
    font-size: 2.7rem;
    color: black;
}

.atuacao ul li h3 {
    color: black;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.atuacao ul li a h4 {
    margin-top: 30px;
}

.atuacao ul li p {
    font-weight: bold;
    color: black;
    font-size: 1.1rem;
}

.atuacao li::before,
.atuacao li::after {
    content: '';
    transition: transform 0.3s ease-in-out;
    border-radius: 6px;
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
    pointer-events: none; /* Evita que os pseudo-elementos sejam clicáveis */
}

.atuacao li::before {
    top: -2px;
    right: -2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}

.atuacao li::after {
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
}

.atuacao li:hover::before,
.atuacao li:hover::after {
    width: calc(100% + 4px); /* Ajustado para incluir a largura das bordas */
    height: calc(100% + 4px); /* Ajustado para incluir a altura das bordas */
    opacity: 1; /* Torna os elementos visíveis ao passar o mouse */
    transform: scale(1.02); /* Adicionado efeito de escala para tornar a animação mais suave */
    background-color: rgba(220, 158, 71, 0.1); /* Fundo com transparência */
    border-color: grey; /* Cor da borda ao passar o mouse */
}

/* Efeito de hover no link */
.atuacao ul li:hover {
    background-color: rgba(240, 240, 240, 0.9); /* Mudança de cor de fundo ao passar o mouse */
}

/* Consultas de mídia para responsividade */
@media (max-width: 768px) {
    .atuacao ul li {
        width: 100%; /* Itens ocupam toda a largura em telas menores */
        height: auto; /* Ajusta a altura automaticamente */
        max-width: 300px; /* Largura máxima para evitar que fiquem muito grandes */
    }

    .atuacao h2 {
        font-size: 1.8rem; /* Reduz o tamanho do título em telas menores */
    }

    .atuacao ul li i {
        font-size: 2rem; /* Ajusta o tamanho do ícone em telas menores */
    }

    .atuacao ul li h3 {
        font-size: 1.4rem; /* Reduz o tamanho do subtítulo */
    }

    .atuacao ul li a h4 {
        margin-top: 20px; /* Ajusta a margem superior */
    }
}






















.formularioContato {
    width: 100%; /* Aproveita 100% do tamanho da div */
    max-width: 600px;
    height: auto;
    
    margin: 0 auto;
    margin-right: 40px;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 6px;
    position: relative;
    text-align: left;
    overflow: hidden;
}

.formularioContato label {
    width: 100%;
    margin-bottom: 1.2em;
}

.formularioContato label span {
    width: 100%;
    color: #999;
    margin-bottom: 6px;
    display: block;
}

.formularioContato label input,
.formularioContato label select,
.formularioContato label textarea {
    font-size: 1em;
    width: 100%;
    color: #333;
    outline: none;
    border: 1px #dee5ed solid;
    border-radius: 4px;
    padding: 0.6em;
    transition: 0.3s;
}

.formularioContato label input:focus,
.formularioContato label select:focus,
.formularioContato label textarea:focus {
    box-shadow: 0 0 5px 0px rgb(178, 216, 231);
    border: 1px rgb(37, 174, 230) solid;
    font-weight: bold;
    color: black;
}

.formularioContato button.btn-envia {
    background-color: white;
    width: 90px;
    display: block;
    margin: auto;
    cursor: pointer;
    border-radius: 4px;
    border: 0;
    padding: 0.8em 0em;
    color: black;
    font-size: 1em;
    text-align: center;
    transition: 0.3s;
}