.elementor-2430 .elementor-element.elementor-element-8accb7a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-c901a5c *//* --- VARIÁVEIS E CONFIGURAÇÕES GLOBAIS --- */
:root {
    --primary: #A8BA9A; /* Verde Pastel */
    --secondary: #E9E2D7; /* Bege */
    --bg-light: #F9F8F6;
    --text-dark: #4A4A4A;
    --white: #ffffff;
    --radius: 24px;
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    color: #2D2D2D; 
    line-height: 1.2;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 5%; 
}

.section-padding { 
    padding: 80px 0; 
}

.bg-alt { 
    background-color: var(--secondary); 
    padding: 80px 0; 
}

.text-center { 
    text-align: center; 
    margin-bottom: 40px; 
}

/* --- NAVBAR & LOGO --- */
.navbar { 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    background: rgba(249, 248, 246, 0.95); 
    z-index: 100; 
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo h3 { font-size: 1.1rem; margin: 0; }
.logo p { font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
    align-items: center;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 600; 
    font-size: 0.85rem; 
}

/* --- HERO SECTION --- */
.hero { 
    display: flex; 
    align-items: center; 
    min-height: 80vh; 
    gap: 50px; 
    padding: 60px 0; 
}

.hero-content { flex: 1.2; }
.hero-image { flex: 0.8; }

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-content h2 { font-size: 1.2rem; font-weight: 400; margin-bottom: 25px; color: #666; }

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-image img { 
    width: 100%; 
    border-radius: var(--radius); 
    object-fit: cover; 
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

/* --- BOTÕES --- */
.btn-primary, .btn-secondary { 
    padding: 14px 28px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-primary { background: var(--primary); color: white; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(168, 186, 154, 0.3); }

.btn-secondary { border: 2px solid var(--primary); color: var(--text-dark); }
.btn-secondary:hover { background: var(--primary); color: white; }

/* --- SEÇÃO SOBRE & BENEFÍCIOS (TWO COL) --- */
.two-col, .benefits-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

/* --- CARDS SERVIÇOS (GRID-4) --- */
.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 20px; 
}

.card { 
    background: var(--white); 
    padding: 35px 25px; 
    border-radius: var(--radius); 
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    height: 100%;
}

.card p { flex-grow: 1; margin-bottom: 20px; font-size: 0.95rem; }
.card .btn-primary { width: 100%; }

/* --- PASSOS --- */
.steps-wrapper { 
    display: flex; 
    justify-content: space-between; 
    gap: 20px; 
    margin-top: 50px; 
}

.step { 
    text-align: center; 
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.step span { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 60px; 
    height: 60px; 
    background-color: var(--primary); 
    color: white; 
    border-radius: 50%; 
    font-size: 1.2rem;
    font-weight: 700; 
    margin-bottom: 15px; 
}

/* --- SEÇÃO 05: TRANSFORMAÇÃO (BENEFÍCIOS) --- */
.benefits-section { 
    padding: 100px 0; /* Aumentado o respiro vertical */
    background-color: var(--bg-light); 
}

.benefits-content h2 {
    margin-bottom: 25px; /* Espaço após o título principal */
}

.benefits-list { 
    list-style: none; 
    margin-bottom: 30px; /* Espaço antes da frase destaque */
}

.benefits-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    margin-bottom: 15px; /* Espaço equilibrado entre os itens */
}

.benefits-list .dot { 
    width: 8px; 
    height: 8px; 
    background: var(--primary); 
    border-radius: 50%; 
    margin-top: 10px; 
    flex-shrink: 0;
}

.highlight-quote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

/* --- DEPOIMENTOS (SESSÃO 06) --- */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--secondary);
}

/* --- FORMULÁRIOS & FAQ --- */
details { background: white; margin-bottom: 10px; padding: 20px; border-radius: 15px; cursor: pointer; }
summary { font-weight: 600; }
input, textarea { width: 100%; padding: 15px; margin-bottom: 15px; border-radius: 10px; border: 1px solid #eee; font-family: inherit; }

/* --- FOOTER --- */
.footer { background: #2D2D2D; color: white; padding: 50px 0; }

/* --- RESPONSIVIDADE --- */

@media (max-width: 992px) {
    .two-col, .benefits-grid, .testimonials-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .hero { flex-direction: column; text-align: center; padding: 40px 0; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-btns { justify-content: center; }

    .steps-wrapper { flex-direction: column; gap: 40px; }
    
    .testimonial-card { max-width: 500px; margin: 0 auto; }

    /* Ajuste de espaço na Sessão 05 Mobile */
    .benefits-section { padding: 80px 0; }
    .benefits-list li { margin-bottom: 10px; } /* Itens mais próximos no celular */
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2rem; }
    .container { padding: 0 7%; }
    
    .hero-btns .btn-primary, .hero-btns .btn-secondary {
        width: 100%; 
    }
}/* End custom CSS */