
/* Base Styles */
:root {
  --primary: #9b87f5;
  --primary-light: #b3a4f7;
  --primary-dark: #7e69ab;
  --secondary: #8E9196;
  --secondary-light: #A1A4A8;
  --secondary-dark: #6B6E73;
  --success: #4CAF50;
  --success-light: #81C784;
  --success-dark: #388E3C;
  --dark: #1A1F2C;
  --dark-light: #2A2F3C;
  --blue-light: #D3E4FD;
  --green-light: #F2FCE2;
  --orange-light: #FDE1D3;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
  background-color: var(--dark);
}

/* Background custom */
.bg-dark-custom {
  background-color: rgba(26, 31, 44, 0.9);
  backdrop-filter: blur(10px);
}

.bg-primary-light {
  background-color: rgba(179, 164, 247, 0.1);
}

/* Animation styles */
.fade-in-item {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Hero section */
#hero {
  padding-top: 7rem;
  background: linear-gradient(135deg, #1A1F2C 0%, #0F1420 100%);
  background-size: 400px 400px, 60px 60px;
  background-position: center, center;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: -1;
}

.hero-image-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

/* Bank logos */
.bank-logo {
  max-height: 60px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.bank-logo:hover {
  transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: white;
}

/* Footer */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9b9ea3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact li {
  color: #9b9ea3;
  margin-bottom: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
}

/* Helper Classes */
.py-lg-7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.rounded-4 {
  border-radius: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .py-lg-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
