:root {
    --primary-dark: #0b1e36;
    --primary-light: #16365c;
    --accent: #d49a44;
    --accent-hover: #b88337;
    --bg-light: #fdfaf6;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth; 
    scroll-padding-top: 80px; 
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 { color: var(--primary-dark); }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary:hover { background-color: var(--primary-light); transform: translateY(-2px); }

.btn-large { padding: 16px 32px; font-size: 1.1rem; background-color: var(--accent); }
.btn-large:hover { background-color: var(--accent-hover); color: var(--white); }

header {
    background-color: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: bold; color: var(--primary-dark); font-size: 1.2rem; line-height: 1.1; }
.logo i { font-size: 2rem; color: var(--accent); }
.logo small { font-weight: 400; font-size: 0.8rem; letter-spacing: 1px; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul { display: flex; list-style: none; gap: 24px; }
nav a { font-weight: 500; font-size: 0.95rem; }
nav a:hover { color: var(--accent); }

.hero { padding: 80px 0; overflow: hidden; }
.hero-container { display: flex; align-items: center; gap: 40px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }

.hero-image { flex: 1; border-radius: 20px; overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: auto; display: block; border-radius: 20px; }
.hero-image::before {
    content: ''; position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(212,154,68,0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; }

.services, .how-it-works, .why-invest { padding: 80px 0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
    background: var(--white); padding: 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-dark);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2rem; color: var(--primary-dark); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 20px; font-size: 1.3rem; }
.service-card ul { list-style: none; }
.service-card li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--text-muted); }
.service-card li i { color: var(--accent); margin-top: 4px; }

.steps-container { display: flex; justify-content: space-between; position: relative; }
.steps-container::before {
    content: ''; position: absolute; top: 35px; left: 50px; right: 50px;
    height: 2px; border-top: 2px dashed var(--accent); z-index: 1;
}
.step { flex: 1; text-align: center; z-index: 2; position: relative; padding: 0 15px; }
.step-icon {
    width: 70px; height: 70px; background: var(--primary-dark); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px; position: relative;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

.why-invest { background-color: var(--white); }
.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.invest-item { display: flex; gap: 20px; margin-bottom: 30px; }
.invest-icon {
    width: 50px; height: 50px; background: var(--primary-dark); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.invest-item h4 { margin-bottom: 5px; }
.invest-item p { color: var(--text-muted); font-size: 0.95rem; }

.invest-image { position: relative; }
.invest-image img { width: 100%; border-radius: 12px; }
.invest-highlight {
    background: var(--primary-dark); color: var(--white); padding: 20px; border-radius: 12px;
    display: flex; gap: 15px; align-items: center; position: absolute; bottom: -20px; right: -20px; left: 20px;
    border-left: 4px solid var(--accent);
}
.invest-highlight i { font-size: 2rem; color: var(--accent); }
.invest-highlight p { font-size: 0.9rem; margin: 0; }
.invest-highlight strong { color: var(--accent); }

.cta-section { background-color: var(--primary-dark); padding: 60px 0; }
.cta-box {
    background: transparent; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    padding: 50px 30px; text-align: center; color: var(--white); max-width: 800px; margin: 0 auto;
}
.cta-box h2 { color: var(--white); margin-bottom: 15px; font-size: 2rem; }
.cta-box p { color: #ccc; margin-bottom: 30px; }

footer { background-color: var(--primary-dark); color: var(--white); padding: 60px 0 20px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.white-logo { color: var(--white); margin-bottom: 20px; }
.brand-col p { color: #aaa; font-size: 0.9rem; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li, .footer-col a { color: #aaa; margin-bottom: 12px; font-size: 0.9rem; display: flex; gap: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.cnpj { font-size: 0.8rem; color: #666; }

.animate-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-up.visible, .animate-left.visible, .animate-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    nav {
        display: none; 
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .invest-item {
    justify-content: center;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
    .invest-highlight {
    position: relative;
    bottom: 0; right: 0; left: 0;
    margin-top: 20px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
 
    
    nav.active {
        display: block;
        max-height: calc(100vh - 80px); 
        overflow-y: auto; 
    }

    .hero-buttons {
    justify-content: center;
    flex-wrap: wrap; 
}

    .header-right { flex-direction: column; width: 100%; align-items: stretch; gap: 20px;}
    .header-right ul { flex-direction: column; width: 100%; text-align: center; gap: 15px; }
    .header-right ul li a { display: block; padding: 12px 10px; font-size: 1.1rem; }
    
    /* Layout Geral */
    .hero { padding: 40px 0; }
    .hero-container { flex-direction: column; text-align: center; }
   
    .invest-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
    
    .steps-container { flex-direction: column; gap: 40px; }
    .steps-container::before { display: none; }
    
    .footer-container { grid-template-columns: 1fr 1fr; }
    
    .services, .how-it-works, .why-invest { padding: 50px 0; }
    .section-title h2 { font-size: 1.8rem; }

     .invest-image img {
     display: none;
     }
     
     .hero-text,
    .hero-image {
        width: 100%;
    }
    .hero-container {
    flex-wrap: wrap;
}

}


@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col li { justify-content: center; }
    
    .invest-item { flex-direction: column; align-items: center; text-align: center; }
    
    .invest-highlight { 
        position: relative; 
        bottom: 0; right: 0; left: 0; 
        margin-top: 20px; 
        flex-direction: column; 
        text-align: center;
        max-width: 400px;
    }
    
    .cta-box { padding: 30px 20px; }
    .cta-box h2 { font-size: 1.5rem; }
}