/* ========================================
   Navitel GPS - Complete Stylesheet v2.0
   Updated: 2025-12-19
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00c9ff;
    --dark-color: #1a1a2e;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

/* Hide scrollbar for all browsers */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    pointer-events: auto;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    margin-right: 5px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
}

.header.scrolled {
    padding: 0.3rem 0;
}

.header.scrolled .nav-wrapper {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    max-width: 95%;
    margin: 0 auto;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.header-logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.header-logo-text {
    color: var(--white);
}

.header-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(0, 102, 204, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-stats .stat i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Dashboard en el Héroe - Solo ajustes de contenedor */
.hero-illustration .dashboard-mockup {
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.4s ease;
    width: 100%;
    max-width: 850px;
    position: relative;
}

.hero-illustration .dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.hero-illustration .dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Navitel Dashboard Hero */
/* ========================================
   NAVITEL DASHBOARD - EXACT REPLICA
   Colores, tipografía y espaciados exactos
   ======================================== */

.navitel-dashboard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    max-width: 100%;
    perspective: 1500px;
    transform-style: preserve-3d;
    transform: rotateY(-1deg) rotateX(1deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navitel-dashboard:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 188, 212, 0.25);
}

/* Sidebar Exacto de la Imagen */
.navitel-sidebar {
    width: 190px;
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    padding: 1.5rem 0;
    flex-shrink: 0;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(20px);
}

/* Logo Exacto */
.navitel-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 1.2rem;
    margin-bottom: 1.5rem;
}

.logo-icon-circle {
    width: 36px;
    height: 36px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    transition: all 0.3s ease;
}

.logo-icon-circle:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.7);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: #00bcd4;
}

/* User Info Exacto */
.navitel-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 1rem 1.2rem;
    border-radius: 10px;
    color: var(--white);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.navitel-user:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(2px);
}

.navitel-user i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    letter-spacing: 0.5px;
}

.user-id {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* Menu Exacto */
.navitel-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 0.8rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    border-radius: 8px;
    position: relative;
    font-weight: 400;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.menu-item.active {
    background: #00bcd4;
    color: white;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(0, 188, 212, 0.4);
}

.menu-item i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.badge-alert {
    margin-left: auto;
    background: #ef5350;
    color: white;
    padding: 3px 7px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    animation: badgePulseAlert 2s ease-in-out infinite;
}

@keyframes badgePulseAlert {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 83, 80, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(239, 83, 80, 0);
    }
}

/* Main Content Exacto */
.navitel-main {
    flex: 1;
    padding: 2rem 2.5rem;
    background: #f5f7fa;
    overflow: hidden;
    transform: translateZ(10px);
}

.main-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #00bcd4;
    margin-bottom: 1.8rem;
    margin-top: 0;
    letter-spacing: 0.3px;
    animation: titleFadeIn 0.8s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Grid Exacto */
.navitel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

/* Info Cards Exactos */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    animation: cardSlideUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.info-card:nth-child(1) { 
    animation-delay: 0.2s; 
}
.info-card:nth-child(2) { 
    animation-delay: 0.4s; 
}
.info-card:nth-child(3) { 
    animation-delay: 0.6s; 
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0) translateZ(15px);
    }
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.08), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px) translateZ(30px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card Icons Exactos de la Imagen */
.card-icon-hero {
    width: 100%;
    height: 110px;
    margin: 0 0 1.3rem 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Seguimiento - Verde */
.seguimiento-bg {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fd9a8 100%);
}

/* Tareas - Naranja */
.tareas-bg {
    background: linear-gradient(135deg, #ffd89b 0%, #ffb347 100%);
}

/* Flota - Azul */
.flota-bg {
    background: linear-gradient(135deg, #a1c4fd 0%, #4fc3f7 100%);
    font-size: 3rem;
    color: white;
}

/* GPS Marker Animation */
.map-grid-animated {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 16px 16px;
    animation: gridScrollHero 25s linear infinite;
}

@keyframes gridScrollHero {
    0% { 
        background-position: 0 0; 
    }
    100% { 
        background-position: 16px 16px; 
    }
}

.gps-marker-hero {
    position: relative;
    z-index: 2;
}

.marker-point {
    width: 20px;
    height: 20px;
    background: #2196f3;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.6);
    animation: markerBounceHero 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #2196f3;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes markerBounceHero {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.05); 
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Folders Animation */
.folders-hero {
    position: relative;
    width: 65px;
    height: 65px;
}

.folder-hero {
    position: absolute;
    width: 48px;
    height: 38px;
    background: #ff9800;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.35);
    transition: all 0.3s ease;
}

.folder-hero::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 0;
    width: 42%;
    height: 11px;
    background: #ff9800;
    border-radius: 4px 4px 0 0;
}

.folder-1 {
    z-index: 1;
    animation: folderFloatHero1 3.5s ease-in-out infinite;
}

.folder-2 {
    left: 14px;
    top: 14px;
    z-index: 2;
    background: #ffa726;
    animation: folderFloatHero2 3.5s ease-in-out infinite 0.5s;
}

.folder-2::before {
    background: #ffa726;
}

@keyframes folderFloatHero1 {
    0%, 100% { 
        transform: translateY(0) rotate(-4deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(-6deg); 
    }
}

@keyframes folderFloatHero2 {
    0%, 100% { 
        transform: translateY(0) rotate(3deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(5deg); 
    }
}

.info-card:hover .folder-hero {
    transform: translateY(-3px) scale(1.05);
}

/* Typography Exacta */
.info-card h4 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.info-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.1rem;
    line-height: 1.4;
}

/* Card Stats Exacto */
.card-stats {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.card-stats .stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #2c3e50;
    transition: all 0.2s ease;
}

.card-stats .stat-row:hover {
    transform: translateX(3px);
}

.card-stats .stat-row strong {
    font-weight: 700;
    min-width: 18px;
}

.card-stats .stat-label {
    color: #6c757d;
    font-weight: 400;
}

/* Dots Exactos */
.card-stats .dot-hero {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-stats .stat-row:hover .dot-hero {
    transform: scale(1.3);
}

.card-stats .dot-hero.green { 
    background: #66bb6a;
    box-shadow: 0 0 8px rgba(102, 187, 106, 0.5);
}

.card-stats .dot-hero.yellow { 
    background: #ffa726;
    box-shadow: 0 0 8px rgba(255, 167, 38, 0.5);
}

.card-stats .dot-hero.red { 
    background: #ef5350;
    box-shadow: 0 0 8px rgba(239, 83, 80, 0.5);
}

.card-stats .dot-hero.blue { 
    background: #42a5f5;
    box-shadow: 0 0 8px rgba(66, 165, 245, 0.5);
}

.floating-element {
    position: absolute;
    color: var(--secondary-color);
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.float-3 {
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--white);
}

/* ABOUT SECTION */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 201, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.animated-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.animated-bg-particles::before,
.animated-bg-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    animation: floatParticles 20s ease-in-out infinite;
}

.animated-bg-particles::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.animated-bg-particles::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 10s;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.about-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-container {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-placeholder:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.25);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-placeholder:hover .about-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-image-placeholder:hover .image-glow {
    opacity: 1;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.8), transparent);
    animation: scanAnimation 3s ease-in-out infinite;
}

@keyframes scanAnimation {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.stats-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.85) rotateX(20deg);
    animation: statItemEntrance 1s ease-out forwards;
    perspective: 1000px;
}

@keyframes statItemEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.85) rotateX(20deg);
    }
    60% {
        transform: translateY(-10px) scale(1.03) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.stat-item[data-delay="0"] { animation-delay: 0.3s; }
.stat-item[data-delay="150"] { animation-delay: 0.5s; }
.stat-item[data-delay="300"] { animation-delay: 0.7s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 102, 204, 0.1), transparent 30%);
    animation: rotateGradient 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #0088ff, #00c9ff, #0088ff, #00c9ff);
    background-size: 300% 300%;
    opacity: 0;
    border-radius: 20px;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover::after {
    opacity: 0.2;
}

@keyframes rotateGradient {
    to { transform: rotate(360deg); }
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 70px rgba(0, 102, 204, 0.25);
    border-color: rgba(0, 102, 204, 0.4);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0088ff, #00c9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 136, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 136, 255, 0.6);
    }
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c9ff, #0088ff);
    opacity: 0;
    transition: all 0.6s ease;
    filter: blur(10px);
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconRotate 2s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-item:hover .stat-icon-wrapper {
    transform: translateY(-10px) scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.6);
}

.stat-item:hover .stat-icon-wrapper::before {
    opacity: 1;
    inset: -10px;
}

.stat-item:hover .stat-icon-wrapper::after {
    opacity: 0.8;
}

.stat-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-icon-wrapper i {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.stat-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.8rem;
    gap: 5px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0088ff;
    position: relative;
    line-height: 1;
    transition: all 0.5s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
    animation: numberBounce 0.6s ease;
}

@keyframes numberBounce {
    0%, 100% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.25);
    }
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
    color: #0088ff;
    letter-spacing: 2px;
    transform: translateY(-3px);
}

.stat-progress-bar {
    width: 100%;
    height: 5px;
    background: #e8f4ff;
    border-radius: 10px;
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
}

.stat-progress-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 255, 0.3), transparent);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0088ff, #00c9ff);
    border-radius: 10px;
    width: 0;
    animation: fillProgress 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
}

.stat-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: shimmer 2s infinite;
}

.stat-progress-fill::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.8);
    animation: progressDot 1s ease-in-out infinite;
}

@keyframes progressDot {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 136, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 136, 255, 1);
    }
}

@keyframes fillProgress {
    0% {
        width: 0;
    }
    100% {
        width: var(--progress, 90%);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-item[data-delay="0"] .stat-progress-fill { --progress: 95%; animation-delay: 0.5s; }
.stat-item[data-delay="150"] .stat-progress-fill { --progress: 88%; animation-delay: 0.7s; }
.stat-item[data-delay="300"] .stat-progress-fill { --progress: 92%; animation-delay: 0.9s; }

.stat-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: sparkleAnimation 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes sparkleAnimation {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.about-content {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 201, 255, 0.15));
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.pulse-icon {
    animation: pulseIconBadge 1.5s ease-in-out infinite;
}

@keyframes pulseIconBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.slide-in-text {
    animation: slideInText 0.8s ease-out 0.6s both;
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow-text {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.glow-text:hover {
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.fade-in-text {
    animation: fadeInText 1s ease-out 0.8s both;
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: btnAppear 0.6s ease-out 1s both;
}

@keyframes btnAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.btn-bg-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-enhanced:hover .btn-bg-animation {
    width: 300px;
    height: 300px;
}

/* PLATFORM FEATURES */
.platform-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gps-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 201, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.gps-particles-bg::before,
.gps-particles-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    animation: rotateCircle 30s linear infinite;
}

.gps-particles-bg::before {
    top: -100px;
    right: -100px;
}

.gps-particles-bg::after {
    bottom: -100px;
    left: -100px;
    animation-direction: reverse;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.platform-features .container {
    position: relative;
    z-index: 2;
}

.animated-pulse {
    animation: badgePulseGlow 2s ease-in-out infinite;
}

@keyframes badgePulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
    }
}

.reveal-text {
    animation: revealText 0.8s ease-out;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow-animated {
    animation: textGlowPulse 3s ease-in-out infinite;
}

@keyframes textGlowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 102, 204, 0.6);
    }
}

.fade-up-text {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-screen {
    background: #2c3e50;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.platform-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 102, 204, 0.1), transparent 30%);
    animation: screenRotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.platform-screen:hover::before {
    opacity: 1;
}

@keyframes screenRotateGlow {
    to { transform: rotate(360deg); }
}

.platform-screen:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(0, 102, 204, 0.3);
}

.screen-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7f8c8d;
}

.screen-dots span:nth-child(1) { background: #e74c3c; }
.screen-dots span:nth-child(2) { background: #f39c12; }
.screen-dots span:nth-child(3) { 
    background: #2ecc71; 
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0); }
}

.screen-url {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.screen-url i {
    color: #2ecc71;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(46, 204, 113, 1);
    }
}

.status-text {
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 600;
}

.screen-content {
    display: flex;
    height: 600px;
}

.navitel-sidebar-full {
    width: 240px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.5rem 0;
}

.sidebar-logo-full {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.logo-icon-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00bcd4, #00acc1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-text {
    color: var(--white);
}

.logo-accent {
    color: var(--secondary-color);
}

.sidebar-nav-full {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 1rem;
}

.nav-full-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.nav-full-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.nav-full-item.active {
    background: rgba(0, 201, 255, 0.2);
    color: var(--secondary-color);
}

.nav-full-item i {
    width: 20px;
    text-align: center;
}

.nav-badge {
    margin-left: auto;
    background: var(--danger-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.navitel-main-full {
    flex: 1;
    padding: 2rem;
    background: #ecf0f1;
    overflow-y: auto;
}

.navitel-main-full::-webkit-scrollbar {
    display: none;
}

.navitel-main-full {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: dashSlideUp 0.8s ease forwards;
    position: relative;
}

.dash-card:nth-child(1) { animation-delay: 0.15s; }
.dash-card:nth-child(2) { animation-delay: 0.3s; }
.dash-card:nth-child(3) { animation-delay: 0.45s; }

@keyframes dashSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.12), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.dash-card:hover::before {
    left: 100%;
}

.dash-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.dash-card-header {
    padding: 1rem 1.5rem;
}

.dash-card-img {
    height: 80px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 2;
    animation: dashIconFloat 3s ease-in-out infinite;
}

.dash-card:nth-child(1) .dash-card-img { animation-delay: 0s; }
.dash-card:nth-child(2) .dash-card-img { animation-delay: 0.5s; }
.dash-card:nth-child(3) .dash-card-img { animation-delay: 1s; }

@keyframes dashIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(-3px) rotate(-2deg); }
}

.dash-card:hover .dash-card-img {
    transform: scale(1.15) translateY(-5px) rotate(5deg);
    animation: none;
}

.map-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: dashMapGlow 3s ease-in-out infinite;
}

@keyframes dashMapGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6); }
}

.chart-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
    animation: dashChartGlow 3s ease-in-out infinite 0.5s;
}

@keyframes dashChartGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(240, 147, 251, 0.6); }
}

.donut-img {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    animation: dashDonutGlow 3s ease-in-out infinite 1s;
}

@keyframes dashDonutGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(79, 172, 254, 0.6); }
}

.street-lines {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.location-dot {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.9); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 1); }
}

.dot-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.bar-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    transform-origin: bottom;
    animation: barChartGrow 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }
.bar:nth-child(5) { animation-delay: 0.8s; }
.bar:nth-child(6) { animation-delay: 1s; }
.bar:nth-child(7) { animation-delay: 1.2s; }

@keyframes barChartGrow {
    0%, 100% { 
        transform: scaleY(1); 
        opacity: 0.9;
    }
    50% { 
        transform: scaleY(1.2); 
        opacity: 1;
    }
}

.bar.highlight {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

.donut-chart {
    position: relative;
    width: 70px;
    height: 70px;
    animation: donutRotate 4s linear infinite;
}

@keyframes donutRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.donut-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 12px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.donut-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 12px solid transparent;
    border-radius: 50%;
}

.seg-1 {
    border-top-color: rgba(255, 255, 255, 0.8);
}

.seg-2 {
    border-right-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
}

.donut-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dash-card-body {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title-blue {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: 15px;
    cursor: pointer;
}

.card-link:hover {
    text-decoration: underline;
}

.card-links {
    margin-bottom: 1rem;
}

.objects-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex: 1;
}

.objects-info strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.green { background: #66bb6a; }
.status-dot.yellow { background: #ffa726; }
.status-dot.red { background: #ef5350; }
.status-dot.blue { background: #42a5f5; }
.status-dot.gray { background: #90a4ae; }

.kilometraje-section {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.kilometraje-section h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.km-chart {
    height: 150px;
}

.km-bars {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: flex-end;
}

.km-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 8px 8px 0 0;
    height: var(--height);
    position: relative;
}

.km-val {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.km-img {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.km-chart-mini {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100px;
    padding: 15px;
}

.km-bar-mini {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    height: var(--height);
    min-height: 20%;
    transition: all 0.3s ease;
}

.km-bar-mini:hover {
    transform: scaleY(1.1);
    filter: brightness(1.2);
}

.platform-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pf-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.pf-item:nth-child(1) { animation-delay: 0.1s; }
.pf-item:nth-child(2) { animation-delay: 0.2s; }
.pf-item:nth-child(3) { animation-delay: 0.3s; }
.pf-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pf-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pf-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.pf-item:hover::before {
    transform: scaleY(1);
}

.pf-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.pf-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.pf-item:hover .pf-icon {
    transform: scale(1.1) rotate(5deg);
}

.pf-item:hover .pf-icon::after {
    opacity: 0.3;
    animation: pulse 1.5s ease infinite;
}

.pf-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.pf-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* SERVICIOS */
.servicios {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.servicio-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 201, 255, 0.2);
    border-color: var(--primary-color);
    background: var(--white);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 20px;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.servicio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.servicio-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.servicio-features {
    text-align: left;
}

.servicio-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-color);
}

.servicio-features li i {
    color: var(--success-color);
}

/* PLANES */
.planes {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.planes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(0, 102, 204, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateX(10deg);
    animation: planCardEntrance 1s ease forwards;
    perspective: 1000px;
}

@keyframes planCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(10deg);
    }
    60% {
        transform: translateY(-10px) scale(1.02) rotateX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.25s; }
.plan-card:nth-child(3) { animation-delay: 0.4s; }

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 201, 255, 0.08));
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
    transform: scale(0);
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: left 0.8s ease;
    z-index: -1;
    box-shadow: 0 0 20px var(--secondary-color);
    pointer-events: none;
}

.plan-card:hover::after {
    left: 100%;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.25);
    border-color: var(--secondary-color);
}

.plan-featured {
    background: linear-gradient(135deg, #0066cc 0%, #00c9ff 100%);
    color: var(--white);
    transform: scale(1.1) translateY(0);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
    animation-delay: 0.25s;
    position: relative;
}

.plan-featured::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.plan-featured:hover {
    transform: scale(1.12) translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 102, 204, 0.5);
}

.plan-featured h3,
.plan-featured p,
.plan-featured li {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.plan-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 201, 255, 0.15));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0, 102, 204, 0.2);
    overflow: hidden;
}

.plan-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.plan-card:hover .plan-badge {
    transform: scale(1.15) rotate(2deg);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.plan-card:hover .plan-badge::before {
    width: 200%;
    height: 200%;
}

.plan-featured .plan-badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.plan-badge.popular {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--white);
    border: none;
    animation: badgePulse 2s ease-in-out infinite, badgeShake 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
}

@keyframes badgeShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg) scale(1.05); }
    75% { transform: rotate(5deg) scale(1.05); }
}

.plan-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.plan-card:hover h3 {
    transform: translateX(10px) scale(1.05);
    color: var(--primary-color);
    text-shadow: 2px 2px 10px rgba(0, 102, 204, 0.2);
}

.plan-featured:hover h3 {
    color: var(--white);
    transform: translateX(10px) scale(1.05);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.plan-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.plan-featured .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
}

.plan-card:nth-child(1) .plan-features li:nth-child(1) { animation-delay: 0.2s; }
.plan-card:nth-child(1) .plan-features li:nth-child(2) { animation-delay: 0.25s; }
.plan-card:nth-child(1) .plan-features li:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(1) .plan-features li:nth-child(4) { animation-delay: 0.35s; }
.plan-card:nth-child(1) .plan-features li:nth-child(5) { animation-delay: 0.4s; }
.plan-card:nth-child(1) .plan-features li:nth-child(6) { animation-delay: 0.45s; }
.plan-card:nth-child(1) .plan-features li:nth-child(7) { animation-delay: 0.5s; }

.plan-card:nth-child(2) .plan-features li:nth-child(1) { animation-delay: 0.35s; }
.plan-card:nth-child(2) .plan-features li:nth-child(2) { animation-delay: 0.4s; }
.plan-card:nth-child(2) .plan-features li:nth-child(3) { animation-delay: 0.45s; }
.plan-card:nth-child(2) .plan-features li:nth-child(4) { animation-delay: 0.5s; }
.plan-card:nth-child(2) .plan-features li:nth-child(5) { animation-delay: 0.55s; }
.plan-card:nth-child(2) .plan-features li:nth-child(6) { animation-delay: 0.6s; }
.plan-card:nth-child(2) .plan-features li:nth-child(7) { animation-delay: 0.65s; }
.plan-card:nth-child(2) .plan-features li:nth-child(8) { animation-delay: 0.7s; }
.plan-card:nth-child(2) .plan-features li:nth-child(9) { animation-delay: 0.75s; }

.plan-card:nth-child(3) .plan-features li:nth-child(1) { animation-delay: 0.5s; }
.plan-card:nth-child(3) .plan-features li:nth-child(2) { animation-delay: 0.55s; }
.plan-card:nth-child(3) .plan-features li:nth-child(3) { animation-delay: 0.6s; }
.plan-card:nth-child(3) .plan-features li:nth-child(4) { animation-delay: 0.65s; }
.plan-card:nth-child(3) .plan-features li:nth-child(5) { animation-delay: 0.7s; }
.plan-card:nth-child(3) .plan-features li:nth-child(6) { animation-delay: 0.75s; }
.plan-card:nth-child(3) .plan-features li:nth-child(7) { animation-delay: 0.8s; }
.plan-card:nth-child(3) .plan-features li:nth-child(8) { animation-delay: 0.85s; }
.plan-card:nth-child(3) .plan-features li:nth-child(9) { animation-delay: 0.9s; }
.plan-card:nth-child(3) .plan-features li:nth-child(10) { animation-delay: 0.95s; }
.plan-card:nth-child(3) .plan-features li:nth-child(11) { animation-delay: 1s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.plan-card:hover .plan-features li {
    transform: translateX(8px);
    padding-left: 0.5rem;
    background: rgba(0, 201, 255, 0.03);
}

.plan-featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    display: inline-block;
}

.plan-features li i::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--success-color);
    opacity: 0;
    border-radius: 50%;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

.plan-features li i::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, var(--success-color) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.plan-card:hover .plan-features li i {
    transform: scale(1.4) rotate(360deg);
    filter: drop-shadow(0 0 10px var(--success-color));
    animation: checkBounce 0.6s ease;
}

@keyframes checkBounce {
    0%, 100% {
        transform: scale(1.4) rotate(360deg);
    }
    50% {
        transform: scale(1.6) rotate(360deg);
    }
}

.plan-card:hover .plan-features li i::after {
    opacity: 0.5;
}

.plan-featured .plan-features li i {
    color: var(--white);
}

.plan-featured .plan-features li i::before {
    background: var(--white);
}

.plan-featured .plan-features li i::after {
    background: radial-gradient(circle, var(--white) 0%, transparent 70%);
}

.plan-featured:hover .plan-features li i {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.plan-card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.plan-card .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.plan-card .btn:hover::before {
    width: 300%;
    height: 300%;
}

.plan-card .btn:active {
    transform: translateY(-3px) scale(1.02);
}

.planes-note {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    padding: 2.5rem;
    border: 2px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleUp 0.8s ease forwards 0.6s;
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.planes-note::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.planes-note-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.planes-note-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 2.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    animation: iconBounce 3s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.planes-note:hover .planes-note-icon {
    transform: rotate(360deg) scale(1.1);
}

.planes-note-text h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.planes-note-features {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    background: rgba(0, 102, 204, 0.03);
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    white-space: nowrap;
}

@keyframes bounceIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-item:nth-child(1) { animation-delay: 0.8s; }
.feature-item:nth-child(2) { animation-delay: 0.9s; }
.feature-item:nth-child(3) { animation-delay: 1s; }
.feature-item:nth-child(4) { animation-delay: 1.1s; }

.feature-item:hover {
    background: rgba(0, 102, 204, 0.08);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.feature-item span {
    font-weight: 500;
}

/* BENEFICIOS */
.beneficios {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes benefitsPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.beneficio-card {
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    border: 1px solid rgba(0, 102, 204, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.9) rotateX(10deg);
    animation: beneficioEntrance 1s ease forwards;
    perspective: 1000px;
}

@keyframes beneficioEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(10deg);
    }
    60% {
        transform: translateY(-5px) scale(1.02) rotateX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.beneficio-card:nth-child(1) { animation-delay: 0.1s; }
.beneficio-card:nth-child(2) { animation-delay: 0.2s; }
.beneficio-card:nth-child(3) { animation-delay: 0.3s; }
.beneficio-card:nth-child(4) { animation-delay: 0.4s; }
.beneficio-card:nth-child(5) { animation-delay: 0.5s; }
.beneficio-card:nth-child(6) { animation-delay: 0.6s; }

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.2), rgba(0, 102, 204, 0.08));
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.beneficio-card:hover::before {
    width: 500px;
    height: 500px;
    animation: rippleEffect 1.5s ease-out;
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0.5;
    }
}

.beneficio-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 300% 300%;
    opacity: 0;
    border-radius: 16px;
    z-index: -1;
    transition: opacity 0.6s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.beneficio-card:hover::after {
    opacity: 0.15;
}

.beneficio-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.25);
    border-color: var(--secondary-color);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.25);
}

.beneficio-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    filter: blur(8px);
}

.beneficio-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: iconRotate 3s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.beneficio-card:hover .beneficio-icon {
    transform: translateY(-10px) scale(1.2) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 201, 255, 0.5);
}

.beneficio-card:hover .beneficio-icon::before {
    opacity: 1;
    inset: -8px;
}

.beneficio-card:hover .beneficio-icon::after {
    opacity: 0.6;
}

.beneficio-icon i {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.beneficio-card:hover .beneficio-icon i {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.beneficio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.beneficio-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.beneficio-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.beneficio-card:hover h3::after {
    width: 60%;
}

.beneficio-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.beneficio-card:hover p {
    color: #333;
    transform: translateY(-3px);
    letter-spacing: 0.3px;
}

/* CAROUSEL */
.tech-carousel-section {
    padding: 60px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray), transparent);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray), transparent);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 150px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo-item {
    min-width: 180px;
    height: 150px;
}

.logo-item img {
    width: 120px;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.carousel-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.teltonika-logo {
    width: 120px;
    height: 90px;
    object-fit: contain;
}

.carousel-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* COMO FUNCIONA */
.como-funciona {
    padding: 30px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.steps-timeline {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: stretch;
}

.timeline-line {
    position: absolute;
    top: 90px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-line::before { left: 0; }
.timeline-line::after { right: 0; }

.step-item {
    position: relative;
    z-index: 1;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    position: relative;
    animation: numberPulse 3s ease-in-out infinite;
}

.step-number-circle span {
    position: relative;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    inset: -10px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseBorder 2s ease-out infinite;
}

@keyframes pulseBorder {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(0, 102, 204, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-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.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.5s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(5deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(0, 201, 255, 0.5);
}

.icon-orbit {
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-orbit::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 20%;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.8);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.step-arrow-icon {
    position: absolute;
    top: 90px;
    right: -35px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.4;
    animation: arrowPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-50%) translateX(5px) scale(1.1);
        opacity: 0.7;
    }
}

.step-item:last-child .step-arrow-icon {
    display: none;
}

.como-funciona-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 201, 255, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.como-funciona-footer {
    margin-top: 4rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* CONTACTO */
.contacto {
    padding: 80px 0;
    background: var(--light-gray);
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contacto-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contacto-info > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contacto-details {
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail:last-child {
    border-bottom: none;
}

.detail i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.detail p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contacto-benefits {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contacto-benefits h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contacto-benefits ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-color);
}

.contacto-benefits ul li i {
    color: var(--success-color);
}

.contacto-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit-container {
    text-align: center;
    margin-bottom: 1rem;
}

.form-submit-container .btn {
    width: 100%;
    justify-content: center;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* FOOTER */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-text {
    color: var(--white);
}

.footer-accent {
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Botón especial para Proyectos en footer */
.footer-col ul li a[href="login.html"] {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #00c9ff 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.footer-col ul li a[href="login.html"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-col ul li a[href="login.html"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
    padding-left: 25px;
}

.footer-col ul li a[href="login.html"]:hover::before {
    left: 100%;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.scroll-to-top,
.floating-cta {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.scroll-to-top {
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #0052a3;
    transform: translateY(-5px);
}

.floating-cta.whatsapp {
    background: #25d366;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

.floating-cta.whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content,
    .about-stats-wrapper,
    .contacto-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .platform-showcase {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-featured {
        transform: scale(1) translateY(0);
    }

    .plan-featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-color);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Dashboard en el héroe - tableta */
    .hero-illustration .dashboard-mockup {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(0.85);
    }

    .screen-content {
        flex-direction: column;
        height: auto;
    }

    .navitel-sidebar-full {
        width: 100%;
    }

    .stats-counters {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .servicios-grid,
    .beneficios-grid,
    .planes-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Dashboard en el héroe - móvil con scroll horizontal */
    .hero-illustration {
        padding: 10px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .hero-illustration .dashboard-mockup {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(0.65);
        min-width: 900px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta.whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .carousel-item {
        min-width: 150px;
        height: 150px;
    }

    .logo-item {
        min-width: 150px;
        height: 150px;
    }

    .logo-item img,
    .teltonika-logo {
        width: 100px;
        height: 75px;
    }

    .carousel-item span {
        font-size: 0.85rem;
    }

    .carousel-track {
        gap: 1rem;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 50px;
    }

    .planes-note-content {
        flex-direction: column;
        text-align: center;
    }

    .planes-note-features {
        grid-template-columns: 1fr;
    }
}
