/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 21 2026 | 17:20:35 */
/* =========================
   LISTAGEM
========================= */

.faq-post,
.faq-listing,
.faq-listing .elementor-widget-container,
.faq-listing .jet-listing-grid,
.faq-listing .jet-listing-grid__items,
.faq-listing .jet-listing-grid__item,
.faq-listing .jet-listing-grid__item > .elementor {
    width: 100%;
    max-width: 100%;
}

.faq-listing .jet-listing-grid__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================
   CARD
========================= */

.faq-item {
    width: 100%;
    max-width: 760px;
    padding: 0 !important;

    background: #f5f5f5;
    border-radius: 12px;

    box-shadow:
        0 30px 42px rgba(0, 0, 0, 0.12),
        inset 0 2px 0 #ffffff;

    overflow: hidden;

    cursor: pointer;
}

/* O container está como boxed no Elementor */
.faq-item > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    padding: 32px !important;

    display: flex;
    flex-direction: column;

    gap: 0;
}

/* =========================
   TOPO
========================= */

.faq-toggle {
    width: 100%;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px;

    cursor: pointer;
}

.faq-question {
    flex: 1;
    min-width: 0;

    position: relative;

    padding-left: 12px;
}

/* Linha laranja do Figma */
.faq-question::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: #ff6c0c;
    border-radius: 999px;
}

.faq-question,
.faq-question * {
    margin: 0 !important;

    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;

    color: #4b5a68;
}

.faq-item .e-con-inner {
    gap: unset !important;
}
/* =========================
   BOTÃO
========================= */

.faq-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;

    flex: 0 0 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    border: 1.5px solid #ff6c0c;
    border-radius: 50%;

    cursor: pointer;
}
.faq-button .elementor-icon-wrapper {
    max-height: 24px !important;
}

.faq-button .elementor-widget-icon,
.faq-button .elementor-widget-container,
.faq-button .elementor-icon-wrapper,
.faq-button .elementor-icon {
    width: 24px;
    height: 24px;

    margin: 0 !important;
    padding: 0 !important;
}

.faq-button svg {
    width: 24px;
    height: 24px;
}

/* fechado */
.faq-icon-open {
    display: none !important;
}

/* =========================
   RESPOSTA
========================= */

.faq-content {
    width: 100%;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    margin-top: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        margin-top 0.35s ease;
}

.faq-answer,
.faq-answer * {
    margin: 0 !important;

    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;

    color: #4b5a68;
}

/* =========================
   ABERTO
========================= */

.faq-item.is-open .faq-content {
    max-height: 1000px;
    opacity: 1;

    margin-top: 20px;
}

.faq-item.is-open .faq-icon-closed {
    display: none !important;
}

.faq-item.is-open .faq-icon-open {
    display: block !important;
}

/* .faq-item.is-open .faq-button {
    box-shadow:
        0 12px 16px rgba(255, 108, 12, 0.10),
        0 4px 6px rgba(255, 108, 12, 0.15);
} */


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .faq-item > .e-con-inner {
        padding: 24px !important;
    }

    .faq-question,
    .faq-question * {
        font-size: 18px;
    }
	.faq-answer, .faq-answer * {
		font-size: 12px;
		    line-height: 120% !important;
	}
}