
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.pulse {
    animation: pulse 1.6s infinite;
}

.ctc-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(37,211,102,0.8);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    backdrop-filter: blur(6px);
    box-shadow:0 0 12px #0007;
    z-index:99999;
    transition:.2s;
}
.ctc-whatsapp-btn:hover {
    transform: scale(1.1);
}
.ctc-whatsapp-btn img {
    width:34px;
}

.ctc-form-wrap {
    position:fixed;
    bottom:100px;
    right:20px;
    width:280px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.ctc-form-box {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding:18px;
    border-radius:14px;
    width:100%;
    box-shadow:0 0 16px #0004;
}

.ctc-form-box h3 {
    font-size:14px;
    margin-bottom:10px;
    text-align:right;
}

.ctc-form-box input {
    width:100%;
    margin:5px 0;
    padding:9px;
    border-radius:8px;
    border:1px solid #ccc;
    text-align:right;
}

.ctc-form-box button {
    width:100%;
    margin-top:8px;
    padding:10px;
    background:#128c7e;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:.2s;
}
.ctc-form-box button:hover {
    background:#0e6b5e;
}

.ctc-close {
    float:left;
    cursor:pointer;
    background:#d33;
    color:#fff;
    width:22px;
    height:22px;
    text-align:center;
    line-height:22px;
    border-radius:50%;
    font-size:14px;
    margin-bottom:5px;
    transition:.2s;
}
.ctc-close:hover {
    background:#b11;
}
