/* ========================================
   GPS & Dashboard Advanced Animations
   ======================================== */

/* ========================================
   SERVICIOS GPS ANIMATIONS
   ======================================== */

/* GPS Background Container */
.servicios {
    position: relative;
    overflow: hidden;
}

.gps-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
    pointer-events: none;
}

/* Grid de Mapa GPS */
.gps-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Radar GPS Circular */
.gps-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    animation: radarPulse 3s ease-in-out infinite;
}

.gps-radar::before,
.gps-radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 102, 204, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gps-radar::before {
    width: 600px;
    height: 600px;
    animation: radarPulse 3s ease-in-out infinite 0.5s;
}

.gps-radar::after {
    width: 800px;
    height: 800px;
    animation: radarPulse 3s ease-in-out infinite 1s;
}

@keyframes radarPulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Se\u00f1ales GPS */
.gps-signals {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
}

.signal-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: signalExpand 2s ease-out infinite;
}

.signal-wave.signal-2 {
    animation-delay: 0.6s;
}

.signal-wave.signal-3 {
    animation-delay: 1.2s;
}

@keyframes signalExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Sat\u00e9lites Animados */
.gps-satellites {
    position: absolute;
    width: 100%;
    height: 100%;
}

.satellite {
    position: absolute;
    font-size: 24px;
    color: rgba(0, 102, 204, 0.4);
    animation: satelliteOrbit 15s linear infinite;
}

.satellite.sat-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.satellite.sat-2 {
    top: 70%;
    left: 80%;
    animation-delay: 5s;
}

.satellite.sat-3 {
    top: 40%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes satelliteOrbit {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Marcadores de Mapa */
.map-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
    animation: markerPulse 2s ease-in-out infinite;
}

.marker.marker-1 { top: 15%; left: 15%; animation-delay: 0s; }
.marker.marker-2 { top: 25%; left: 70%; animation-delay: 0.4s; }
.marker.marker-3 { top: 60%; left: 30%; animation-delay: 0.8s; }
.marker.marker-4 { top: 75%; left: 85%; animation-delay: 1.2s; }
.marker.marker-5 { top: 85%; left: 50%; animation-delay: 1.6s; }

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(0, 102, 204, 0.6);
    }
}

/* Tarjetas de Servicio con Efectos GPS */
.servicios .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.servicios .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.servicios .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.servicio-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 201, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.servicio-card:hover::before {
    left: 100%;
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 201, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 201, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* L\u00ednea de Escaneo GPS */
.gps-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c9ff, transparent);
    animation: scanLine 3s linear infinite;
    opacity: 0;
}

.servicio-card:hover .gps-scan-line {
    opacity: 1;
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

/* Icono con Pulso GPS */
.servicio-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0066cc, #00c9ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulso del Icono */
.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #00c9ff;
    border-radius: 22px;
    animation: iconPulseOut 2s ease-out infinite;
}

@keyframes iconPulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Anillos de Se\u00f1al */
.signal-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.signal-rings::before,
.signal-rings::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 25px;
    transform: translate(-50%, -50%);
    animation: signalRingExpand 2s ease-out infinite;
}

.signal-rings::after {
    animation-delay: 1s;
}

@keyframes signalRingExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Texto de las Tarjetas */
.servicio-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.servicio-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.servicio-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servicio-features li i {
    color: #00c9ff;
    font-size: 14px;
}

/* Efectos Espec\u00edficos por Tipo */
.servicio-card[data-gps-effect=\"realtime\"]:hover .servicio-icon {
    animation: realTimePulse 1s ease-in-out infinite;
}

@keyframes realTimePulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 201, 255, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(0, 201, 255, 0.8);
    }
}

.servicio-card[data-gps-effect=\"fleet\"]:hover .servicio-icon i {
    animation: vehicleMove 2s ease-in-out infinite;
}

@keyframes vehicleMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.servicio-card[data-gps-effect=\"alert\"]:hover .servicio-icon i {
    animation: alertRing 0.5s ease-in-out infinite;
}

@keyframes alertRing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.servicio-card[data-gps-effect=\"tracking\"]:hover .servicio-icon {
    animation: trackingRotate 3s linear infinite;
}

@keyframes trackingRotate {
    0% {
        transform: rotate(0deg) translateY(-10px);
    }
    100% {
        transform: rotate(360deg) translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gps-radar {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }
    
    .satellite {
        font-size: 16px;
    }
    
    .servicio-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Pulse Ring for Logo */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: ringPulseOut 2s ease-out infinite;
}

@keyframes ringPulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Navigation Glow Effect */
.nav-full-item {
    position: relative;
    overflow: hidden;
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: navGlowSlide 3s ease-in-out infinite;
}

@keyframes navGlowSlide {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* GPS Pulse Effect */
.gps-pulse {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: gpsPulseEffect 2s ease-in-out infinite;
    box-shadow: 0 0 10px #2ecc71;
}

@keyframes gpsPulseEffect {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 10px #2ecc71;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        box-shadow: 0 0 20px #2ecc71;
    }
}

/* Notification Pulse */
.notification-pulse {
    position: relative;
}

.notification-pulse .nav-badge {
    animation: badgeShake 3s ease-in-out infinite;
}

@keyframes badgeShake {
    0%, 90%, 100% { transform: translateX(0); }
    92%, 96% { transform: translateX(-3px); }
    94%, 98% { transform: translateX(3px); }
}

/* Card Shine Effect */
.dash-card {
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: cardShineMove 8s ease-in-out infinite;
}

@keyframes cardShineMove {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* GPS Grid Background */
.gps-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Route Line Animation */
.route-line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.8), transparent);
    top: 40%;
    left: 10%;
    animation: routeLineMove 3s ease-in-out infinite;
}

@keyframes routeLineMove {
    0%, 100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(20px) scaleX(1.2);
        opacity: 1;
    }
}

/* Moving Marker Animation */
.moving-marker {
    animation: markerMove 6s ease-in-out infinite;
}

@keyframes markerMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15px, -10px); }
    50% { transform: translate(25px, 5px); }
    75% { transform: translate(10px, 15px); }
}

/* Dot Shadow */
.dot-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 5px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

/* Satellite Signal */
.satellite-signal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
}

.satellite-signal::before,
.satellite-signal::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.satellite-signal::before {
    width: 15px;
    height: 15px;
    top: 5px;
    left: 5px;
    animation: signalWave 1.5s ease-out infinite;
}

.satellite-signal::after {
    width: 25px;
    height: 25px;
    animation: signalWave 1.5s 0.5s ease-out infinite;
}

@keyframes signalWave {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Icon Bounce Animation */
.icon-bounce {
    display: inline-block;
    animation: iconBounceAnim 2s ease-in-out infinite;
}

@keyframes iconBounceAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Link Glow Effect */
.link-glow {
    position: relative;
    transition: all 0.3s ease;
}

.link-glow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.link-glow:hover::after {
    width: 100%;
}

.link-glow:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 201, 255, 0.3);
}

.link-glow i {
    transition: transform 0.3s ease;
}

.link-glow:hover i {
    transform: translateX(5px);
}

/* Pulse Dot Animation */
.pulse-dot {
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
    animation: dotPulseEffect 2s ease-in-out infinite;
}

@keyframes dotPulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Count Up Animation */
.count-up {
    font-weight: 600;
    display: inline-block;
}

/* Chart Grid Lines */
.chart-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 15px
    );
    pointer-events: none;
}

/* Donut Percentage */
.donut-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    animation: percentageCount 2s ease-out;
}

@keyframes percentageCount {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* Additional Donut Segment */
.seg-3 {
    border-left-color: rgba(255, 255, 255, 0.9);
    transform: rotate(180deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gps-particles-bg::before,
    .gps-particles-bg::after {
        width: 200px;
        height: 200px;
    }
    
    .satellite-signal {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   DASHBOARD FEATURES ANIMATIONS
   ======================================== */

/* Feature Items - Animación de Entrada Escalonada */
.feature-info-item {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.feature-info-item:nth-child(1) { animation-delay: 0.1s; }
.feature-info-item:nth-child(2) { animation-delay: 0.2s; }
.feature-info-item:nth-child(3) { animation-delay: 0.3s; }
.feature-info-item:nth-child(4) { animation-delay: 0.4s; }
.feature-info-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efecto de Brillo al Pasar */
.feature-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.feature-info-item:hover::before {
    left: 100%;
}

/* Icono sin animación continua */
.feature-info-icon {
    position: relative;
    z-index: 1;
}

/* Efecto de resplandor giratorio en el icono */
.feature-info-icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 0.3s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Efecto de Ondas en el Icono - Deshabilitado */
/*
.feature-info-icon::before,
.feature-info-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    transform: translate(-50%, -50%);
    animation: iconWaveExpand 2.5s ease-out infinite;
    opacity: 0;
}

.feature-info-icon::after {
    animation-delay: 1.25s;
}
*/

@keyframes iconWaveExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Hover en Icono - Escala Simple */
.feature-info-item:hover .feature-info-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@keyframes iconRotateGrow {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(-5deg);
    }
    100% {
        transform: scale(1.15) rotate(5deg);
    }
}

/* Iconos - Animaciones Específicas Deshabilitadas */
/*
.feature-info-item:nth-child(1) .feature-info-icon i {
    animation: mapPulse 3s ease-in-out infinite;
}

.feature-info-item:nth-child(2) .feature-info-icon i {
    animation: chartGrow 2s ease-in-out infinite;
}

.feature-info-item:nth-child(3):hover .feature-info-icon i {
    animation: bellRing 0.5s ease-in-out infinite;
}

.feature-info-item:nth-child(4) .feature-info-icon i {
    animation: phoneVibrate 2s ease-in-out infinite;
}

.feature-info-item:nth-child(5) .feature-info-icon i {
    animation: shieldPulse 2s ease-in-out infinite;
}
*/

/* Contenido de Texto - Animación al Hover */
.feature-info-content h4 {
    transition: all 0.3s ease;
    position: relative;
}

.feature-info-item:hover .feature-info-content h4 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.feature-info-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.feature-info-item:hover .feature-info-content h4::after {
    width: 100%;
}

.feature-info-content p {
    transition: all 0.3s ease;
}

.feature-info-item:hover .feature-info-content p {
    color: var(--text-color);
    transform: translateX(5px);
}

/* Botón CTA con Animación de Pulso */
.cta-demo {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-demo .btn {
    position: relative;
    overflow: hidden;
}

.cta-demo .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-demo .btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-demo .btn i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-demo .btn:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* Partículas flotantes de fondo */
.dashboard-features-info {
    position: relative;
}

.dashboard-features-info::before,
.dashboard-features-info::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.05), transparent);
    pointer-events: none;
    z-index: 0;
}

.dashboard-features-info::before {
    top: 10%;
    right: -100px;
    animation: floatParticle 15s ease-in-out infinite;
}

.dashboard-features-info::after {
    bottom: 10%;
    left: -100px;
    animation: floatParticle 20s ease-in-out infinite reverse;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-50px) translateX(50px);
    }
}

/* Responsive para Features */
@media (max-width: 768px) {
    .feature-info-item {
        animation: slideInFromLeft 0.6s ease-out forwards;
    }
    
    .feature-info-icon {
        animation: iconBounce 3s ease-in-out infinite;
    }
    
    .dashboard-features-info::before,
    .dashboard-features-info::after {
        width: 150px;
        height: 150px;
    }
}

/* Efecto de línea de progreso animada */
.feature-info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.feature-info-item:hover::after {
    width: 100%;
}


