:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --secondary: #e8f5e9;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-color: #f9fafb;
  --white: #ffffff;
  
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}


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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-dark);
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utilities */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(46, 125, 50, 0.2), 0 2px 4px -1px rgba(46, 125, 50, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(46, 125, 50, 0.3), 0 4px 6px -2px rgba(46, 125, 50, 0.1);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Header / Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 2rem;
}

header.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: none;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: block;
  }
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 2rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 1001;
}

.mobile-menu.open {
  display: flex;
  background-color: #ffffff !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 4rem 2rem 2rem;
}

footer a:hover {
  color: white;
}

/* Feature Cards */
.feature-card {
  padding: 2.5rem 2rem;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  background: white;
}

/* Pricing Cards */
.price-card {
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:not(.destaque):hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.price-card.destaque {
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 25px 50px -12px rgba(46, 125, 50, 0.4);
  border: none;
  transform: scale(1.05);
  z-index: 2;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: auto;
  max-width: 400px;
  z-index: 2000;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease-out forwards;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-content .btn {
  align-self: flex-start;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

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

@media (max-width: 600px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
