
/* Aplicando a fonte */
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Dolce Vita', sans-serif;
}

section.container{
    margin: 20px 20px;
}

section h2 {
    font-weight: 300;
    padding: 0px  20px;
    margin: 20px 0;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
}

body > .background {
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    position: absolute;
    background-size: contain;
    top: 0;
    z-index: -1;
}
.box-text{
    background: var(--green-light-bg);
    padding: 15px 8px;
    border-radius: 10px;
    flex: 1;
    font-weight: 300;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* MENU TOGGLE */
.sliding-menu {
    position: fixed;
    top: 0;
    border-radius: 60px 0px 0 60px;
    right: -200px; /* Start off-screen */
    width: 200px;
    height: 100vh;
    background-color: var(--silver-bg);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.sliding-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    padding: 20px;
    text-align: right;
}

.close-menu {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--text-dark);
}

.menu-content {
    padding: 20px;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content ul li {
    margin-bottom: 20px;
}

.menu-content ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.menu-content ul li a:hover {
    color: #666;
}

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 0px;
    background-color: var(--green-light-bg);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 40% 45% 0% 45%;
}

.whatsapp-button img {
    width: 35px;
}

/* Modal */
 /* Estilos do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}
.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
}
.modal-content {
    background: var(--silver-bg);
    width: 90%;
    max-width: 325px;
    position: fixed;
    bottom: 100px;
    right: -100%;
    border-radius: 20px 0 0 20px;
    transition: right 0.3s ease-in-out;
}

.modal-header {
    background: var(--green-light-bg);
    color: white;
    padding: 20px;
    text-align: start;
    font-size: 18px;
    position: relative;
    border-radius: 20px 0 0 0;
}
.modal-header h2 {
    font-weight: 500;
    font-size: 2em;
    line-height: .8em;
}
.modal-header h3 {
    font-weight: 300;
}


.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    background: #e0e0e0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    justify-content: space-evenly;
    color: var(--text-dark);
    font-weight: bold;
    transition: background 0.3s;
}
.modal-option span {
    width: 60%;
    font-size: 1.3em;
    font-weight: 500;
}

.modal-option img {
    width: 65px;
    height: 65px;
}

.modal-option:hover {
    background: #dcdcdc;
}



.modal.active {
    opacity: 1;
    visibility: visible;
    display: block;
}



.modal.active .modal-content {
    right: 0;
}



/* Seção Header */

.site-header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.site-header img{
    max-width: 180px;
    object-fit: contain;
}

/* Seção Hero */
.hero-desktop {
    display: none;
}
.hero {
    position: absolute;
    background: url('<?php echo get_template_directory_uri(); ?>/assets/hero-bg.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
.site-logo{
    max-height: 100px;
}

.logo {
    height: 40px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    margin: 0 20px;
}

/* Seção Destaques */
.highlights-desktop {
    display: none;
}
.highlights {
    display: flex;
    gap: 7px;
    flex-direction: column;
}

.highlight {
    font-size: 3.2vw;
}

.highlight .box-container-highlight{
    display: flex;
    gap: 7px;
}

.highlight .box{
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.highlight .box.left {
    display: flex ;
    width: 40%;
    background-color: var(--green-light-bg);
    justify-content: center;
    font-weight: 300;
    align-items: end;
    padding: 15px;
}
.highlight .box.right {
    width: 60%;
}

.highlights img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* Seção Barreiras */
.barriers {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
}

.barrier-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 1.2rem;
    gap: 10px;
    justify-content: space-between;
}

.barrier {
    background: var(--green-light-bg);
    padding: 15px 20px;
    border-radius: 0px 10px 10px;
    flex: 1;
    font-weight: 200;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* Seção Parceria */
.partnership {
    text-align: center;
}

.partnership-items {
    display: flex;
    color: var(--text-dark);
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    font-size: 1.6rem;
    gap: 10px;
    justify-content: space-between;
}

.partnership-item {
    background: var(--silver-bg);
    padding: 10px 50px;
    border-radius: 10px;
    width: 100%;
    flex: 1;
    font-weight: 300;
    text-align: center;
    align-items: center;
    justify-content: start;
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.partnership-item p {
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: start;
}
.partnership-item strong {
    font-weight: 900;
}
.partnership-item img {
    height: 60px;
    width: 60px;
    object-fit: contain;

}

/* Seção About */

.about {
    text-align: center;
    margin-top: 50px;
}
.about img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}
.about h2 {
    margin: 30px 0 40px;
    display: block;
}
.about .box-text{
    padding: 20px;
    font-size: 1.2rem;
    text-align: center;
}

/* Seção Clients */

.clients {
    text-align: center;
    padding: 20px 0;
}

.clients h3 {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1.8em;
    margin: 60px 0 30px 0;
    letter-spacing: 4px;
}

/* Container do carrossel */
.clients .carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1248px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Faixa do carrossel */
.clients .carousel {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* Imagens do carrossel */
.clients .carousel img {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Animação do carrossel */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Seção FAQ */

.services{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services h2 {
    font-weight: 200;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    letter-spacing: 4px;
}

.faq-content {
    margin-top: 30px;
}

.faq-title {
    font-size: 1em;
    font-weight: 300;
    margin: 25px 0 15px;
}

.faq-item {
    background-color: #5a613f;
    color: white;
    padding: 20px 20px 10px 20px;
    margin-bottom: 10px;
    border-radius: 0px 10px 10px 10px;
    cursor: pointer;
    display: flex;
    gap: 0px;
    font-size: 1em;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active {
    background-color: #727b4e;
    gap: 10px;
}

.faq-asking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0px;
    opacity: 0;
    padding-bottom: 0px;
    overflow: hidden;
    transition: 0.5s ;
    font-size: .8em;
    margin-bottom: 10px;
}

.faq-answer ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-answer ul li {
    display: flex;
    align-items: center;
}

.faq-answer ul li::before {
    content: "•"; /* Adiciona um bullet manualmente */
    color: var(--text-dark); /* Cor do bullet */
    font-size: 3em;
    margin-right: 8px;
    line-height: 0;
}

.faq-item.active .faq-answer {
    max-height: 5000px; /* Ajuste conforme o tamanho do conteúdo */
    opacity: 1;
    display: flex;
}

.faq-asking svg {
    width: 24px;
    height: 24px;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.faq-item.active .faq-asking svg {
    transform: rotate(180deg);
}

/* FAQ OLD */

/* .line{
    display: flex;
    gap: 7px;
}
.line div.box-text{
    background-color: var(--silver-bg);
    color: var(--text-dark);
}
.line div{
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    height: 35vw;
}
.line img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.faq-content {
    margin-top: 30px;
}

.faq-title {
    font-size: 18px;
    font-weight: 300;
    margin: 25px 0 15px;
}

.faq-item {
    background-color: #5a613f;
    color: white;
    padding: 10px 20px 0px 20px;
    margin-bottom: 10px;
    border-radius: 0px 10px 10px 10px;
    cursor: pointer;
    display: flex;
    gap: 0px;
    font-size: 16px;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active {
    background-color: #727b4e;
    gap: 10px;
}

.faq-asking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0px;
    opacity: 0;
    padding-bottom: 0px;
    overflow: hidden;
    transition: 0.5s ;
    font-size: 14px;
    margin-bottom: 10px;
    
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    opacity: 1;
}

.faq-asking svg {
    width: 24px;
    height: 24px;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.faq-item.active .faq-asking svg {
    transform: rotate(180deg);
} */


/* Profile  */

/* Estilos da seção de perfil */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #1E1E1E;
    color: #F5F6F6;
    font-family: 'Montserrat', sans-serif;
}

.profile-section .right {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

/* Cartão principal com imagem e informações */
.profile-card {
    margin-top: 110px;
    display: flex;
    color: var(--text-dark);
    background-color: var(--silver-bg);
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    flex-direction: column;
}

.profile-info {
    display: flex;
    align-items: end;
    gap: 20px;
}
.profile-card .profile-text {
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-size: .8em;
    gap: 20px;
}
.profile-image {
    width: 43%;
    margin-top: -75px;
    object-fit: cover;
}

.profile-name {
    font-size: 2em;
    font-weight: 200;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    padding: 0;
}

/* Citação destacada */
.quote {
    background: #5C6B45;
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: start;
    gap: 10px;
    max-width: 500px;
}
.quote img {
    width: 35px;
    opacity: 0.6;
    object-fit: contain;
}
.quote p {
    font-size: 1em;
    font-weight: 300;
    text-align: start;
}

.quote strong {
    font-weight: 700;
    color: #E1E1E1;
}

/* Seção de selos */

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-dark);
    justify-content: center;
    font-size: 1em;
}

.badge {
    background: var(--silver-bg);
    border-radius: 12px;
    padding: 10px 15px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
    width: 45%;
    min-height: 100px;
    flex: 1;
}

.badge.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge bold {
    font-weight: 700;
}

.badge strong {
    font-size: 2.8em;
    line-height: 1em;
    display: block;
    font-weight: 400;
}

.badge span {
    display: flex;
    flex-direction: column;
}
.badge span div{
    display: flex;
    align-items: end;
    gap: 5px;
}
.badge small {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2;
    display: block;
}

.badge.highlight {
    background: #007bff;
    color: white;
}

.badge.highlight small {
    color: rgba(255, 255, 255, 0.9);
}


.badge-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}


/* Seção Contato */

.contact {
    background-color: #1b1b1b;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.contact-content h3 {
    font-size: 8vw;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 200;
}

.contact-content p {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.4;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
}

.wpcf7-form label {
    font-size: 12px;
    margin-bottom: 5px;
}

.wpcf7-form input,
.wpcf7-form textarea {
    background: #5a5a5a;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #dcdcdc;
}

.wpcf7-form textarea {
    height: 80px;
    resize: none;
}
.wpcf7-form > div{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.wpcf7-form .wpcf7-submit {
    background-color: #5a613f;
    color: white;
    font-size: 16px;
    padding: 10px;
    max-width: 150px;
    width: 100%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #727b4e;
}
.wpcf7-form-control-wrap,
.wpcf7-form-control{
    width: 100%;: ;
}

/* Seção Footer */

.footer {
    background-color: #1b1b1b;
    color: white;
    padding-top: 10px;
    border-radius: 10px 10px 0 0;
    font-weight: 200;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #5a613f;
    padding: 40px 20px;
    gap: 20px;
    border-radius: 10px 10px 0 0;
}
.footer-content .info {
    display: none;
}
.back-to-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: white;
    font-size: 16px;
    margin-top: -25px;
}

.back-to-top > svg {
    width: 70px;
    height: 70px;
    transform: rotate(180deg);
}
.back-to-top > span {
    margin-top: -10px;
    font-size: 5vw;
}

.social-media p {
    font-size: 2vwx;
    margin-left: 7px;
    font-weight: 200;
}

.icons {
    display: flex;
    margin-top: 5px;
}

.icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #2B311E;
    padding: 8px;
    text-align: center;
    font-size: 2vw;
}

