/* Pricing CSS - v14000.0 (Compact Spacing & Grouping) */

/* Global Variables */
:root {
    --primary-color: #0d00e9;
    --secondary-color: #ffffff;
    --text-color: rgba(255, 255, 255, 0.8);
    --light-bg: #0a0b1e;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   GLOBAL STYLES (Dark Theme for ALL Devices)
   ========================================================================== */

/* Section Background */
#servicios {
    padding: 6rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #000000 !important;
    background-image:
        radial-gradient(circle at top left, rgba(13, 0, 233, 0.3) 0%, transparent 45%),
        radial-gradient(circle at bottom right, rgba(13, 0, 233, 0.3) 0%, transparent 45%) !important;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Layout - 4 Columns */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 4rem !important;
}

/* Card Styles */
.pricing-card {
    background: rgba(8, 8, 35, 0.10) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 50, 255, 0.35) !important;
    border-radius: 24px !important;
    padding: 3rem 1.5rem !important;
    text-align: center !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    border-color: #0044ff !important;
    box-shadow: 0 20px 50px rgba(0, 20, 100, 0.3) !important;
    background: rgba(10, 10, 40, 0.4) !important;
}

/* Plan Name */
.pricing-card__name {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 2rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

/* Big Number Speed */
/* Big Number Speed */
.pricing-card__speed {
    font-size: 5.5rem !important;
    font-weight: 900 !important;
    color: white !important;
    line-height: 0.8 !important;
    margin-bottom: 2.1rem !important;
    /* Reduced margin (Area 1) */
    position: relative !important;
    display: inline-block !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -2px !important;
}

/* "megas" Pill */
/* "megas" Pill */
.pricing-card__unit {
    background: #0004ff !important;
    color: white !important;
    font-size: 1rem !important;
    padding: 4px 12px !important;
    border-radius: 100px !important;
    font-weight: 800 !important;
    text-transform: lowercase !important;
    position: absolute !important;
    right: -15px !important;
    /* Moved left to overlap zero */
    top: 50% !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 4px 15px rgba(0, 4, 255, 0.4) !important;
    z-index: 2 !important;
}

/* ============================
   SHINE ANIMATION (Plan Ultra)
   ============================ */
.pricing-card__shine-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 0 !important;
    /* Lowered to be behind button */
    pointer-events: none !important;
    border-radius: 24px !important;
}

.pricing-card__shine {
    position: absolute !important;
    top: -100% !important;
    /* Huge vertical buffer */
    left: 0 !important;
    width: 300% !important;
    /* Huge width */
    height: 300% !important;
    /* Huge height */
    background: linear-gradient(135deg,
            transparent 0%,
            transparent 44%,
            /* Tightened slightly (40 -> 44) */
            rgba(255, 255, 255, 0.65) 50%,
            transparent 56%,
            /* Tightened slightly (60 -> 56) */
            transparent 100%) !important;
    transform: translateX(-150%);
    animation: shine-sweep 3s infinite ease-in-out !important;
}

/* Ensure Button is ON TOP */
.pricing-card__btn {
    position: relative !important;
    z-index: 10 !important;
    /* Higher than shine */
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-150%);
    }

    40% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ============================
   ISOLATED HERO COMPONENTS
   ============================ */
.hero-solo-speed {
    font-size: 8.6rem !important;
    /* Increased another 30% to total ~56% increase */
    font-weight: 900 !important;
    color: white !important;
    line-height: 0.8 !important;
    margin-bottom: -1.5rem !important;
    /* Negative margin to pull price up 15% more */
    position: relative !important;
    display: inline-block !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -2px !important;
}

.hero-solo-badge {
    background: #0004ff !important;
    color: white !important;
    font-size: 1.6rem !important;
    /* Increased another 30% */
    padding: 4px 12px !important;
    border-radius: 100px !important;
    font-weight: 800 !important;
    text-transform: lowercase !important;
    position: absolute !important;
    right: -15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 4px 15px rgba(0, 4, 255, 0.4) !important;
    z-index: 2 !important;
}

/* Move Price Wrapper Up 20% */
.pricing-card__price-wrapper-hero {
    transform: translateY(-20%) !important;
}

/* Move CTA and Stats Up 15% */
.hero__cta,
.hero__stats {
    transform: translateY(-15%) !important;
}

/* DuoPack Tweaks */
.pricing-card__speed--small {
    font-size: 3.5rem !important;
    /* Increased to match image */
    letter-spacing: -2px !important;
    /* Tighter to prevent overflow */
    margin-top: 1rem !important;
    margin-bottom: 2.5rem !important;
    /* Increased to push price down to alignment line */
}

.pricing-card__unit--popular {
    right: -20px !important;
    top: -20px !important;
    background: #0004ff !important;
}

/* Price Section */
.pricing-card__price-wrapper {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 2rem !important;
    color: white !important;
    position: relative !important;
    height: 3.5rem !important;
}

/* Left Column: prefix (SOLO + $) */
.pricing-card__price-prefix {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* Grouped center (Area 2) */
    gap: 2px !important;
    /* Glued close */
    align-items: flex-end !important;
    padding: 0 !important;
}

/* "SOLO" Label */
.pricing-card__promo {
    background: #0004ff !important;
    color: white !important;
    font-size: 0.49rem !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
}

/* Currency */
.pricing-card__currency {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-right: 2px !important;
    /* Align nicely with box above */
}

/* Price Number */
.pricing-card__price {
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -2px !important;
    display: flex !important;
    align-items: center !important;
}

/* Right Column: suffix */
.pricing-card__price-suffix {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 2px 0 !important;
}

/* Decimal */
.pricing-card__decimal {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.pricing-card__period {
    font-size: 0.7rem !important;
    opacity: 0.6 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

/* GRADIENT LINE */
.pricing-card__divider {
    display: block !important;
    width: 90% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%) !important;
    margin: 0 auto 2rem auto !important;
    border: none !important;
}

/* Features List */
.pricing-card__features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
    text-align: left !important;
    width: 100% !important;
    flex-grow: 1 !important;
    padding-left: 10px !important;
}

.pricing-card__feature {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

.pricing-card__feature-icon {
    color: #0033ff !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
}

/* Button */
.pricing-card__btn {
    width: 100% !important;
    padding: 0.8rem !important;
    /* Reduced thickness from 1.2rem */
    background: #0004ff !important;
    color: white !important;
    text-decoration: none;
    border-radius: 12px !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    transition: var(--transition) !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: auto !important;
}

.pricing-card__btn:hover {
    background: #0000cc !important;
    transform: scale(1.02) !important;
}

/* ==========================================================================
   RESPONSIVE (Mobile Overrides)
   ========================================================================== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 2rem !important;
    }
}

/* Mobile overrides moved to css/mobile.css */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0 1.5rem !important;
        gap: 3rem !important;
    }
}