:root {
  /* Color Variables */
  --primary: #FFA630;       /* Main brand color (orange) */
  --primary-dark: #e6952b;  /* Darker shade for hover states */
  --primary-light: #FFD699; /* Lighter shade for accents */
  --secondary: #5C8001;     /* Complementary green */
  --dark: #1E1E24;          /* Dark gray for text and backgrounds */
  --dark-80: rgba(30, 30, 36, 0.8); /* Semi-transparent dark */
  --light: #F7F7FF;         /* Off-white background */
  --light-gray: #f8f9fa;    /* Light gray background */
  --accent: #FF5E5B;        /* Red accent color */
  --text: #333333;          /* Primary text color */
  --text-light: #6c757d;    /* Secondary text color */
  
  /* Spacing Variables */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

/* Base Styles */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--light-gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Layout Components */
.container {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Navigation */
.navbar {
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: var(--space-xs) 0;
  background-color: var(--dark-80) !important;
  backdrop-filter: blur(10px);
}


.navbar-brand img {
  height: 80px;
  margin-right: var(--space-xs);
}

.nav-link {
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm) !important;
  position: relative;
  color: var(--dark) !important;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero h1 {
  font-weight: 800;
  text-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Buttons */
.btn {
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
}

/* Cards */
.card {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -10px;
  left: 25%;
  background-color: var(--primary);
}



/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

footer a {
  color: white;
}

footer a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Utility Classes */
.bg-light {
  background-color: var(--light-gray) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }
  
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .navbar-brand img {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    margin-bottom: var(--space-xs);
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
  text-decoration: none;
}