/* Norizon Agropecuária Standby Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #11321e;       /* Deep Forest Green */
  --primary-light: #235838; /* Medium Warm Green */
  --secondary: #ab825d;     /* Warm Earth Gold/Brown */
  --accent: #eae4d9;        /* Warm Cream Accent */
  --bg-light: #fbfaf7;      /* High-end off-white/cream background */
  --text-dark: #1f2f25;     /* Soft dark green-gray for readability */
  --text-muted: #5e6d64;    /* Slate-green for secondary texts */
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Cinzel', serif;
}

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

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

/* Glassmorphism details */
.glass-panel {
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(171, 130, 93, 0.15);
}

.glass-panel-dark {
  background: rgba(17, 50, 30, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom button styles */
.btn-gold {
  background-color: var(--secondary);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #936b47;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(171, 130, 93, 0.3);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(171, 130, 93, 0.15);
}

/* Pillar Card Hover effect */
.pillar-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(17, 50, 30, 0.05);
}
