/* Base styles */
:root {
  --primary: #112FA9;
  --primary-light: #3A5FDA;
  --primary-dark: #2C68E8;
  --secondary: #65D2BB;
  --secondary-dark: #4AB69E;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-prefix {
  color: var(--white);
}

.logo-suffix {
  color: var(--secondary);
}

.navbar.scrolled .logo-prefix {
  color: var(--primary);
}

.navbar.scrolled .logo-suffix {
  color: var(--secondary);
}

.nav-links {
  display: none;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-buttons {
  display: none;
  align-items: center;
}

.btn-login {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.navbar.scrolled .btn-login {
  color: var(--gray-700);
}

.btn-login:hover {
  color: var(--secondary);
}

.btn-demo {
  background-color: var(--secondary);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.btn-solicita {
  cursor: default !important;
}

.form-group .error-message {
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

.form-group.has-error .form-control {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220,53,69,0.15);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle span {
  background-color: var(--gray-800);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}

.mobile-menu-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-link:hover {
  color: var(--primary);
}

.mobile-menu-buttons {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
}

.mobile-btn-login {
  display: block;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
}

.mobile-btn-demo {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Grid pattern */
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* Animated Shapes */
.animated-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -50px;
  animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 10%;
  animation: float 12s ease-in-out infinite;
}

/* Animated dots */
.dot-1,.dot-2,.dot-3,.dot-4,.dot-5 {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
}

.dot-1 {
  top: 20%;
  right: 5%;
  animation: pulse 2s infinite;
}

.dot-2 {
  top: 30%;
  left: 20%;
  animation: pulse 3s infinite 0.5s;
}

.dot-3 {
  top: 15%;
  left: 10%;
  animation: pulse 2.5s infinite 1s;
}

.dot-4 {
  top: 40%;
  left: 80%;
  animation: pulse 3.5s infinite 0.2s;
}

.dot-5 {
  top: 70%;
  left: 15%;
  animation: pulse 3s infinite 1.5s;
}

/* Logistics elements */
.logistics-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.logistics-element svg {
  width: 100%;
  height: 100%;
}

.ship {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 5%;
  animation: float 20s ease-in-out infinite;
}

.plane {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation: float 15s ease-in-out infinite reverse;
}

.truck {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 15%;
  animation: float 18s ease-in-out infinite;
}

.package {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 5%;
  animation: float 12s ease-in-out infinite reverse;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

/* Hero Content - CORREGIDO */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.hero-text {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-text {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    max-width: 50%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-icon {
  color: var(--secondary);
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.badge-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  text-align: left;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;  
}

.floating-element {
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.floating-element.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Staggered animations */
.card-1 {
  animation-delay: 0.2s;
}
.card-2 {
  animation-delay: 0.4s;
}
.notification {
  animation-delay: 0.6s;
}
.clients-badge {
  animation-delay: 0.8s;
}

/* Keyframe for popup effect */
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.highlight-text {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(94, 207, 177, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-number[data-target="100"]::after {
  content: '%';
}

.stat-number[data-target="3500"]::before {
  content: '+';
}

.stat-number[data-target="99000"]::before {
  content: '+';
}

.stat-number[data-target="10"]::before {
  content: '+';
}

.stat-number[data-target="5200"]::before {
  content: '+';
}

.stat-number[data-target="99"]::after {
  content: '%';
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    justify-content: start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  background-color: var(--secondary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.play-button {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

.play-button-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.play-button-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--secondary);
  margin-left: 2px;
}

/* Hero Image */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 8rem auto;
}

@media (min-width: 768px) {
  .hero-image {
    flex: 1;
  }
}

.image-container {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.image-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(15px);
  border-radius: 50%;
  z-index: -1;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.floating-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.card-1 {
  top: -70px;
  left: -20px;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: -80px;
  right: -30px;
  animation: float 7s ease-in-out infinite 1s;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-text {
  flex: 1;
}

.card-title {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9rem !important;
  margin-bottom: 0.15rem !important;
}

.card-subtitle {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.notification {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  bottom: -60px;
  left: 20px;
  animation: float 5s ease-in-out infinite 0.5s;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon svg {
  width: 20px;
  height: 20px;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.notification-time {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* Clients Badge */
.clients-badge {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  animation: float 6s ease-in-out infinite 1.5s;
}

.clients-avatars {
  display: flex;
  margin-right: 0.5rem;
}

.client-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -10px;
  border: 2px solid var(--white);
}

.client-avatar:first-child {
  margin-left: 0;
  background-color: var(--secondary);
}

.client-avatar:last-child {
  background-color: var(--gray-200);
  color: var(--gray-700);
}

.clients-text {
  flex: 1;
}

.clients-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.clients-rating {
  display: flex;
  align-items: center;
}

.star {
  color: #FFD700;
  font-size: 0.875rem;
}

.rating-number {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: fadeInUp 2s ease infinite;
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 20px;
  position: relative;
  margin-bottom: 0.5rem;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s ease infinite;
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  rotate: 180deg;
}

.fill-white {
  fill: var(--white);
}

/* Bento Features Section */
.bento-features-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.bento-features-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  margin-bottom: 4rem;
}

.bento-features-section .badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(94, 207, 177, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.bento-features-section .badge-icon {
  background-color: #5ecfb1;
  border-radius: 50%;
  padding: 0.25rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-features-section .badge-icon .icon {
  width: 1rem;
  height: 1rem;
  color: white;
}

.bento-features-section .badge-text {
  color: #4ab69e;
  font-size: 0.875rem;
  font-weight: 500;
}

.bento-features-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bento-features-section .section-title .highlight {
  color: #2a4eca;
}

.bento-features-section .section-description {
  color: #4b5563;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.text-contacto {
  padding: 0 0 10px 0;
}

@media (max-width: 768px) {
  .text-contacto {
    padding: 0 0 17px 0;
  }
}


/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bento-features-section .section-title {
    font-size: 2.5rem;
  }
}

/* Bento Card */
.bento-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
}

.bento-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Sizes */
.bento-card.medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card.big {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card.tall {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .bento-card.big {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .bento-card.tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

/* Card Colors */
.bento-card.primary {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(42, 77, 202, 0.089));
  border-color: rgba(42, 78, 202, 0.1);
}

.bento-card.secondary {
  background: linear-gradient(to bottom right, rgba(110, 223, 193, 0.1), rgba(94, 207, 177, 0.075));
  border-color: rgba(94, 207, 177, 0.1);
}

.bento-card.blue {
  background: linear-gradient(to bottom right, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.2));
  border-color: rgba(59, 130, 246, 0.1);
}

.bento-card.purple {
  background: linear-gradient(to bottom right, rgba(167, 139, 250, 0.1), rgba(139, 92, 246, 0.2));
  border-color: rgba(139, 92, 246, 0.1);
}

.bento-card.green {
  background: linear-gradient(to bottom right, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.2));
  border-color: rgba(16, 185, 129, 0.1);
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.bento-card.primary .card-icon {
  background: linear-gradient(to bottom right, rgba(58, 95, 218, 0.1), rgba(42, 78, 202, 0.2));
  color: #2a4eca;
}

.bento-card.secondary .card-icon {
  background: linear-gradient(to bottom right, rgba(110, 223, 193, 0.1), rgba(94, 207, 177, 0.2));
  color: #5ecfb1;
}

.bento-card.blue .card-icon {
  background: linear-gradient(to bottom right, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.2));
  color: #3b82f6;
}

.bento-card.purple .card-icon {
  background: linear-gradient(to bottom right, rgba(167, 139, 250, 0.1), rgba(139, 92, 246, 0.2));
  color: #8b5cf6;
}

.bento-card.green .card-icon {
  background: linear-gradient(to bottom right, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.2));
  color: #10b981;
}

.bento-card:hover .card-icon {
  transform: scale(1.05);
}

.bento-card.primary:hover .card-icon {
  background-color: #2a4eca;
  color: white;
}

.bento-card.secondary:hover .card-icon {
  background-color: #5ecfb1;
  color: white;
}

.bento-card.blue:hover .card-icon {
  background-color: #3b82f6;
  color: white;
}

.bento-card.purple:hover .card-icon {
  background-color: #8b5cf6;
  color: white;
}

.bento-card.green:hover .card-icon {
  background-color: #10b981;
  color: white;
}

.sol-card-title {
  top: 2vh;
  left: 4vw;
  display: flex;
  position: absolute;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-family: 'Roboto', sans-serif;
}

.sol-card-title span {
  font-weight: 800;
}

@media (max-width: 1450px) {
  .sol-card-title {
    top: 2vh;
    left: 6vw;
  }
  
}

@media (max-width: 950px) {
  .sol-card-title {
    top: 2vh;
    left: 8vw;
  }
  .scroll-indicator {
    bottom: 5rem;
  }
  .card-1{
    top: -70px !important;
  }
  .card-2{
    top: -100px !important;
  }
  .notification{
    bottom: -50px !important;
    left: 0px ;
  }
  .clients-badge{
    right: -10px !important;
  }
}

@media (max-width: 768px) {
  .sol-card-title {
    top: 2vh;
    left: 10vw;
  }
  .hero-title {
    text-align: center;
  }
  .card-2{
    top: -120px !important;
  }
  .clients-badge{
    bottom: -70px !important;
  }
}

@media (max-width: 640px) {
  .sol-card-title {
    top: 2vh;
    left: 12vw;
  }
  
}

@media (max-width: 480px) {
  .sol-card-title {
    top: 2vh;
    left: 15vw;
  }
  .scroll-indicator {
    bottom: 1rem;
  }
  .card-1{
    top: -80px !important;
  }
  .card-2{
    top: -150px !important;
  }
  .notification{
    bottom: -70px !important;
    left: -10px ;
  }
  .clients-badge{
    bottom: -120px !important;
  }
}

@media (max-width: 375px) {
  .sol-card-title {
    top: 2vh;
    left: 20vw;
  }
  .card-1{
    top: -90px !important;
  }
  .card-2{
    top: -160px !important;
  }
}

.bento-card.primary .sol-card-title span {
  color: #1a3190;
}

.bento-card.secondary .sol-card-title span {
  color: #4ab69e;
}

.bento-card.blue .sol-card-title span {
  color: #2563eb;
}

.bento-card.purple .sol-card-title span {
  color: #7c3aed;
}

.bento-card.green .sol-card-title span {
  color: #059669;
}

.card-description {
  color: #4b5563;
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
  transition: all 0.6s ease;
}

.bento-card.primary .card-link {
  color: #1a3190;
}

.bento-card.secondary .card-link {
  color: #4ab69e;
}

.bento-card.blue .card-link {
  color: #2563eb;
}

.bento-card.purple .card-link {
  color: #7c3aed;
}

.bento-card.green .card-link {
  color: #059669;
}

.bento-card.primary .arrow-icon {
  color: #1a3190;
}

.bento-card.secondary .arrow-icon {
  color: #4ab69e;
}

.bento-card.blue .arrow-icon {
  color: #2563eb;
}

.bento-card.purple .arrow-icon {
  color: #7c3aed;
}

.bento-card.green .arrow-icon {
  color: #059669;
}

.arrow-icon {
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.bento-card:hover .arrow-icon {
  transform: translateX(4px);
}

.bento-card:hover .card-link {
  text-decoration: underline;
}
/* Card Background */
.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.dot-1 {
  top: 20%;
  right: 20%;
  width: 0.5rem;
  height: 0.5rem;
  animation: pulse-slow 3s infinite;
}

.dot-2 {
  bottom: 30%;
  right: 40%;
  width: 0.25rem;
  height: 0.25rem;
  animation: pulse-slow 4s infinite 1s;
}

.bento-card.primary .bg-dot {
  background-color: #2a4eca;
}

.bento-card.secondary .bg-dot {
  background-color: #5ecfb1;
}

.bento-card.blue .bg-dot {
  background-color: #3b82f6;
}

.bento-card.purple .bg-dot {
  background-color: #2C68E8;
}

.bento-card.green .bg-dot {
  background-color: #10b981;
}

.card-number {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.05;
  transition: opacity 0.3s ease;
}

.bento-card:hover .card-number {
  opacity: 0.1;
}

/* Section Footer */
.bento-features-section .section-footer {
  margin-top: 3rem;
  text-align: center;
}

.bento-features-section .cta-button {
  display: inline-flex;
  align-items: center;
  background-color: #2a4eca;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.bento-features-section .cta-button:hover {
  background-color: #1a3190;
}

.external-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.bento-features-section .cta-button:hover .external-icon {
  transform: rotate(45deg);
}

/* Background Elements */
.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(110, 223, 193, 0.05), rgba(42, 78, 202, 0.05)) !important;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px) !important;
  background-size: 30px 30px;
  opacity: 0.3;
}

.logistics-element2 {
  position: absolute;
  color: rgba(42, 77, 202, 0.219);
  transition: all 0.3s ease;
}

.logistics-element2.ship2 {
  top: 20%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.logistics-element2.globe {
  bottom: 15%;
  left: 10%;
  animation: float-reverse 10s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes float-reverse {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(15px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 6px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

