/* ============================================
   Sherlock Assistant Page Specific Styles
   ============================================ */

/* Hero Section con fondo animado */
.sherlock-assistant-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Textura animada de fondo */
.sherlock-assistant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    animation: textureMove 20s linear infinite;
    opacity: 0.6;
}

/* Partículas flotantes */
.sherlock-assistant-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 75px 75px, 120px 120px;
    animation: particlesFloat 25s linear infinite reverse;
    opacity: 0.4;
}

@keyframes textureMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 80px 80px, 30px 30px;
    }
}

@keyframes particlesFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 150px 150px, 75px 75px, 120px 120px;
    }
}

/* Contenido del hero */
.sherlock-assistant-hero .container {
    position: relative;
    z-index: 2;
}

.sherlock-assistant-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.sherlock-assistant-hero .lead {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sherlock-assistant-hero .text-primary {
    color: #ffffff !important;
}

/* Logo del producto en el hero */
.assistant-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.assistant-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.assistant-mockup img {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.assistant-mockup:hover img {
    transform: scale(1.05);
}

/* Botones mejorados */
.sherlock-assistant-hero .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sherlock-assistant-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Efectos de ondas para el fondo */
.wave-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 20%, transparent 21%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 20%, transparent 21%);
    background-size: 200px 200px;
    animation: waveMove 15s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes waveMove {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.1;
    }
}

/* Estilos para la sección de características con fondo azul */
.sherlock-assistant-hero + .sherlock-features {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.sherlock-assistant-hero + .sherlock-features h2 {
    color: #ffffff !important;
    font-weight: 700;
}

.sherlock-assistant-hero + .sherlock-features .lead {
    color: #ffffff !important;
}

.sherlock-assistant-hero + .sherlock-features .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sherlock-assistant-hero + .sherlock-features .feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sherlock-assistant-hero + .sherlock-features .feature-card h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sherlock-assistant-hero + .sherlock-features .feature-card p {
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.6;
}

.sherlock-assistant-hero + .sherlock-features .feature-icon i {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Estilos para la sección de beneficios */
.sherlock-benefits {
    background: #f8f9fa;
}

.benefit-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.benefit-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateX(10px);
}

.benefit-icon i {
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sherlock-assistant-hero {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .sherlock-assistant-hero h1 {
        font-size: 2.5rem;
    }
    
    .sherlock-assistant-hero .lead {
        font-size: 1.1rem;
    }
    
    .assistant-mockup {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .assistant-mockup img {
        max-width: 200px;
        max-height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sherlock-assistant-hero h1 {
        font-size: 2rem;
    }
    
    .assistant-mockup {
        padding: 1.5rem;
    }
    
    .assistant-mockup img {
        max-width: 150px;
        max-height: 150px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
} 