/* Específico da Home */


/* =========================== */
/* === HERO SPLIT GRID === */
/* =========================== */
/* Movido de inline em template-home.php */

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    width: 100%;
}

.hero-content {
    max-width: 100% !important;
    width: 100%;
}

.hero-form-wrapper {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.hero-form-col {
    min-width: 0;
}

.hero-split-grid h1 {
    text-align: left;
    margin: 0 0 16px;
}

.hero-split-grid .hero-sub {
    text-align: left;
    margin: 0 0 24px;
}

.hero-split-grid .hero-eyebrow {
    justify-content: flex-start;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .hero-split-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
    .hero-form-col {
        align-self: center;
    }
    .hero-form-wrapper {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .hero-split-grid h1,
    .hero-split-grid .hero-sub {
        text-align: center;
    }
    .hero-split-grid .hero-eyebrow {
        justify-content: center;
    }
    .trust-badges {
        justify-content: center !important;
    }
}


/* =========================== */
/* === FAQ ACCORDION === */
/* =========================== */
/* Movido de inline em template-home.php */

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #d4a853;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0a243d;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-item.active .faq-question {
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #d4a853;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
    }
    .faq-answer p {
        padding: 15px;
        font-size: 14px;
    }
}


/* =========================== */
/* === MAP EMBED (Contact) === */
/* =========================== */
.map-embed {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.map-embed iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-embed iframe {
        height: 200px;
    }
}
