/* CTA Section */
.cta-section {
    background: linear-gradient(120deg, #6dbdc8 0%, #0b6578 100%);
    color: white;
    padding: 80px 0 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before, .cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.cta-section::before {
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.07);
}

.cta-section::after {
    bottom: -80px;
    right: -120px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.05);
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.92;
    margin-bottom: 42px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 40px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-main {
    background: #ffd700;
    color: #0b6578;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
}

.cta-main:hover {
    background: #ffe867;
    color: #224056;
    transform: translateY(-4px) scale(1.06);
}

.cta-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.15);
}

.cta-whatsapp:hover {
    background: #138A7E;
    color: #ffd700;
    transform: translateY(-4px) scale(1.06);
}

/* Responsive */
@media (max-width: 570px) {
    .cta-title {
        font-size: 1.35rem;
    }
    .cta-subtitle {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 13px 0;
    }
}
