﻿
/* Background gradient identical to Tailwind */
.final-cta-section {
    background: linear-gradient(to bottom right, #10b981, #059669, #16a34a);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Blurred white circles */
.cta-blur-circle {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
    z-index: 1;
}

.circle-1 {
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
}

.circle-2 {
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
}

/* Typography */
.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    max-width: 700px;
    width: 100%; /* fuerza que ocupe todo el ancho posible */
    text-align: center; /* centra el texto */
    white-space: nowrap; /* mantiene en una sola línea */
}

/* Buttons */
.cta-btn-primary {
    background: white;
    color: #059669;
    padding: 16px 36px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

    .cta-btn-primary:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 18px 40px rgba(0,0,0,.25);
    }

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    border: 2px solid white;
    transition: all .3s ease;
}

    .cta-btn-secondary:hover {
        background: white;
        color: #059669;
        transform: translateY(-5px);
    }

/* Lucide icons */
.lucide-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.4;
    transition: transform .3s ease;
}

.cta-btn-primary:hover .lucide-icon,
.cta-btn-secondary:hover .lucide-icon {
    transform: scale(1.15);
}
