.govolo-about {
  background-color: #ffffff;
  color: #241442;
  font-family: "Poppins", sans-serif;
  padding: 80px 0;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.govolo-title {
  font-size: 42px;
  font-weight: 700;
  color: #241442;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.govolo-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f8bc24;
  margin: 10px auto 0;
  border-radius: 2px;
}

.govolo-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #5b3aee;
  margin-bottom: 15px;
  position: relative;
}

.govolo-subtitle::before {
  content: "⚠";
  color: #f8bc24;
  margin-right: 10px;
}

.govolo-text {
  font-size: 18px;
  color: #241442;
  margin-bottom: 40px;
}

.govolo-warning {
  background-color: #f8f7ff;
  border-left: 5px solid #5b3aee;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.govolo-risk {
  background-color: #fff9ef;
  border-left: 5px solid #f8bc24;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.govolo-age {
  background-color: #f4f1ff;
  border-left: 5px solid #241442;
  padding: 30px;
  border-radius: 10px;
}

.review-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.review-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.review-item-row>div {
  flex: 1 1 18%;
  min-width: 180px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 10px;
}

.review-item-row>div:hover {
  background: rgba(108, 92, 231, 0.05);
  transform: scale(1.02);
}

.review-col-logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}

.review-col-rating ul {
  text-align: center;
  padding: 0;
  margin: 0;
}

.review-col-rating li {
  display: inline-block;
  font-size: 2 rem;
  color: #fdcb6e;
  transition: transform 0.2s;
}

.review-col-rating li:hover {
  transform: scale(1.15);
}

.review-col-rating .btn-read-more {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #6c5ce7;
  display: inline-block;
}

.review-col-bonus h5 {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: #2d3436;
  text-align: center;
  margin: 0.5rem 0;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #2d3436;
  margin: 0.5rem 0;
}

.review-col-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.review-col-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #103755;
  font-weight: bold;
  font-size: 1rem;
}

.review-col-btn {
  text-align: center;
  margin-top: 1rem;
}

.review-btn {
  display: inline-block;
  background: linear-gradient(135deg, #103755, #25699d);
  color: #fff !important;
  font-weight: bold;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-btn:hover {
  background: linear-gradient(135deg, #103755, #25699d);
  transform: scale(1.05);
}

.review-col-btn p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #888;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .review-item-row>div {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .review-item-row>div {
    flex: 1 1 100%;
  }

  .review-item {
    padding: 1.5rem;
  }
}

.about-govolo {
  background-color: #ffffff;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.about-govolo .container {
  max-width: 1200px;
  width: 100%;
}

.about-wrapper {
  text-align: center;
}

.about-wrapper .sub-title {
  color: #241442;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-wrapper .main-title {
  font-size: 48px;
  font-weight: 700;
  color: #5b3aee;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-wrapper .main-title .highlight {
  color: #f8bc24;
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #241442;
  margin-bottom: 30px;
}

.about-content p.final {
  font-weight: 600;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .about-wrapper .main-title {
    font-size: 38px;
  }

  .about-content p {
    font-size: 18px;
  }

  .about-content p.final {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-wrapper .main-title {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-content p.final {
    font-size: 18px;
  }
}

.contact-govolo {
  background-color: #ffffff;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.contact-govolo .container {
  max-width: 1200px;
  width: 100%;
}

.contact-wrapper {
  text-align: center;
}

.contact-wrapper .sub-title {
  color: #241442;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-wrapper .main-title {
  font-size: 48px;
  font-weight: 700;
  color: #5b3aee;
  line-height: 1.2;
  margin-bottom: 40px;
}

.contact-wrapper p {
  font-size: 20px;
  line-height: 1.8;
  color: #241442;
  margin-bottom: 30px;
}

.contact-wrapper p.email {
  font-weight: 600;
  font-size: 22px;
  color: #f8bc24;
}

.contact-wrapper p.final-note {
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
  color: #241442;
}

@media (max-width: 1024px) {
  .contact-wrapper .main-title {
    font-size: 38px;
  }

  .contact-wrapper p {
    font-size: 18px;
  }

  .contact-wrapper p.email {
    font-size: 20px;
  }

  .contact-wrapper p.final-note {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper .main-title {
    font-size: 32px;
  }

  .contact-wrapper p {
    font-size: 16px;
  }

  .contact-wrapper p.email {
    font-size: 18px;
  }

  .contact-wrapper p.final-note {
    font-size: 14px;
  }
}

.jogo-responsavel {
  background-color: #ffffff;
}

.jogo-responsavel .jr-title {
  font-size: 48px;
  font-weight: 700;
  color: #241442;
  /* escuro para destaque */
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.jogo-responsavel .jr-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

.jogo-responsavel .jr-text a.jr-link {
  color: #5b3aee;
  text-decoration: underline;
  transition: color 0.3s;
}

.jogo-responsavel .jr-text a.jr-link:hover {
  color: #f8bc24;
}

.jogo-responsavel .jr-warning {
  font-weight: 600;
  color: #f8bc24;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}
.politica-privacidade {
  background-color: #ffffff;
}

.politica-privacidade .pp-title {
  font-size: 48px;
  font-weight: 700;
  color: #241442;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.politica-privacidade .pp-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

.politica-privacidade .pp-text a.pp-link {
  color: #5b3aee;
  text-decoration: underline;
  transition: color 0.3s;
}

.politica-privacidade .pp-text a.pp-link:hover {
  color: #f8bc24;
}

.politica-privacidade .pp-warning {
  font-weight: 600;
  color: #f8bc24;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}

.termos-condicoes {
  background-color: #ffffff;
}

.termos-condicoes .tc-title {
  font-size: 48px;
  font-weight: 700;
  color: #241442;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.termos-condicoes .tc-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

.termos-condicoes .tc-text a.tc-link {
  color: #5b3aee;
  text-decoration: underline;
  transition: color 0.3s;
}

.termos-condicoes .tc-text a.tc-link:hover {
  color: #f8bc24;
}

.termos-condicoes .tc-warning {
  font-weight: 600;
  color: #f8bc24;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}

.politica-cookies {
  background-color: #ffffff;
}

.politica-cookies .pc-title {
  font-size: 48px;
  font-weight: 700;
  color: #241442;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.politica-cookies .pc-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

.politica-cookies .pc-text a.pc-link {
  color: #5b3aee;
  text-decoration: underline;
  transition: color 0.3s;
}

.politica-cookies .pc-text a.pc-link:hover {
  color: #f8bc24;
}

.politica-cookies .pc-warning {
  font-weight: 600;
  color: #f8bc24;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}