/* Aurora Hero Section */
.aurora-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
   /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
       background: linear-gradient(135deg, #222222bd 0%, #000000 100%);
    min-height: 600px; /* ✅ Altura mínima para evitar problemas */
}

.aurora-canvas { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block; /* ✅ Asegurar que se muestre como block */
    pointer-events: none; /* ✅ No interferir con interacciones */
}

.aurora-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
    background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero.primary {

    background: linear-gradient(45deg, #00f5ff, #181818);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.btn-hero.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Floating Cards */
.floating-cards {
    position: relative;
    width: 100%;
    height: 400px;
}

.card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

.card-3 {
    top: 70%;
    right: 5%;
    animation-delay: 4s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-content i {
    font-size: 2rem;
    color: #00f5ff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto 0.5rem;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

/* Animated Tabs */
.featured-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    background: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #64748b;
    font-weight: 600;
}

.tab-btn.active {
    color: #7f7f7f;
    background: linear-gradient(45deg, #00000000, #c1c0c052);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.tab-btn.active .tab-indicator {
    width: 80%;
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.featured-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.featured-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-item:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-item:hover .item-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    background: white;
}

.item-content {
    padding: 1.5rem;
}

.item-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #64748b;
    margin-bottom: 1rem;
    display: none;
}

.item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.item-meta span {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
}

/* Badges */
.instructor-badge,
.routine-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* AI Features Section */
.ai-features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    position: relative;
}

.icon-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /*background: linear-gradient(45deg, #00f5ff, #ff00ff);*/
    background: linear-gradient(45deg, #00f5ff00, #181818);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    animation: pulse 2s infinite;
}

.icon-glow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: -1;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #949494f7, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list i {
    color: #00f5ff;
}

.btn-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem;
    /*background: linear-gradient(45deg, #00f5ff, #ff00ff);*/
    background: linear-gradient(45deg, #00f5ff00, #181818);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

/* AI Animations */
.neural-network {
    position: relative;
    width: 100px;
    height: 100px;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00f5ff;
    animation: pulse 2s infinite;
}

.node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.node:nth-child(2) { bottom: 0; left: 20%; }
.node:nth-child(3) { bottom: 0; right: 20%; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    animation: flow 2s infinite;
}

.connection:nth-child(4) {
    top: 20px;
    left: 45%;
    width: 30px;
    transform: rotate(45deg);
}

.connection:nth-child(5) {
    top: 20px;
    right: 45%;
    width: 30px;
    transform: rotate(-45deg);
}

.connection:nth-child(6) {
    bottom: 20px;
    left: 30%;
    width: 40px;
}

/* Nutrition Animation */
.food-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.food-icon {
    font-size: 2rem;
    text-align: center;
    animation: bounce 2s infinite;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #676767;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 600;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes flow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-cards {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-nav {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .tab-btn {
        justify-content: center;
    }
}

/* WorkFit Info Section */
.workfit-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: visible; /* Cambiar de hidden a visible */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #676767, #080808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Nueva estructura de contenido */
.info-content-wrapper {
    position: relative;
    min-height: 500px;
    margin: 0 auto;
    max-width: 800px;
}

/* Contenedor de elementos flotantes - POSICIONADO RELATIVO AL WRAPPER */
.floating-elements-container {
    position: absolute;
    top: -50px;
    left: -100px;
    right: -100px;
    bottom: -50px;
    pointer-events: none;
    z-index: 1; /* Menor que el contenido principal */
}

.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    opacity: 0.7;
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    pointer-events: auto;
    will-change: transform;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-element:hover {
    opacity: 1;
    transform: scale(1.3) !important;
    z-index: 10;
    text-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

/* Posiciones específicas de los elementos - MÁS SEPARADOS */
.element-1 { top: 10%; left: 0%; }      /* 💪 - Arriba izquierda */
.element-2 { top: 15%; right: -2%; }     /* 🏋️ - Arriba derecha */
.element-3 { top: 30%; left: -5%; }      /* 🧘 - Medio izquierda */
.element-4 { top: 35%; right: -6%; }     /* 🚴 - Medio derecha */
.element-5 { bottom: 40%; left: 0%; }   /* 🥋 - Abajo izquierda */
.element-6 { bottom: 35%; right: 2%; } /* 🤸 - Abajo derecha */
.element-7 { bottom: 20%; left: 3%; }  /* 🏃 - Bajo izquierda */
.element-8 { top: 80%; left: -8%; }      /* 🏊 - Centro izquierda */
.element-9 { top: 75%; right: -8%; }    /* 🧗 - Centro derecha */

/* Contenido principal centrado */
.info-main-content {
    position: relative;
    z-index: 3; /* Mayor que los elementos flotantes */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin: 0 auto;
}

.info-text-content {
    position: relative;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon-container {
    color: var(--white);
    --bg-color-1: hsla(0, 0%, 100%, 0);
    --bg-color-2: hsla(0, 0%, 100%, 0);
    --bg-color-3: #e3ffa0;
    --bg-color-4: #00b3ae;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background: linear-gradient(45deg, #667eea, #764ba2);*/
    background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2)), linear-gradient(141deg, var(--bg-color-3), var(--bg-color-4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.feature-icon-container.pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Botones interactivos centrados */
.interactive-grid.centered {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.interactive-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(0);
    min-width: 150px;
}

.interactive-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
}

.interactive-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    /*background: linear-gradient(45deg, #667eea, #764ba2);*/
    background: linear-gradient(45deg, #667eea, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interactive-title {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.interactive-desc {
    font-size: 0.875rem;
    color: #64748b;
}

/* Call to Action */
.info-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Animations for floating elements */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    transform: scale(1);
    }
    50% { 
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
    transform: scale(1.05);
    }
}

/* Scroll-based animations */
.scroll-animate {
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.scroll-animate.expand {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
}

.scroll-animate.contract {
    transform: scale(0.8) rotate(-5deg);
    opacity: 0.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-elements-container {
    left: -50px;
    right: -50px;
    }
    
    .element-1 { top: 8%; left: 3%; }
    .element-2 { top: 12%; right: 5%; }
    .element-3 { top: 25%; left: 2%; }
    .element-4 { top: 30%; right: 3%; }
    .element-5 { bottom: 35%; left: 5%; }
    .element-6 { bottom: 30%; right: 7%; }
    .element-7 { bottom: 15%; left: 10%; }
    .element-8 { top: 45%; left: 5%; }
    .element-9 { top: 40%; right: 8%; }
}

@media (max-width: 1024px) {
    .floating-elements-container {
    left: -30px;
    right: -30px;
    top: -30px;
    bottom: -30px;
    }
    
    .floating-element {
    font-size: 2rem;
    }
    
    .element-1 { top: 5%; left: 2%; }
    .element-2 { top: 10%; right: 3%; }
    .element-3 { top: 20%; left: 1%; }
    .element-4 { top: 25%; right: 2%; }
    .element-5 { bottom: 30%; left: 3%; }
    .element-6 { bottom: 25%; right: 5%; }
    .element-7 { bottom: 10%; left: 7%; }
    .element-8 { top: 35%; left: 3%; }
    .element-9 { top: 30%; right: 6%; }
}

@media (max-width: 768px) {
    .workfit-info-section {
    padding: 3rem 0;
    min-height: auto;
    }
    
    .info-header {
    margin-bottom: 2rem;
    }
    
    .info-title {
    font-size: 2rem;
    }
    
    .info-subtitle {
    font-size: 1rem;
    }
    
    .info-content-wrapper {
    margin: 0 1rem;
    }
    
    .info-main-content {
    padding: 2rem;
    }
    
    .floating-elements-container {
    position: relative;
    height: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 2rem 0;
    }
    
    .floating-element {
    position: relative;
    display: inline-block;
    margin: 1rem;
    font-size: 1.5rem;
    }
    
    /* Ocultar elementos flotantes en mobile para mejor UX */
    .element-1, .element-2, .element-3, .element-4, 
    .element-5, .element-6, .element-7, .element-8, .element-9 {
    position: relative;
    display: none; /* Ocultar en mobile */
    }
    
    .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    }
    
    .interactive-grid.centered {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    }
    
    .interactive-item {
    width: 100%;
    max-width: 250px;
    }
    
    .info-cta {
    padding: 2rem 1rem;
    }
    
    .cta-title {
    font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-container {
    padding: 0 1rem;
    }
    
    .info-title {
    font-size: 1.75rem;
    }
    
    .feature-item {
    gap: 1rem;
    }
    
    .feature-icon-container {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto;
    }
    
    .interactive-grid.centered {
    gap: 0.75rem;
    }
    
    .interactive-item {
    padding: 1rem;
    min-width: 120px;
    }
}