/* Shop21 Colors */
:root {
    --shop-purple: #5D2A8C;  /* Shop21 Purple */
    --shop-orange: #FF7F27;  /* Shop21 Orange */
    --tepuy-blue: #0088CC;   /* Tepuy21 Blue */
}
body{
  font-family: "Cal Sans", sans-serif;
  font-style: normal;
}

/* Custom Shop21 Classes */
.text-shop {
    color: var(--shop-purple) !important;
}

.text-orange {
    color: var(--shop-orange) !important;
}

.bg-shop {
    background-color: var(--shop-purple) !important;
}

.btn-shop {
    background-color: var(--shop-purple);
    border-color: var(--shop-purple);
    color: white;
}

.btn-shop:hover, 
.btn-shop:focus, 
.btn-shop:active {
    background-color: #4a2170 !important;
    border-color: #4a2170 !important;
    color: white;
}

.btn-outline-shop {
    color: var(--shop-purple);
    border-color: var(--shop-purple);
}

.btn-outline-shop:hover {
    background-color: var(--shop-purple);
    border-color: var(--shop-purple);
    color: white;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Capa semitransparente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

/* Parallax Effect */
.video-container {
    transform: translateZ(0);
    will-change: transform;
}

.hero-content {
    transform: translateZ(0);
    will-change: transform;
}

/* Feature Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-border {
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-border-sky {
    background-color: #0dcaf0;
}

.pricing-border-silver {
    background-color: #adb5bd;
}

.pricing-border-orange {
    background-color: var(--shop-orange);
}

/* Footer */
.footer-logo {
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        display: block !important;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 5px;
    }
    
    .video-hero {
        height: 80vh;
    }
}


/* AI Section Enhanced Styles */
    .ai-gradient-text {
        background: linear-gradient(45deg, #fff, #e0e7ff, #c7d2fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 3s ease-in-out infinite;
    }
    
    @keyframes shimmer {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .ai-icon-container {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    .ai-feature-card {
        display: flex;
        align-items: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        margin-bottom: 15px;
    }
    
    .ai-feature-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .ai-feature-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .ai-main-visual {
        position: relative;
        padding: 40px;
    }
    
    .ai-brain-container {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .ai-brain-core {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        z-index: 3;
    }
    
    .ai-pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: pulse 2s ease-out infinite;
    }
    
    @keyframes pulse {
        0% {
            width: 100px;
            height: 100px;
            opacity: 1;
        }
        100% {
            width: 200px;
            height: 200px;
            opacity: 0;
        }
    }
    
    .ai-orbit-1, .ai-orbit-2, .ai-orbit-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .ai-orbit-1 {
        width: 140px;
        height: 140px;
        animation: rotate 10s linear infinite;
    }
    
    .ai-orbit-2 {
        width: 170px;
        height: 170px;
        animation: rotate 15s linear infinite reverse;
    }
    
    .ai-orbit-3 {
        width: 200px;
        height: 200px;
        animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    .ai-orbit-dot {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .ai-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        animation: particle-float 6s ease-in-out infinite;
    }
    
    @keyframes particle-float {
        0%, 100% {
            transform: translateY(0px) scale(1);
            opacity: 0.4;
        }
        50% {
            transform: translateY(-20px) scale(1.2);
            opacity: 0.8;
        }
    }
    
    .ai-wave-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }
    
    .ai-wave-bottom svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 60px;
    }
    
    @media (max-width: 768px) {
        .ai-brain-container {
            width: 150px;
            height: 150px;
        }
        
        .ai-brain-core {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }
        
        .ai-orbit-1 { width: 110px; height: 110px; }
        .ai-orbit-2 { width: 130px; height: 130px; }
        .ai-orbit-3 { width: 150px; height: 150px; }
        
        .ai-icon-container {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }
    }

        /* Botón flotante de IA */
    .ai-floating-btn {
        position: fixed;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        transition: all 0.3s ease;
        animation: aiFloat 3s ease-in-out infinite;
    }
    
    .ai-floating-btn:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    }
    
    .ai-btn-icon {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 2px;
        animation: aiIconPulse 2s ease-in-out infinite;
    }
    
    .ai-btn-text {
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        letter-spacing: 0.5px;
    }
    
    .ai-btn-pulse {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        opacity: 0.7;
        animation: aiPulseRing 2s ease-out infinite;
    }
    
    @keyframes aiFloat {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(-5px);
        }
    }
    
    @keyframes aiIconPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
    
    @keyframes aiPulseRing {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    
    /* Responsive para móviles */
    @media (max-width: 768px) {
        .ai-floating-btn {
            width: 60px;
            height: 60px;
            right: 20px;
        }
        
        .ai-btn-icon {
            font-size: 1.5rem;
        }
        
        .ai-btn-text {
            font-size: 0.6rem;
        }
    }