.elementor-8 .elementor-element.elementor-element-b2e9a0d{--display:flex;}/* Start custom CSS *//* EXPERTISE GRID INTEGRATION – SAFE MODE */
.expertise h3 {
    margin-top: 60px;
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
}

.expertise h3 span {
    font-weight: 300;
    color: #cccccc;
    text-transform: none;
    letter-spacing: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.expertise-card {
    border: 1px solid #333;
    padding: 30px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.expertise-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #fafafa;
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.expertise-card p strong {
    color: #fafafa;
    font-weight: 500;
}
/* Menu no Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    nav a {
        font-size: 14px;
        text-align: left;
        letter-spacing: normal;
    }

    .cta-button {
        margin-top: 20px;
        padding: 12px 30px;
        width: 100%;
    }
}

/* Ajuste do Hero (Mobile) */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero .subheadline {
        font-size: 16px;
    }

    .cta-button {
        margin-top: 20px;
        padding: 12px 30px;
        width: 100%;
    }
}

/* Ajustes no Grid da Expertise (Mobile) */
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 20px;
    }

    .expertise-card h4 {
        font-size: 20px;
    }

    .expertise-card p {
        font-size: 14px;
    }
}/* End custom CSS */