/* ── Ecosystem CTA Section ── */

.ecosystem-cta-section {
    background-color: #001D24;
}

/* Image column: imagen pegada al fondo sin recuadro */
.ecosystem-cta-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.ecosystem-cta-img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    margin: 0 auto;
}

.ecosystem-cta-placeholder {
    width: 100%;
    height: 320px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text column */
.ecosystem-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Button */
.ecosystem-cta-btn {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--color-accent, #00c9a7);
    color: var(--color-accent, #00c9a7);
    font-family: var(--font-body, sans-serif);
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, color 0.3s ease;
}

.ecosystem-cta-btn:hover {
    background: var(--color-accent, #00c9a7);
    color: #001D24;
}

/* Responsive */
@media (max-width: 768px) {
    .ecosystem-cta-image-col {
        order: 2;
    }

    .ecosystem-cta-content {
        order: 1;
        padding: 3rem 2.5rem 1.5rem;
    }

    .ecosystem-cta-img {
        max-width: 320px;
    }
}
