/* Estilos para a seção Hero */
.hero .swiper-pagination {
  position: absolute !important;
  bottom: 30px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  z-index: 10 !important;
  transform: none !important;
}

.hero .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.hero .swiper-pagination-bullet-active {
  background-color: #ffd700 !important;
  transform: scale(1.2) !important;
}

@media (max-width: 768px) {
  .hero .swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero .swiper-pagination {
    position: absolute !important;
    bottom: 15px !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
  }

  .hero .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
  }
}

.home-description {
  padding: 4rem 0 0;
  background-color: #f5f5f5;
}

.home-description-content {
  margin: 0 auto;
  padding-right: 10%;
}

.home-description-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: left;
  position: relative;
  padding-left: 0;
}

.home-description-header img {
  width: auto;
  height: 150px;
  flex-shrink: 0;
}

.home-description-header p {
  max-width: 800px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #555;
}

/* Estilos para a seção de números */
.numbers {
  background-color: #2b1463;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.numbers-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  align-items: center;
}

.number-item {
  flex: 0 0 auto;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.number-circle {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-ring {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(-90deg);
  z-index: 2;
}

.progress-ring-circle-bg,
.progress-ring-circle {
  fill: transparent;
  r: 174px;
  cx: 175px;
  cy: 175px;
}

.progress-ring-circle-bg {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2px;
}

.progress-ring-circle {
  stroke: #fff;
  stroke-width: 3.5px;
  stroke-dasharray: 1093;
  stroke-dashoffset: var(--offset, 1093);
  stroke-linecap: round;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.7));
}

.number-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  position: relative;
  z-index: 3;
}

.number {
  font-family: "Gilroy", sans-serif;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  white-space: nowrap;
}

.label {
  font-family: "Gilroy", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  opacity: 0.9;
  text-align: center;
}

@media (max-width: 1600px) {
  .number-circle {
    width: 280px;
    height: 280px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    fill: transparent;
    r: 139px;
    cx: 140px;
    cy: 140px;
  }

  .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2px;
  }

  .progress-ring-circle {
    stroke: #fff;
    stroke-width: 3.5px;
    stroke-dasharray: 873;
    stroke-dashoffset: var(--offset, 873);
    stroke-linecap: round;
  }

  .number {
    font-size: 44px;
  }
}

@media (max-width: 1400px) {
  .number-circle {
    width: 250px;
    height: 250px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    fill: transparent;
    r: 124px;
    cx: 125px;
    cy: 125px;
  }

  .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2px;
  }

  .progress-ring-circle {
    stroke: #fff;
    stroke-width: 3.5px;
    stroke-dasharray: 779;
    stroke-dashoffset: var(--offset, 779);
    stroke-linecap: round;
  }

  .number {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .number-item {
    margin: 8px;
  }

  .number-circle {
    width: 200px;
    height: 200px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    fill: transparent;
    r: 99px;
    cx: 100px;
    cy: 100px;
  }

  .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2px;
  }

  .progress-ring-circle {
    stroke: #fff;
    stroke-width: 3px;
    stroke-dasharray: 622;
    stroke-dashoffset: var(--offset, 622);
    stroke-linecap: round;
  }

  .number {
    font-size: 32px;
  }

  .label {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .number-item {
    margin: 5px;
  }

  .number-circle {
    width: 170px;
    height: 170px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    fill: transparent;
    r: 84px;
    cx: 85px;
    cy: 85px;
  }

  .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2px;
  }

  .progress-ring-circle {
    stroke: #fff;
    stroke-width: 3px;
    stroke-dasharray: 528;
    stroke-dashoffset: var(--offset, 528);
    stroke-linecap: round;
  }

  .number {
    font-size: 28px;
  }

  .label {
    font-size: 13px;
  }
}

@media (max-width: 850px) {
  .number-circle {
    width: 150px;
    height: 150px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    fill: transparent;
    r: 74px;
    cx: 75px;
    cy: 75px;
  }

  .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2px;
  }

  .progress-ring-circle {
    stroke: #fff;
    stroke-width: 3px;
    stroke-dasharray: 465;
    stroke-dashoffset: var(--offset, 465);
    stroke-linecap: round;
  }

  .number {
    font-size: 24px;
    margin-bottom: 3px;
  }

  .label {
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .home-description-content {
    padding-right: 0;
  }

  .numbers {
    padding: 60px 0;
    height: auto;
  }

  .numbers-grid {
    flex-direction: column;
    align-items: center;
  }

  .number-item {
    margin: 0 0 50px;
    width: 100%;
    max-width: 320px;
  }

  .number-item:last-child {
    margin-bottom: 0;
  }

  /* Abordagem com border em vez de SVG para mobile */
  .number-circle {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.3) inset;
  }

  /* Escondemos o SVG que está causando problemas em mobile */
  .progress-ring {
    display: none;
  }

  /* Ajustamos o conteúdo para ocupar todo o círculo */
  .number-content {
    width: 100%;
    height: 100%;
  }

  .number {
    font-size: 42px;
    margin-bottom: 5px;
  }

  .label {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .home-description-content {
    padding-right: 0;
  }

  .home-description-header {
    flex-direction: column-reverse;
  }

  .home-description-header p {
    text-align: center;
  }

  .home-description-header img {
    height: auto;
    width: 100%;
  }

  .number-item {
    margin-bottom: 40px;
    max-width: 280px;
  }

  .number-circle {
    width: 280px;
    height: 280px;
    border-width: 4px;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.3) inset;
  }

  .number {
    font-size: 38px;
  }

  .label {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .number-circle {
    width: 260px;
    height: 260px;
  }

  .number {
    font-size: 36px;
  }
}
