.cta-section {
    background: linear-gradient(135deg, #15171a 0%, #1D1E22 100%);
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(25, 165, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: glow-pulse-cta 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 255, 133, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: glow-pulse-cta 10s ease-in-out infinite reverse;
}

@keyframes glow-pulse-cta {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cta-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: cta-particle-float linear infinite;
}

.cta-particles .particle:nth-child(1) { width: 4px; height: 4px; background: #19A553; left: 10%; box-shadow: 0 0 10px #19A553; animation-duration: 12s; animation-delay: 0s; }
.cta-particles .particle:nth-child(2) { width: 6px; height: 6px; background: #8BFF85; left: 30%; box-shadow: 0 0 15px #8BFF85; animation-duration: 16s; animation-delay: -3s; }
.cta-particles .particle:nth-child(3) { width: 3px; height: 3px; background: #19A553; left: 50%; box-shadow: 0 0 8px #19A553; animation-duration: 14s; animation-delay: -6s; }
.cta-particles .particle:nth-child(4) { width: 5px; height: 5px; background: #8BFF85; left: 70%; box-shadow: 0 0 12px #8BFF85; animation-duration: 18s; animation-delay: -2s; }
.cta-particles .particle:nth-child(5) { width: 4px; height: 4px; background: #19A553; left: 90%; box-shadow: 0 0 10px #19A553; animation-duration: 15s; animation-delay: -8s; }
.cta-particles .particle:nth-child(6) { width: 7px; height: 7px; background: #8BFF85; left: 20%; box-shadow: 0 0 18px #8BFF85; animation-duration: 20s; animation-delay: -4s; border-radius: 30%; }

@keyframes cta-particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    5% { opacity: 0.8; }
    95% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    gap: 25px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.cta-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--verde-lift);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.cta-text {
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
    max-width: 400px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-map-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.cta-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 900px) {
    .cta-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .cta-content {
        padding: 40px 20px;
    }

    .cta-map-container {
        height: 300px;
        order: -1;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-map-container {
        height: 250px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--verde-lift);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.cta-text {
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-map {
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-map {
        height: 300px;
        order: -1;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-content {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-map {
        height: 250px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
