.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.whatsapp-float.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    margin-top: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (min-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 767px) {
    .progress-wrap {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .offcanvas {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }

    .offcanvas-backdrop {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .offcanvas.show {
        transform: translateX(0);
        transition: transform 0.3s ease-in-out;
    }

    .offcanvas {
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.vl-banner-area2 {
    position: relative;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.vl-banner-area2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.vl-banner-area-content-2 {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .banner-video {
        width: 100%;
        height: 100%;
    }
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: #333;
    font-weight: bold;
}

.service-details ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-details ul li:before {
    content: "✓";
    color: #25d366;
    position: absolute;
    left: 0;
}

.treatment-time {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.vl-cta-btn1 {
    background-color: #25d366;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.vl-cta-btn1:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.05);
}

.vl-cta-btn1 i {
    margin-left: 10px;
}

.modal-footer {
    border-top: none;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.vl-talkbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #25d366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.vl-talkbtn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    animation: none;
}

.vl-talkbtn i {
    margin-right: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estilos para o feedback visual do link ativo no menu mobile */
.vl-menu ul li a.active {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(0.98);
    transition: all 0.2s ease;
}

.vl-menu ul li a {
    transition: all 0.2s ease;
}

/* Estilos do Menu Mobile */
.offcanvas {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease-in-out;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mobile-menu ul li {
    margin-bottom: 1rem;
}

.mobile-menu ul li a {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:focus {
    color: #25d366;
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #25d366;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #25d366;
    color: white;
    transform: translateY(-3px);
}

/* Feedback visual ao clicar nos links */
.mobile-menu ul li a.active {
    color: #25d366;
    transform: translateX(5px);
}
