/* Stats Section */
.stats-section {
  background-color: var(--confeitudo-red);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-section {
    padding: 6rem 0;
  }
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}

.stats-svg {
  width: 100%;
  height: 100%;
  stroke: white;
  fill: none;
  stroke-width: 1;
}

.stats-section .container {
  position: relative;
  z-index: 10;
}

.stats-title {
  font-size: 1.875rem;
  font-family: "Playfair Display", serif;
  color: white;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .stats-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

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

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

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
  min-width: 100px;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
