/* public/css/caracteristicas.css - Premium Design System */

:root {
    --feature-primary: #3b82f6;
    --feature-accent: #60a5fa;
    --feature-bg-dark: #0f172a;
    --feature-bg-card: rgba(255, 255, 255, 0.03);
    --feature-border: rgba(255, 255, 255, 0.1);
    --feature-glow: rgba(59, 130, 246, 0.3);
    --organic-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    background-color: #020617;
    overflow-x: hidden;
    padding-top: 0;
}

/* Hero Section */
.features-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #1e293b 0%, #020617 100%);
    overflow: hidden;
}

.hero-visual-container {
    position: relative;
    perspective: 1000px;
}

.hero-main-visual {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 50px var(--feature-glow);
    border: 1px solid var(--feature-border);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s var(--organic-easing);
}

.hero-visual-container:hover .hero-main-visual {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--feature-primary) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Glass Cards */
.glass-feature-card {
    background: var(--feature-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--feature-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s var(--organic-easing);
    position: relative;
    overflow: hidden;
}

.glass-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--feature-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--feature-primary), var(--feature-accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: white;
    font-size: 1.8rem;
}

/* Integration Section */
.integration-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.integration-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.anim-float {
    animation: float 6s ease-in-out infinite;
}

/* Utility */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-premium {
    background: rgba(59, 130, 246, 0.1);
    color: var(--feature-accent);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}