@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
}
h1, h2, h3, p, li {
  font-family: 'Lato', sans-serif;
}
.bg-primary {
            background-color: var(--primary) !important;
        }
        
        .bg-secondary {
            background-color: var(--secondary) !important;
        }
        
        .bg-accent {
            background-color: var(--bt-light-blue) !important;
        }
        
        .bg-light {
            background-color: var(--light) !important;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .text-secondary {
            color: var(--secondary) !important;
        }
        
        .text-accent {
            color: var(--bt-light-blue) !important;
        }
        
        .text-gray {
            color: var(--gray) !important;
        }
        
        .text-light-gray {
            color: var(--light-gray) !important;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        .navbar {
            transition: all 0.3s ease;
            background-color: var(--primary) !important;
        }
        
        .navbar.scrolled {
            background-color: var(--primary) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .marvis-chat {
            border-radius: 20px 20px 20px 0;
        }
        
        .stats-card {
            transition: all 0.3s ease;
        }
        
        .stats-card:hover {
            transform: scale(1.05);
        }
        
        .logo-cloud img {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .logo-cloud img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        
        .btn-accent {
            background-color: var(--secondary);
            color: white;
            border: none;
        }
        
        .btn-accent:hover {
            background-color: #1a9c99;
            color: white;
        }
        
        .btn-outline-accent {
            border-color: var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline-accent:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .border-accent {
            border-color: var(--secondary) !important;
        }
        
        .section-title {
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        
        .feature-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #041e3a;
            border-color: #041e3a;
        }
        
        /* Chat bubble colors */
        .marvis-chat.bg-primary {
            background-color: var(--primary) !important;
        }
        
        /* Stats cards */
        .stats-card.bg-primary {
            background-color: var(--primary) !important;
        }
        
        .stats-card.bg-secondary {
            background-color: var(--secondary) !important;
        }
        
        .stats-card.bg-accent {
            background-color: var(--secondary) !important;
        }
        
        /* Demo section */
        #demo {
            background-color: var(--secondary) !important;
        }
        
        /* Footer */
        footer.bg-dark {
            background-color: var(--primary) !important;
        }
		.bg-primary { background-color: var(--primary) !important; }
        .bg-secondary { background-color: var(--secondary) !important; }
        .text-primary { color: var(--primary) !important; }
        .text-secondary { color: var(--secondary) !important; }
        .text-gray { color: var(--gray) !important; }
        
        .use-case-item {
            position: relative;
            padding: 2rem 0;
            transition: all 0.3s ease;
        }
        
        .use-case-item:not(:last-child)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15%;
            width: 70%;
            height: 1px;
            background: linear-gradient(90deg, rgba(5,44,88,0.1) 0%, rgba(5,44,88,0.8) 50%, rgba(5,44,88,0.1) 100%);
        }
        
        .use-case-item:hover {
            background-color: rgba(43, 180, 177, 0.03);
        }
        
        .use-case-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(43, 180, 177, 0.1);
            color: var(--secondary);
        }
        
        .impact-badge {
            background-color: rgba(5, 44, 84, 0.1);
            color: var(--primary);
        }
        
        .testimonial-quote {
            position: relative;
        }
        
        .testimonial-quote::before {
            content: '"';
            position: absolute;
            font-size: 5rem;
            font-family: serif;
            color: rgba(43, 180, 177, 0.2);
            top: -2rem;
            left: -1rem;
            line-height: 1;
        }
		
		.collapse
		{
    visibility:visible !important;
}
		@media only screen and (max-width: 600px) {
 		.collapse {
    visibility:collapse !important;
}
}
		
/* Botón de regreso arriba */
.scroll-top-btn {
  position: fixed;
  bottom: 90px; /* Encima del botón de WhatsApp */
  right: 20px;
  z-index: 1000;
  background-color:#052c54;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.scroll-top-btn:hover {
  background-color: #777777;
}

/* Botón de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.fieldlabelism {
    font-size: 1em !important;
    color:white !important;
}

