/* --- Hero Section --- */
.invest-hero {
    padding: 140px 20px 60px 20px;
    text-align: center;
    color: #fff;
}

.invest-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.invest-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.invest-hero p {
    font-size: 1.2em;
    color: #ccc;
    line-height: 1.6;
}

/* --- Target Audience Section --- */
.invest-target-audience {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.target-card {
    background-color: #261C1C;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #444;
    color: #fff;
}

.icon-wrapper {
    font-size: 2.5em;
    color: #e31500;
    margin-bottom: 20px;
}

.target-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.target-card p {
    color: #ccc;
    line-height: 1.6;
}

/* --- Features Section --- */
.invest-features {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.features-list h2 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 30px;
}

.features-list ul {
    list-style: none;
    padding: 0;
    color: #ccc;
}

.features-list li {
    font-size: 1.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #e31500;
    margin-right: 15px;
    font-size: 1.2em;
}

.features-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #333;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-style: italic;
}
.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* --- CTA Section --- */
.invest-cta {
    background-color: #261C1C;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 15px;
}

.invest-cta h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.invest-cta p {
    font-size: 1.1em;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1EAE54;
    transform: translateY(-3px);
}


/* --- Responsive Design --- */
@media (min-width: 768px) {
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}