@font-face {
  font-family: 'Athletics';
  src: url('../fonts/Athletics-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Athletics';
  src: url('../fonts/Athletics-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Athletics';
  src: url('../fonts/Athletics-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Athletics';
  src: url('../fonts/Athletics-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

:root {
  --background: #fefffe;
  --foreground: #121212;
  --primary: #06d432;
  --primary-foreground: #121212;
  --muted: #f5f5f4;
  --muted-foreground: #737373;
  --border: #e5e5e5;
}

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

body {
  font-family: 'Athletics', Helvetica, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(229, 229, 229, 0.3);
}

header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

header .logo {
  height: 20px;
  width: auto;
}

header .title-section {
  text-align: right;
}

header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

header .subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

main {
  flex: 1;
  padding: 1.5rem 1rem;
}

footer {
  padding: 0.75rem;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

footer .footer-line {
  width: 3rem;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  margin: 0 auto 0.5rem;
}

footer .copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.wespee-intro {
  font-size: 1.125rem;
  color: rgba(18, 18, 18, 0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
  background: linear-gradient(to right, rgba(6, 212, 50, 0.05), transparent);
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  animation: fadeInUp 0.5s ease forwards;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.back-button:hover {
  background-color: #05c02d;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-button svg {
  width: 1rem;
  height: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(6, 212, 50, 0.3);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.card-link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

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

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 40px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }
.accordion-item:nth-child(6) { animation-delay: 0.6s; }
.accordion-item:nth-child(7) { animation-delay: 0.7s; }
.accordion-item:nth-child(8) { animation-delay: 0.8s; }
.accordion-item:nth-child(9) { animation-delay: 0.9s; }
.accordion-item:nth-child(10) { animation-delay: 1s; }
.accordion-item:nth-child(11) { animation-delay: 1.1s; }
.accordion-item:nth-child(12) { animation-delay: 1.2s; }

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  transition: background-color 0.2s;
}

.accordion-trigger:hover {
  background-color: var(--muted);
}

.accordion-trigger.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.accordion-trigger svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

.accordion-trigger.active svg {
  transform: rotate(180deg);
  color: var(--primary-foreground);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: white;
}

.accordion-content.open {
  display: block;
}

.accordion-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content h4 {
  color: #9333ea;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.accordion-content ul {
  list-style: none;
  padding-left: 0;
}

.accordion-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.accordion-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  gap: 15px;
  background-color: #fefffb;
}

.not-found img {
  width: 98px;
  margin-bottom: 2rem;
}

.not-found h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  max-width: 297px;
}

.not-found p {
  font-size: 1rem;
  text-align: center;
  max-width: 353px;
  color: var(--foreground);
}

.not-found .btn-home {
  margin-top: 2rem;
  width: 281px;
  height: 60px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  border-radius: 76px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.not-found .btn-home:hover {
  background-color: #05c02d;
}

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