/* === ENHANCED CTA SECTION === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--champagne-gold);
    border-bottom: 5px solid var(--champagne-gold);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.97);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-darker);
    border: 3px solid var(--pure-white);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--primary-green);
    box-shadow: var(--shadow-dark);
    border: 3px solid var(--pure-white);
    animation: heartbeat 2s infinite;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green), var(--champagne-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textReveal 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: var(--text-medium);
    animation: textReveal 1s ease-out 0.2s both;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-medium);
    min-width: 320px;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--pure-white);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
    text-align: left;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.btn-cta:hover::before {
    transform: translateX(100%);
}

.btn-cta-whatsapp {
    background: linear-gradient(135deg, #178f44 0%, #128C7E 100%);
    color: var(--pure-white);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(23, 143, 68, 0.3);
}

.btn-cta-secondary {
    background: var(--gradient-green);
    color: var(--pure-white);
    border-radius: 50px;
}

.btn-cta-secondary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(10, 41, 31, 0.3);
}

.btn-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-content {
    flex-grow: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(8px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(201, 162, 77, 0.25);
    color: var(--text-dark);
    transition: all var(--transition-medium);
    min-width: 220px;
    animation: scaleIn 0.8s ease-out;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 77, 0.15);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--champagne-gold);
    transition: all var(--transition-medium);
}

.trust-badge:hover .badge-icon {
    background: rgba(201, 162, 77, 0.25);
    transform: scale(1.1);
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 77, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(10, 41, 31, 0.15) 0%, transparent 60%);
    z-index: 1;
    animation: floatUpDown 15s ease-in-out infinite alternate;
}