/*----------------------------------------*/
/*  CTA SECTION STYLES
/*----------------------------------------*/
.cta-area {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 100px 0;
    z-index: 1;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-bg {
    background: var(--bd-theme-primary);
}

.cta-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.85);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.white-title .title {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.cta-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-btn-wrap .or {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.cta-btn-wrap .btn {
    min-width: 180px;
    text-align: center;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
}

.cta-btn-wrap .transparent-btn {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.cta-btn-wrap .transparent-btn:hover {
    background: #fff;
    color: var(--bd-theme-primary);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 24px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.floating-whatsapp .whatsapp-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp .whatsapp-button i {
    font-size: 28px;
    color: #fff;
}

.floating-whatsapp .whatsapp-text {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 0 10px;
    white-space: nowrap;
}

.floating-whatsapp .whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
} 