/**
 * Vreo Integration Styles
 * Estilos para la integración del sitio especializado Vreo.net
 */

/* ===== VARIABLES ===== */
:root {
    --vreo-primary: #0066CC;
    --vreo-primary-dark: #004C99;
    --vreo-primary-light: #E3F2FD;
    --vreo-secondary: #2C3E50;
    --vreo-success: #28A745;
    --vreo-gradient: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    --vreo-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --vreo-shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --vreo-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== BANNER HERO ESPECIALIZADO ===== */
.vreo-specialist-banner {
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vreo-specialist-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vreo-specialist-banner .container {
    position: relative;
    z-index: 1;
}

.vreo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.vreo-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vreo-banner-text h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.vreo-banner-text .subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 32px;
}

.vreo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.vreo-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vreo-benefit-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.vreo-benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.vreo-benefit-content h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vreo-benefit-content p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.vreo-banner-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vreo-banner-cta .btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vreo-banner-cta .btn-white {
    background: white;
    color: var(--vreo-primary);
    border: none;
}

.vreo-banner-cta .btn-white:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.vreo-banner-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.vreo-banner-cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.vreo-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.vreo-banner-visual {
    position: relative;
}

.vreo-screenshot-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.vreo-screenshot-container:hover {
    transform: translateY(-8px);
}

.vreo-screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Decorative elements */
.vreo-banner-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vreo-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vreo-banner-text h2 {
        font-size: 36px;
    }
    
    .vreo-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vreo-specialist-banner {
        padding: 48px 0;
    }
    
    .vreo-banner-text h2 {
        font-size: 28px;
    }
    
    .vreo-banner-text .subtitle {
        font-size: 16px;
    }
    
    .vreo-benefit-item {
        padding: 12px;
    }
    
    .vreo-benefit-content h4 {
        font-size: 15px;
    }
    
    .vreo-benefit-content p {
        font-size: 12px;
    }
    
    .vreo-banner-cta {
        flex-direction: column;
    }
    
    .vreo-banner-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== STICKY BANNER ===== */
.vreo-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    color: white;
    padding: 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid rgba(255,255,255,0.2);
}

.vreo-sticky-banner.show {
    transform: translateY(0);
}

.vreo-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

/* Decorative gradient overlay */
.vreo-sticky-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vreo-sticky-content > * {
    position: relative;
    z-index: 1;
}

.vreo-sticky-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Icon badge */
.vreo-sticky-text::before {
    content: '🎯';
    font-size: 28px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.vreo-sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vreo-sticky-actions .btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vreo-sticky-actions .btn-white {
    background: white;
    color: #0066CC;
    border: none;
}

.vreo-sticky-actions .btn-white:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.vreo-sticky-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.vreo-sticky-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .vreo-sticky-banner {
        border-top-width: 2px;
    }
    
    .vreo-sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 16px 0;
    }
    
    .vreo-sticky-text {
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }
    
    .vreo-sticky-text::before {
        font-size: 24px;
    }
    
    .vreo-sticky-actions {
        width: 100%;
    }
    
    .vreo-sticky-actions .btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .vreo-sticky-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* ===== FEATURED CARD IN SERVICES ===== */
.vreo-featured-card {
    position: relative;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 2px solid var(--vreo-primary);
    overflow: hidden;
}

.vreo-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,102,204,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vreo-featured-badge {
    display: inline-block;
    background: var(--vreo-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vreo-featured-card .card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.vreo-featured-card h3 {
    color: var(--vreo-primary-dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.vreo-featured-card p {
    color: var(--vreo-secondary);
    margin-bottom: 20px;
}

.vreo-featured-card .btn {
    background: var(--vreo-primary);
    color: white;
    border: none;
}

.vreo-featured-card .btn:hover {
    background: var(--vreo-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--vreo-shadow-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vreo-animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.vreo-animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.vreo-animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.vreo-animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ===== UTILITY CLASSES ===== */
.vreo-gradient-text {
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vreo-highlight {
    background: var(--vreo-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--vreo-primary-dark);
    font-weight: 600;
}
