/* =========================================
   VISUAL OPTIMIZATION - PHASE 2 (Refined)
   ========================================= */

/* 1. Hero Title Gradient - Force Override */
.hero_content h2 {
    background: linear-gradient(to right, #ffffff 0%, #0cbafc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0px 0px 20px rgba(12, 186, 252, 0.3) !important;
    font-weight: 800 !important;
    /* Make it thicker */
}

/* 2. Floating Animation for Server Image */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero_img img {
    animation: floating 4s ease-in-out infinite;
}

/* 3. Glassmorphism for "Soluções Completas" */
.single_feature_item_2 {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.single_feature_item_2:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #2cd63c !important;
    box-shadow: 0 15px 40px rgba(44, 214, 60, 0.2) !important;
}

.single_feature_item_2 h3 {
    color: #fff !important;
    font-size: 24px !important;
    margin: 25px 0 15px !important;
    font-weight: 700 !important;
}

.single_feature_item_2 p {
    color: #cdcfd9 !important;
    margin-bottom: 25px !important;
}

.single_feature_item_2 .feature_icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #0acffe 0%, #182dee 100%) !important;
    border-radius: 50% !important;
    margin: 0 auto !important;
    font-size: 32px !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(10, 207, 254, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 4. Pricing Highlight (Mais Vendido) */
.single_pakege .sticker.yellow_color {
    background: linear-gradient(to right, #f49b0e, #d92137) !important;
    box-shadow: 0 0 15px rgba(244, 155, 14, 0.6) !important;
}

.single_pakege.highlighted {
    border: 2px solid #f49b0e !important;
    transform: scale(1.05);
    /* Zoom effect */
    z-index: 10;
    box-shadow: 0 0 30px rgba(244, 155, 14, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    /* Slightly lighter bg */
}

/* 5. Floating WhatsApp Button - Ensure Visibility */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 40px !important;
    right: 40px !important;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px !important;
    text-align: center;
    font-size: 30px !important;
    box-shadow: 2px 2px 3px #999 !important;
    z-index: 9999 !important;
    /* Huge Index */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E !important;
    color: #fff !important;
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustment for WhatsApp */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 25px !important;
    }
}

/* 6. Spacing Fixes */
.testimonial_wrapper {
    margin-bottom: 0px !important;
    /* Reduced to 0 */
}

/* Force removal of Footer Padding */
footer.simple_clean,
.footer_top {
    padding-top: 20px !important;
    /* Reduced from potential 100px */
    margin-top: 0 !important;
}

/* 7. Testimonial Fixes */
.single_testionial p {
    color: #ffffff !important;
    /* Force white text */
    font-size: 16px !important;
}

.single_testionial .ticket i {
    color: #2cd63c !important;
    /* Green quote icon */
}

.section_title_main h2 {
    color: #ffffff !important;
}

/* Aggressive Space Removal */
.testimonial_area {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    min-height: auto !important;
}

.swiper-container.testimonial_wrapper {
    margin-bottom: 20px !important;
    /* Small buffer */
}

footer.simple_clean {
    margin-top: 0px !important;
    padding-top: 10px !important;
}
