@import url('https://fonts.googleapis.com/css2?family=Fauna+One&family=Syne:wght@400;700;800&display=swap');

html { font-size: 110%; }

:root {
  --cor-fundo: #F7EFE0;
  --cor-oliva: #3A4D28;
  --cor-terracota: #B83A23;
  --cor-texto: #333;
  --cor-card: #F7EFE0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #ffffff;
  color: var(--cor-texto);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 200px;
}

::selection { background-color: var(--cor-terracota); color: #fff; }
::-moz-selection { background-color: var(--cor-terracota); color: #fff; }

.depo-header {
  text-align: center;
  padding: 50px 20px 40px;
  animation: fadeInUp 0.6s ease-out forwards;
}

.depo-header h1 {
  color: var(--cor-oliva);
  font-family: 'Fauna One', serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.depo-header p {
  color: var(--cor-texto);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}

.depo-header a {
  color: var(--cor-terracota);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.depo-header a:hover { color: #9c2e1b; }

.depo-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  flex: 1;
}

.depo-card {
  background: var(--cor-card);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 28px rgba(58,77,40,0.08), 0 1px 4px rgba(58,77,40,0.04);
  text-align: center;
  animation: fadeInUp 0.6s ease-out forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.depo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cor-oliva), var(--cor-terracota));
}

.depo-card-icone {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.6;
}

.depo-card h3 {
  color: var(--cor-oliva);
  font-family: 'Fauna One', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.depo-card p {
  color: var(--cor-texto);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.depo-card:nth-child(1) { animation-delay: 0.1s; }
.depo-card:nth-child(2) { animation-delay: 0.2s; }
.depo-card:nth-child(3) { animation-delay: 0.3s; }
.depo-card:nth-child(4) { animation-delay: 0.4s; }
.depo-card:nth-child(5) { animation-delay: 0.5s; }
.depo-card:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  body { padding-top: 150px; }
  .depo-header { padding: 30px 15px 20px; }
  .depo-header h1 { font-size: 2rem; }
  .depo-header p { font-size: 1rem; }
  .depo-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  body { padding-top: 130px; }
  .depo-header h1 { font-size: 1.6rem; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}