/* Estilos para o FAQ */
.e-n-accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.e-n-accordion-item-title {
    background-color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    color: #333; /* Cor do título */
}

.e-n-accordion-item-title:hover {
    background-color: #f5f5f5;
}

.e-n-accordion-item[open] .e-n-accordion-item-title {
    background-color: #f5f5f5;
}

.e-n-accordion-item-title-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px; /* Ajuste para subir um pouco o ícone */
}

/* Esconde o SVG do ícone de menos */
.e-n-accordion-item .e-opened svg {
    display: none;
}

/* Esconde o ícone plus padrão */
.e-n-accordion-item .e-closed i {
    display: none;
}

/* Adiciona o ícone de menos quando aberto */
.e-n-accordion-item[open] .e-opened::before {
    content: '-';
    font-size: 24px;
    color: #707362;
    font-weight: 300;
    line-height: 1; /* Ajuste para melhor alinhamento vertical */
    position: relative;
    top: -2px; /* Ajuste fino da posição */
}

/* Adiciona o ícone de mais quando fechado */
.e-n-accordion-item:not([open]) .e-closed::before {
    content: '+';
    font-size: 24px;
    color: #707362;
    font-weight: 300;
    line-height: 1; /* Ajuste para melhor alinhamento vertical */
    position: relative;
    top: -2px; /* Ajuste fino da posição */
}

.e-n-accordion-item > div {
    padding: 15px;
    background-color: #fff;
    display: none;
}

/* Estilo para o texto do conteúdo */
.e-n-accordion-item .elementor-widget-container p {
    color: #333; /* Cor do texto do conteúdo */
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.e-n-accordion-item[open] > div {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: #707362;
    font-size: 36px;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.faq-question .icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-question .icon::before,
.faq-question .icon::after {
    content: '';
    position: absolute;
    background-color: #707362;
    transition: all 0.3s ease;
}

.faq-question .icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-question .icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

.credenciais-section {
    padding: 80px 0;
    background-color: #fff;
}

.credenciais-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.credenciais-imagem {
    flex: 1;
    position: relative;
}

.credenciais-imagem img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

.credenciais-imagem .overlay-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.overlay-image {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border-radius: 10px;
}

.overlay-image:nth-child(1) {
    top: -30px;
    left: -30px;
}

.overlay-image:nth-child(2) {
    bottom: -30px;
    right: -30px;
}

.credenciais-conteudo {
    flex: 1;
}

.credenciais-titulo {
    color: #707362;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.credenciais-subtitulo {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.credenciais-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.credenciais-box h3 {
    color: #707362;
    font-size: 24px;
    margin-bottom: 20px;
}

.credenciais-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credenciais-lista li {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.credenciais-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #707362;
    border-radius: 50%;
}

.credenciais-botao {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: #3C3C3A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    position: relative;
}


.credenciais-botao::after {
    content: '-';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
}

.credenciais-botao:hover {
    background: #5d604f;
}



@media (max-width: 992px) {
    .credenciais-container {
        flex-direction: column;
    }

    .credenciais-imagem {
        order: -1;
    }

    .credenciais-titulo {
        font-size: 36px;
    }

    .overlay-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .credenciais-titulo {
        font-size: 32px;
    }

    .credenciais-subtitulo {
        font-size: 16px;
    }

    .credenciais-box h3 {
        font-size: 20px;
    }

    .credenciais-lista li {
        font-size: 14px;
    }
}

.historia-accordion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.historia-conteudo {
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
}

.historia-conteudo.active {
    max-height: 1000px;
    padding: 30px 20px;
}

.historia-texto {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
} 

.historia-botao {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #393935;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
    margin-top: 30px;
    position: relative;
    cursor: pointer;
    border: none;
}

/* Ícone no botão */
.historia-botao::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Botão ativo (aberto) */
.historia-botao.active {
    background-color: #717268 !important;
    color: #333 !important;
}

.historia-botao.active::after {
    content: '-';
}

/* Hover */
.historia-botao:hover {
    background-color: #717268 !important;
    color: #333 !important;
}

/* Ao clicar ou manter pressionado (evita "rosa") */
.historia-botao:focus,
.historia-botao:active {
    background-color: #393935 !important;
    color: #fff !important;
    outline: none;
    box-shadow: none;
}