/* =============================================
   WIREVET - Modern Style Overrides
   Solo estilos personalizados agregados al sitio
   ============================================= */

/* Section Blocks - alternating backgrounds */
.wv-block-light {
    background: #f2f8fa;
    padding: 50px 0;
}
.wv-block-white {
    background: #fff;
    padding: 50px 0;
}
.wv-block-light .our-services,
.wv-block-white .our-services,
.wv-block-light .our-services > div,
.wv-block-white .our-services > div {
    background: transparent !important;
}
.wv-block-light .section-padding0,
.wv-block-white .section-padding0 {
    padding: 0 !important;
}
.wv-block-light .border-buttom,
.wv-block-white .border-buttom {
    border-bottom: none !important;
}
.wv-section-number {
    display: inline-block;
    background: #d9eff7;
    color: #3a9cb0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}
.wv-block-white .wv-section-number {
    background: #fff0e0;
    color: #fd7e14;
}

/* Service card title hover */
.our-services .single-services .services-cap a:hover,
.our-services .single-services .services-cap h3 a:hover,
.our-services .single-services .services-cap h5 a:hover {
    color: #3a9cb0;
    -webkit-text-fill-color: #3a9cb0;
}

.single-services:hover .services-ion span {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

/* Hero CTA Primary Button - Eye-catching */
.hero-btn-cta {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9a44 50%, #fd7e14 100%) !important;
    background-size: 200% 200% !important;
    border: none !important;
    padding: 18px 42px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(253, 126, 20, 0.45) !important;
    animation: ctaPulse 2s ease-in-out infinite, ctaShimmer 3s linear infinite;
    text-transform: uppercase;
}
.hero-btn-cta:hover {
    background: linear-gradient(135deg, #e06b0a 0%, #fd7e14 50%, #ff9a44 100%) !important;
    box-shadow: 0 14px 40px rgba(253, 126, 20, 0.6) !important;
    transform: translateY(-4px) scale(1.05) !important;
}
.hero-btn-cta:active {
    transform: translateY(-1px) scale(1.02) !important;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(253, 126, 20, 0.45); }
    50% { box-shadow: 0 8px 45px rgba(253, 126, 20, 0.7), 0 0 20px rgba(253, 126, 20, 0.3); }
}
@keyframes ctaShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Hero Buttons Hover Effects */
.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.hero-btn:hover::before {
    width: 400px;
    height: 400px;
}
.hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(58,156,176,0.5) !important;
    color: #fff !important;
}
.hero-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(58,156,176,0.4) !important;
}
