.opportunity-section {
    background: linear-gradient(180deg, #0b0c10 0%, #020409 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.opportunity-container {
    max-width: 900px;
    margin: 0 auto;
}

.opportunity-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #00ffe0, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.opportunity-list {
    text-align: left;
    margin: 0 auto 40px;
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
}

.opportunity-list li {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.opportunity-list li:hover {
    background: rgba(0, 255, 224, 0.1);
}

.opportunity-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.25);
}

/* Responsivo */
@media (max-width: 768px) {
    .opportunity-title {
        font-size: 1.7rem;
    }

    .opportunity-list {
        font-size: 1rem;
    }
}