/* ========================================
   SERVICIOS PROFESIONALES - ESTILOS ESPECÍFICOS
   Estilos específicos para la página de servicios profesionales
   ======================================== */

/* Hero Section */
.services-hero {
    position: relative !important;
    padding: 6rem 0 4rem !important;
    background: linear-gradient(135deg, rgba(5, 10, 48, 0.95), rgba(5, 10, 48, 0.98)) !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
}

.services-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 20% 80%, rgba(35, 61, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%) !important;
}

.hero-content-wrapper {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
}

.hero-layout-tight .hero-content-wrapper {
    grid-template-columns: 1fr 0.9fr !important;
    gap: 2rem !important;
    align-items: start !important;
}

.hero-text {
    color: white !important;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
}

.hero-text h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #00d4ff, #233dff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-text p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2rem !important;
}

.hero-stats {
    display: flex !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

.hero-stat {
    text-align: center !important;
}

.hero-stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #00d4ff !important;
    margin-bottom: 0.5rem !important;
}

.hero-stat-label {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
}

.hero-video {
    position: relative !important;
}

.hero-layout-tight .hero-video {
    justify-self: end !important;
    max-width: 420px !important;
    width: 100% !important;
    align-self: center !important;
    margin-top: 1.25rem !important;
}

.hero-layout-tight .hero-cta {
    margin-top: 0.75rem !important;
}

.hero-layout-tight .hero-cta .hero-cta-btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.8rem !important;
    min-height: 32px !important;
    border-radius: 999px !important;
}

.hero-layout-tight .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.service-card-v2 .btn-service-v2 {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    min-width: 110px !important;
    justify-content: center !important;
}

.service-card-v2 .btn-service-v2 i {
    font-size: 0.85rem !important;
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.2), rgba(0, 212, 255, 0.2)) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.video-placeholder:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3) !important;
}

.play-button {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.5rem !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1) !important;
}

.video-text {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0 !important;
    background: rgba(5, 10, 48, 0.05) !important;
}

.faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.faq-item {
    background: white !important;
    border-radius: 15px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

.faq-question {
    padding: 1.5rem 2rem !important;
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.05), rgba(0, 212, 255, 0.05)) !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #050a30 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.1), rgba(0, 212, 255, 0.1)) !important;
}

.faq-question i {
    transition: transform 0.3s ease !important;
    color: #233dff !important;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    background: white !important;
}

.faq-answer p {
    padding: 0 2rem 1.5rem !important;
    margin: 0 !important;
    color: rgba(5, 10, 48, 0.8) !important;
    line-height: 1.6 !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
}

/* Footer/End Section */
main {
    padding-bottom: 4rem !important;
}

.services-section {
    padding: 5rem 0 !important;
}

.testimonials-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, rgba(5, 10, 48, 0.05), rgba(5, 10, 48, 0.02)) !important;
}

.cta-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, #050a30, #0a1454) !important;
    color: white !important;
    text-align: center !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 1000 !important;
}

.whatsapp-button {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.whatsapp-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-tooltip {
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(5, 10, 48, 0.9) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
}

/* General Spacing */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.section-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.section-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
}

.section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #050a30 !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    font-size: 1.1rem !important;
    color: rgba(5, 10, 48, 0.7) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0 2rem !important;
        min-height: auto !important;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .hero-text h1 {
        font-size: 2.5rem !important;
    }

    .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
    }

    .hero-stat-value {
        font-size: 2rem !important;
    }

    .faq-container {
        padding: 0 1rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .whatsapp-float {
        bottom: 1rem !important;
        right: 1rem !important;
    }

    .whatsapp-tooltip {
        display: none !important;
    }
}

/* Cards de servicios premium */
.service-card-premium {
    background: rgba(5, 10, 48, 0.95) !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 380px !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}

.service-card-premium::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #233dff, #00d4ff) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.service-card-premium:hover {
    transform: translateY(-5px) !important;
    border-color: #00d4ff !important;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2) !important;
}

.service-card-premium:hover::before {
    transform: scaleX(1) !important;
}

.service-card-premium .service-badge {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
}

.service-card-premium .service-badge.nuevo {
    background: linear-gradient(135deg, #00d4ff, #233dff) !important;
    color: white !important;
}

.service-card-premium .service-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
}

.service-card-premium .service-icon-box {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    color: white !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

.service-card-premium:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3) !important;
}

.service-card-premium h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: white !important;
}

.service-card-premium .description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    flex-grow: 1 !important;
}

.service-card-premium .service-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

.service-card-premium .service-features li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.5rem !important;
}

.service-card-premium .service-features li i {
    color: #00d4ff !important;
    font-size: 0.7rem !important;
}

.service-card-premium .service-pricing {
    margin-top: auto !important;
}

.service-card-premium .price-box {
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.service-card-premium .price-current {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #00d4ff !important;
}

.service-card-premium .btn-service {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.service-card-premium .btn-service:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4) !important;
}

.service-card-premium.featured {
    border-color: #00d4ff !important;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2) !important;
    transform: scale(1.02) !important;
}

.service-card-premium.featured::after {
    content: '⭐ RECOMENDADO' !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #00d4ff !important;
    color: #050a30 !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    z-index: 3 !important;
}

/* Categorías de servicios */
.service-categories {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
}

.category-btn {
    padding: 0.8rem 1.2rem !important;
    background: rgba(35, 61, 255, 0.1) !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    color: #233dff !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.category-btn:hover {
    background: rgba(35, 61, 255, 0.2) !important;
    border-color: #233dff !important;
    transform: translateY(-2px) !important;
}

.category-btn.active {
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: white !important;
    border-color: #233dff !important;
}

.category-btn i {
    font-size: 0.8rem !important;
}

/* Carrusel de servicios */
.services-carousel-container {
    position: relative !important;
    overflow: hidden !important;
    margin: 2rem 0 !important;
}

.services-carousel-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.services-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(280px, 1fr) !important;
    gap: 1.25rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 0.5rem 0.25rem 0.75rem !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.services-carousel::-webkit-scrollbar {
    display: none !important;
}

.services-carousel .service-card-premium {
    flex: 0 0 320px !important;
    scroll-snap-align: start !important;
}

.services-carousel .service-card-v2 {
    scroll-snap-align: start !important;
}











/* Botones de navegación del carrusel */
.carousel-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
}

.carousel-btn {
    width: 45px !important;
    height: 45px !important;
    background: rgba(35, 61, 255, 0.1) !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #00d4ff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.carousel-btn:hover {
    background: rgba(35, 61, 255, 0.2) !important;
    border-color: #00d4ff !important;
    transform: scale(1.1) !important;
}






/* Calculator styles */
.calculator-container {
    background: rgba(5, 10, 48, 0.95) !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    margin: 2rem 0 !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.calculator-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.calculator-header h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
}

.calculator-options {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.calc-category {
    background: rgba(35, 61, 255, 0.1) !important;
    border: 1px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
}

.calc-category h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #00d4ff !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.calc-option {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    margin-bottom: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.calc-option:hover {
    background: rgba(35, 61, 255, 0.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.1) !important;
}

.calc-option.selected {
    background: rgba(35, 61, 255, 0.15) !important;
    border-color: #233dff !important;
    box-shadow: 0 0 0 2px rgba(35, 61, 255, 0.2) !important;
}

.calc-option.featured {
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.1), rgba(0, 212, 255, 0.1)) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
}

.calc-checkbox {
    width: 24px !important;
    height: 24px !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.calc-option.selected .calc-checkbox {
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    border-color: #233dff !important;
    color: white !important;
}

.calc-info {
    flex: 1 !important;
}

.calc-info h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 0.2rem !important;
}

.calc-info p {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
}

.calc-price {
    font-weight: 700 !important;
    color: #00d4ff !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.calc-total {
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: white !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    text-align: center !important;
    margin-top: 2rem !important;
}

.calc-total h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.calc-total .total-price {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #050a30 !important;
}

.calc-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin-top: 1.5rem !important;
}

.calc-btn {
    padding: 0.8rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.calc-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
}

.calc-btn.primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
}

.calc-btn.secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.calc-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-categories {
        gap: 0.5rem !important;
    }

    .category-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .services-carousel {
        gap: 1rem !important;
        padding: 0.5rem !important;
    }

    .services-carousel .service-card-premium {
        flex: 0 0 280px !important;
    }

    .services-nav {
        display: none;
    }

    .service-card-premium {
        padding: 1.2rem !important;
        min-height: 350px !important;
        margin: 0 auto !important;
    }

    .carousel-nav {
        margin-top: 1rem !important;
    }

    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .calculator-container {
        padding: 1.5rem !important;
        margin: 1rem !important;
    }

    .calculator-options {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .calc-option {
        padding: 0.6rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .calc-info h4 {
        margin-bottom: 0.25rem !important;
    }
}

/* CTA WhatsApp destacado */
.whatsapp-cta-pro {
    padding: 4rem 5%;
}

.whatsapp-cta-pro .cta-pro-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(85,36,183,0.92), rgba(56,11,96,0.95));
    border: 1px solid rgba(124,58,237,0.4);
    box-shadow: 0 30px 80px rgba(8,12,40,0.5);
}

.whatsapp-cta-pro .cta-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.35);
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.whatsapp-cta-pro .cta-pro-avatars {
    display: flex;
    align-items: center;
}

.whatsapp-cta-pro .cta-pro-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #fff;
    object-fit: cover;
}

.whatsapp-cta-pro .cta-pro-avatars img + img {
    margin-left: -10px;
}

.whatsapp-cta-pro h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
}

.whatsapp-cta-pro p {
    max-width: 680px;
    margin: 0 auto 1.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

.whatsapp-cta-pro .cta-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #12b981);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(18,185,129,0.3);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-cta-pro .cta-pro-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 700px) {
    .whatsapp-cta-pro .cta-pro-inner {
        padding: 2rem 1.5rem;
    }

    .whatsapp-cta-pro .cta-pro-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Calculator compact layout */
.calculator-compact .calculator-container {
    max-width: 860px !important;
    padding: 1.6rem !important;
}

.calculator-compact .calculator-header {
    margin-bottom: 1.2rem !important;
}

.calculator-compact .calculator-options {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    margin-bottom: 1.2rem !important;
}

.calculator-compact .calc-category {
    padding: 0.6rem 0.8rem !important;
    border-radius: 14px !important;
}

.calculator-compact .calc-summary {
    list-style: none;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-weight: 700 !important;
    color: #eaf2ff !important;
    cursor: pointer !important;
    padding: 0.4rem 0.2rem !important;
}

.calculator-compact .calc-summary::-webkit-details-marker {
    display: none;
}

.calculator-compact .calc-summary::after {
    content: "▾";
    margin-left: auto;
    color: rgba(0, 245, 255, 0.7);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.calculator-compact details[open] .calc-summary::after {
    transform: rotate(180deg);
}

.calculator-compact .calc-option {
    padding: 0.55rem 0.75rem !important;
    border-radius: 12px !important;
}

.calculator-compact .calc-info h4 {
    font-size: 0.9rem !important;
}

.calculator-compact .calc-info p {
    font-size: 0.8rem !important;
}

.calculator-compact .calc-price {
    font-size: 0.9rem !important;
}

.calculator-compact .calculator-total {
    margin-top: 1rem !important;
    padding: 1rem 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.8rem !important;
    flex-wrap: wrap !important;
}

.calculator-compact .total-label {
    font-size: 0.8rem !important;
}

.calculator-compact .total-value {
    font-size: 1.8rem !important;
}

.calculator-compact .total-savings {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.7rem !important;
}

/* Unify button sizing + palette on this page */
body.hp-servicios-profesionales .hp-btn-unify {
    padding: 0.75rem 1.4rem !important;
    font-size: 0.95rem !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 245, 255, 0.22) !important;
    box-shadow: 0 14px 34px rgba(35, 61, 255, 0.28) !important;
    text-transform: none !important;
}

body.hp-servicios-profesionales .hp-btn-unify:hover {
    filter: brightness(1.05) !important;
    transform: translateY(-2px) !important;
}

body.hp-servicios-profesionales .service-pricing-v2 .hp-btn-unify {
    padding: 0.32rem 0.6rem !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    min-height: 26px !important;
    box-shadow: none !important;
    background: rgba(8, 16, 60, 0.95) !important;
    border: 1px solid rgba(0, 245, 255, 0.18) !important;
    width: auto !important;
    max-width: 110px !important;
    justify-content: center !important;
}

body.hp-servicios-profesionales .service-pricing-v2 {
    gap: 0.5rem !important;
    align-items: center !important;
}

body.hp-servicios-profesionales .calculator-total .hp-btn-unify,
body.hp-servicios-profesionales .services-cta .hp-btn-unify {
    min-width: 220px !important;
}
