body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f0f1 !important;
  color: #2D3A40;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  background-color: #f0f0f1;
  padding: 0px 0;
  border-bottom: none;
  margin-top: -2rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f1;
}
.logo {
  height: 140px;
  object-fit: contain;
    background-color: #f0f0f1;

}
.navbar-brand .logo {
  height: 210px !important; /* ⬅️ reduzido para caber melhor no navbar */
  object-fit: contain;
}
.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; /* ⬅️ diminui um pouco para ficar melhor */
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.navbar-nav .nav-link:hover {
  color: #E06436; /* cor ao passar o mouse */
}

.navbar-nav .nav-link.selectedPage,
.navbar-nav .nav-link.active {
  color: #E06436;
  font-weight: 700;
  position: relative;
  
}

/* Linha abaixo do menu ativo, estilo parecido com seu original */
.navbar-nav .nav-link.selectedPage::after,
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background-color: #E06436;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 0.4rem 0;
  }
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.seo-audit-benefits h5,
.plan-section h2,
.testimonials-section h2 {
  position: relative;
  z-index: 2; /* garante que fiquem por cima */
}


@media (min-width: 768px) {
 
.seo-audit-benefits h2{
 font-size: 3rem;
}
.seo-audit-benefits h5{
   font-size: 2rem;

}
.seo-audit-benefits p{
   font-size: 1.4rem;

}
}

/* Section 1 - Banner */
/* Banner base */
.seo-banner-section {
  background-image: url('../images/highergrounddigital-banners-audit-strategy.png'); /* ajuste o caminho conforme sua estrutura real */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-color: #f0f0f1;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

/* Conteúdo dentro do banner */
.banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-text {
  max-width: 600px;
  z-index: 2;
}

.banner-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2D3A40;
}

.banner-text .orange {
  color: #E06436;
}
.seo-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/highergrounddigital-banners-audit-strategy.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  opacity: 0; /* invisível por padrão */
  z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .seo-banner-section {
    background: none; /* remove o bg direto */
    padding-top: 0px;   /* ↓ diminui o espaço superior */
    padding-bottom: 0px; /* ↓ diminui o espaço inferior */
    margin-top: -6rem !important;
  }

  .seo-banner-section::before {
    opacity: 0.15; /* visível só no mobile */
    background-position: 60% center;
    background-size: 220%;
  }

  .banner-text {
    z-index: 2;
    position: relative;
    text-align: center;
    margin: 0 auto;
  }

  .banner-text h1 {
    font-size: 2.2rem;
  }
}

.seo-audit-benefits {
  background-color: #37505F;
  font-family: 'Poppins', sans-serif;
}


/* Responsivo */
@media (max-width: 768px) {
  
  .seo-audit-benefits h2 {
    font-size: 1.5rem;
  }

  .seo-audit-benefits h5 {
    font-size: 1rem;
  }

  .seo-audit-benefits p {
    font-size: 0.95rem;
  }
}


/* SECTION 2: Texto explicativo + botão */
.seo-description-section {
  background-color: #f0f0f1 !important;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
  padding: 40px 20px;
  text-align: center;
}

.seo-description-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.seo-description-section p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

.btn-orange-cta {
  background-color: #E06436;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-orange-cta:hover {
  background-color: #c65528;
}

/* Responsivo */
@media (max-width: 768px) {
    .seo-description-section {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: -7rem;
  
    }
  .seo-description-section h4 {
    font-size: 1rem;
  }

  .seo-description-section p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .btn-orange-cta {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media (min-width: 768px) {
.seo-description-section h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
.seo-description-section h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
.seo-description-section p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}
}

/* ------ Section Benetis MOBILE ------ */

.audit-benefits-mobile {
  background-color: #D9D9D9;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.audit-benefits-mobile h2 {
  font-size: 1.4rem;
}

.highlight {
  color: #2D3A40;
}

.title-underline-mobile {
  width: 100px;
  height: 3px;
  background-color: #E06436;
  margin: 8px auto 0;
  border-radius: 2px;
}

.benefits-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card-mobile,
.benefit-card-wide {
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-card-mobile img,
.benefit-card-wide img,
.benetis-wide-2 img {
  height: 44px;
  margin-bottom: 12px;
}



.benefit-card-mobile h5,
.benefit-card-wide h5,
.benetis-wide-2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card-mobile p,
.benefit-card-wide p,
.benetis-wide-2 {
  font-size: 0.85rem;
  line-height: 1.4;
  flex-grow: 1;
}

/* Larga ocupa full width */
.benefit-card-wide {
  width: 100%;
}

.benefits-wide-2 {
  margin-bottom: 0 !important; /* remove espaçamento externo */
}

.audit-benefits-mobile .btn-insights-mobile {
  margin-top: 24px !important; /* adiciona espaço entre o quadro e o botão */
}

.audit-benefits-mobile {
  padding-bottom: 40px !important; /* reduz o espaço geral da section se necessário */
}
.text-wide{
  margin-bottom: -200px !important;
}

/* Cores das bordas */
.border-orange {
  border-color: #E06436 !important;
}

.border-gray {
  border-color: #6E8791 !important;
}

/* Botão */
.btn-insights-mobile {
  background-color: #E06436;
  color: #fff;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-insights-mobile:hover {
  background-color: #c65528;
}


/* ------ Section Benetis DESKTOP ------ */

.audit-benefits-section {
  background-color: #D9D9D9;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.audit-benefits-section h2 {
  font-size: 1.8rem;
}

.audit-benefits-section .highlight {
  color: #2D3A40;
  text-decoration: underline;
  text-decoration-color: #E06436;
  text-underline-offset: 4px;
}

.benefit-card {
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 65px 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card img {
  height: 120px;
  margin-bottom: 15px;
}

.benefit-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1.2rem;
  line-height: 1.5;
}


/* Borda colorida */
.border-orange {
  border-color: #E06436 !important;
}

.border-gray {
  border-color: #6E8791 !important;
}

/* Botão final */
.btn-insights {
  background-color: #E06436;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-insights:hover {
  background-color: #c65528;
}

/* Imagens dos cards da versão MOBILE */


/* Imagens dos cards da versão DESKTOP */
.benefit-img-desktop {
  width: 200px !important;
  height: auto;
  object-fit: contain; /* NÃO corta nada, respeita toda a imagem */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.benefit-card-mobile{
  height: 120px;
  margin-bottom: 10px;
}


.benefit-card-wide {
  padding: 20px;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #ccc;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  
}

.benefit-card-wide img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.benefit-card-wide h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-card-wide p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Ajustes responsivos (caso queira melhorar visual em telas pequenas) */
@media (max-width: 480px) {
  .benefit-img-mobile {
   width: 90px;
  margin-bottom: 12px;
  height: auto;
  object-fit: contain; /* NÃO corta nada, respeita toda a imagem */
  display: block;
  margin-left: auto;
  margin-right: auto;
  }
}



/* Esconde em mobile */
@media (max-width: 767.98px) {
  .audit-benefits-section {
    display: none !important;
  }
}

.insight-section {
  background-color: #D9D9D9;
  color: #37505F;
  font-family: 'Poppins', sans-serif;
}

.insight-title {
  font-size: 1.8rem;
}

.insight-btn {
  display: inline-block;
  background-color: #37505F;
  color: white;
  font-weight: 600;
  padding: 30px 15px !important; /* ⬅️ aumentei o topo/base de 24px para 36px */
  border-radius: 10px;
  font-size: 1.4rem !important;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.insight-btn:hover {
  background-color: #2c3f4d;
}

.insight-note {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center !important;
  margin-top: 2px !important;
}

.insight-description {
  font-size: 1rem;
  color: #37505F;
  margin-top: 15px !important;
}

.insight-subtitle-container {
  font-weight: 600;
  font-size: 1.1rem;
  color: #37505F;
}




.btn-orange-cta {
  background-color: #E06436;
  color: #fff;
  padding: 12px 85px !important;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-orange-cta:hover {
  background-color: #c65528;
}

@media (max-width: 768px) {
  .insight-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .insight-note {
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
  }
}

.higher-insights-section {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.higher-insights-section h2 {
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}

.title-underline {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #E06436;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.insights-img {
  max-width: 280px;
}

.insights-paragraph {
  font-size: 1.4rem !important;
  line-height: 1.6;
  margin: 0;
}

.included-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
}

.included-list li {
  margin-bottom: 10px;
  font-size: 1.4rem;
  margin-right: 0px !important;
}

.insights-btn {
  border: 2px solid #E06436;
  color: #2D3A40;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.insights-btn:hover {
  background-color: #E06436;
  color: #ffffff;
}


@media (max-width: 768px) {
.insights-paragraph {
  font-size: 1.1rem !important;
  line-height: 1.6;
  margin: 0;
}

.included-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
}

.included-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  margin-right: 0px !important;
}

.insights-btn {
  border: 2px solid #E06436;
  color: #2D3A40;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}



}
/* Responsivo para mobile */
@media (max-width: 768px) {
  .higher-insights-section h2 {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .insights-img {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .insights-paragraph {
    text-align: center;
  }

  .included-list {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }

  .insights-btn {
    font-size: 0.95rem;
    padding: 8px 20px;
  }
}

/* Insight SECTION */

.insight-section {
  background-color: #D9D9D9;
  color: #37505F;
  font-family: 'Poppins', sans-serif;
}

.insight-title {
  font-size: 1.8rem;
  color: #37505F;
}

.insight-btn {
  background-color: #37505F;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.insight-btn:hover {
  background-color: #2e434f;
}

.insight-description {
  font-size: 1rem;
  color: #37505F;
  text-align: center;
}

.insight-note {
  font-size: 0.8rem;
  color: #6c757d;
}

.insight-subtitle {
  font-size: 1rem;
  color: #37505F;
}

.btn-orange-cta {
  background-color: #E06436;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-orange-cta:hover {
  background-color: #c65528;
}


.plan-section {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.chess-icon {
  margin-left: auto;
  margin-right: auto;
}

.tip-box {
  border: 2.5px solid #2D3A40;
  border-radius: 8px;
  padding: 10px 18px; /* menos padding para ficar mais achatado */
  font-size: 1.05rem;  /* texto um pouco maior */
  background-color: #fff;
  max-width: 900px;     /* restringe a largura para evitar que fique muito largo */
  margin: 0 auto;       /* centraliza horizontalmente */
  text-align: center;
  line-height: 1.4;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tip-box:hover {
  border-color: #E06436;
  background-color: #fff9f7;
}



.btn-custom {
  background-color: #E06436;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #c54e2a;
  color: #fff;
}

.testimonials-section {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

/* Título */
.testimonials-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #000000;
  letter-spacing: 1.2px;
}

/* Bloco do depoimento (blockquote) */
.testimonials-section blockquote {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin: 1.5rem auto 0 auto;
  padding: 0 1rem;
  position: relative;
  max-width: 650px;
}

/* Aspas estilizadas */
.testimonials-section blockquote::before {
  content: "“";
  font-size: 4rem;
  color: #E06436;
  position: absolute;
  top: -20px;
  left: -10px;
  font-weight: 900;
  opacity: 0.15;
  font-family: serif;
}

/* Rodapé do blockquote (autor) */
.testimonials-section footer.blockquote-footer {
  font-weight: 600;
  font-size: 0.875rem;
  color: #777;
  margin-top: 1rem;
}

/* Imagens dos depoentes */
.testimonials-section .carousel-item img {
  border: 4px solid #6E8791;
  transition: transform 0.3s ease;
}



/* Controles customizados - setas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(33%) sepia(75%) saturate(3633%) hue-rotate(6deg) brightness(95%) contrast(90%);
  width: 40px;
  height: 40px;
}
#testimonialCarousel {
  position: relative;
  padding-bottom: 40px; 
}
/* Indicadores customizados (dots) */
.carousel-indicators {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  z-index: 20 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.carousel-indicators button {
 width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important; /* <-- garante bolinha redonda */
  border: none !important;
  background-color: #ccc !important;
  opacity: 1 !important;
  transition: background-color 0.3s ease !important;
}

.carousel-indicators button.active {
  background-color: #E06436 !important;
}

/* Responsividade */



@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 1.5rem;
  }
  .testimonials-section blockquote {
    font-size: 0.9rem;
  }
  .testimonials-section footer.blockquote-footer {
    font-size: 0.75rem;
  }
  .testimonials-section .carousel-item img {
    width: 80px !important;
    height: 80px !important;
  }
}

@media (max-width: 767.98px) {
  .carousel-indicators {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background-color: #9c9a9a !important; /* ou a cor desejada */
    opacity: 0.5;
    box-sizing: content-box !important;
  }

  .carousel-indicators .active {
    opacity: 1;
    background-color: #000 !important; /* ativo */
  }
}

.StartRanking {
  padding: 40px 20px;
  text-align: center;
  background: #37505F;
  color: #fff;
}


.StartRanking-text1 {

  color: rgb(255, 255, 255);
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 5px;
 font-weight: bold;

}

.StartRanking-text2 {

  color: rgb(255, 255, 255);
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
 font-weight: normal;


}

.StartRanking-text3 {
  color: rgb(255, 255, 255);
  font-size: 15px;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 25px;
  font-weight: normal;
  transition: color 0.3s ease;
  cursor: pointer;
}

.StartRanking-text3:hover {
  color: #E06436; /* cor laranja no hover */
  text-decoration: underline;
}

/* Esconde em mobile */
@media (max-width: 767.98px) {
  .StartRanking-text3 {
    display: none !important;

  }

  .StartRanking-text1 {

  color: rgb(255, 255, 255);
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 5px;
 font-weight: bold;

}

.StartRanking-text2 {

  color: rgb(255, 255, 255);
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
 font-weight: normal;


}
}

.btn-schedule{
  display: inline-block;
  padding: 12px 84px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: 4px solid #A7B6C3;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-schedule:hover {
  background-color: #E06436;
  color: #ffffff;
}
.footer {
  background-color: #2c3e41; /* Cor escura do fundo */
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #E06436;
  text-decoration: none;
}
.footer a.text-light.text-decoration-none:hover {
  color: #E06436 !important;
  text-decoration: none;
}
.footer .btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .btn:hover {
  background-color: #E06436;
  color: #ffffff;
}

.footer img {
  filter: brightness(0.9); /* Dá um leve ajuste nas imagens */
}


/* ----------------------------- Plan 2 Page ----------------------* /
/* Banner section */
.seo-banner-section-plan2 {
  background-image: url('../images/highergrounddigital-banners-launch-program.png'); /* substitua pelo caminho correto */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  background-color: #f0f0f1;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.banner-content-2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-text-2 {
  max-width: 500px;
  z-index: 2;
}

.banner-text-2 h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2D3A40;
}

/* 🔽 Camada de imagem em mobile com opacidade */
.seo-banner-section-plan2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/highergrounddigital-banners-launch-program.png'); /* mesmo caminho da imagem acima */
  background-repeat: no-repeat;
  background-size: 220%;
  background-position: 60% center;
  opacity: 0;
  z-index: 1;
}
@media (min-width: 1400px) {
  .banner-content-2 {
    padding-left: 60px; /* ou 40px, conforme desejar */
    padding-right: 20px;
  }

  .banner-text-2 {
    max-width: 600px; /* você pode aumentar isso também para permitir mais largura */
  }
}
/* 🔽 Estilo para mobile */
@media (max-width: 768px) {
  .seo-banner-section-plan2 {
    background: none;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -5rem;
  }

  .seo-banner-section-plan2::before {
    opacity: 0.1;
  }

  .banner-text-2 {
    position: relative;
    text-align: center;
    margin: 0 auto;
  }

  .banner-text-2 h1 {
    font-size: 2rem;
  }
}

/* --------- Section dos numeros ----------- */
.dashboard-benefits-section {
  background-color: #37505F;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.dashboard-benefits-section h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
}


.benefit-row {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start; 
}
.benefits-squares{
  display: flex;
  flex-direction: column;
  padding-left: 300px !important ;
}
.benefit-row.center-align {
  justify-content: center;
}

.benefit-box {
  background-color: #ffffff;
  color: #37505F;
  padding: 20px 30px 20px 70px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  width: 550px; /* 🔸 largura fixa para todos os quadros */
  max-width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}

.benefit-number {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4.6rem;
  font-weight: 700;
  background: transparent;
  line-height: 1;
}

/* Botão */
.btn-dashboard-demo {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #E06436;
  background-color: transparent;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-dashboard-demo:hover {
  background-color: #E06436;
  color: #ffffff;
}
.outlined-number {
  font-size: 91px; /* Ajuste conforme necessário */
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px #E06436; /* Borda laranja grossa */
  -webkit-text-fill-color: #ffffff; /* Preenchimento branco */
  text-align: left;
  line-height: 1;
  font-family: 'Poppins', sans-serif; /* ou a fonte que estiver usando */

  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.number-two{
    left: -32px;

}

.number-three{
    left: -35px;

}

.number-four{
    left: -35px;

}
.number-five{
    left: -39px;

}
/* Mobile Responsivo */
@media (max-width: 768px) {
  .benefits-squares {
    padding-left: 0 !important;
    align-items: center;
  }
  .dashboard-benefits-section h2 {
  font-size: 1.6rem;
  color: #ffffff;
}

.outlined-number {
  font-size: 120px;
}
  .benefit-row {
    justify-content: center !important;
    width: 100%;
  }

  .benefit-box {
    width: 90%;
    padding: 20px 24px 20px 55px;
    font-size: 0.95rem;
    text-align: left;
  }

  .benefit-number {
    font-size: 3rem;
    left: 15px !important;
    position: absolute;
    transform: translateY(-50%);
  }
.number-one{
    left: -37px;

}
 .number-two{
    left: -39px;

}

.number-three{
    left: -42px;

}

.number-four{
    left: -45px;

}
.number-five{
    left: -42px;

}

  .btn-dashboard-demo {
    width: auto;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* ------------ Section Chess Plan 2 ---------------*/

.launch-plan-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #2D3A40;
}



.launch-plan-img {
  max-width: 200px;
}

.launch-subtitle {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 15px;
}

.highlight-text {
  color: #E06436;
  font-weight: 600;
}

.launch-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.launch-btn {
  background-color: #D9D9D9;
  color: #2D3A40;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.launch-btn:hover {
  background-color: #bbb;
}

/* Responsivo */
@media (max-width: 768px) {
  .launch-plan-content {
    flex-direction: column;
  }

  .launch-plan-img {
    max-width: 140px;
    margin-bottom: 20px;
  }

  .launch-list {
    padding-left: 16px;
  }

  .launch-subtitle {
    text-align: center;
  }
}


.scale-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.scale-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.custom-underline {
  border-bottom: 4px solid #E06436;
  display: inline-block;
  padding-bottom: 4px;
}

/* CONTAINER FLEX AJUSTADO */
.scale-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.scale-content > .col-md-6 {
  flex: 1 1 48%; /* cada coluna ocupa ~48% */
  max-width: 48%;
  padding: 0 10px;
}

.scale-img {
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.scale-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

/* BOTÃO */
.scale-btn {
  border: 2px solid #E06436;
  color: #2D3A40;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scale-btn:hover {
  background-color: #E06436;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .scale-content {
    flex-direction: column;
    gap: 24px;
  }

  .scale-content > .col-md-6 {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .scale-img {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .scale-list {
    font-size: 1rem;
    padding-left: 24px;
  }

  .scale-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}.scale-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.scale-section h2 {
  font-size: 2rem;
  font-weight: 700;
}



/* CONTAINER FLEX AJUSTADO */
.scale-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.scale-content > .col-md-6 {
  flex: 1 1 48%; /* cada coluna ocupa ~48% */
  max-width: 48%;
  padding: 0 10px;
}

.scale-img {
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.scale-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

/* BOTÃO */
.scale-btn {
  border: 2px solid #E06436;
  color: #2D3A40;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scale-btn:hover {
  background-color: #E06436;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .scale-content {
    flex-direction: column;
    gap: 24px;
  }

  .scale-content > .col-md-6 {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .scale-img {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .scale-list {
    font-size: 1rem;
    padding-left: 24px;
  }

  .scale-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}

/* -------------- CARDS SECTION ----------------- */

.dominate-search-section {
  background: #D9D9D9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}


.dominate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas em desktop e mobile */
  gap: 26px 8px; 
  justify-content: center;
   max-width: 860px;
  margin: 0 auto; /* garante que a grid em si fique centralizada no container pai */

}

.dominate-card {
 background: #fff;
  border: 2px solid;
  border-radius: 10px;
  padding: 20px 15px;
  min-height: 240px;        /* 🔼 mais alto */
  max-width: 220px;         /* 🔽 mais fino */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;       /* 🔼 centraliza tudo */
  margin-top: 10px;
}

.dominate-card:hover {
  transform: translateY(-4px);
}

.border-orange {
  border-color: #E06436;
}
.border-gray {
  border-color: #ccc;
}

.dominate-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.dominate-card p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #333;
}

.dominate-addon {
  margin: 40px auto 20px;
  border: 2px solid #ccc;
  padding: 20px;
  max-width: 800px;
  border-radius: 10px;
  background: #fff;
  
}
.dominate-addon h5{
    font-weight: 600;
}
.btn-dominate {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 20px;
  background-color: #A7B6C3;
}
.orange-btn {
  background-color: #E06436;
  color: #fff;
  border: none;
}
.gray-btn {
  background-color: #A7B6C3;
  color: #fff;
  border: none;
}
.mobile-only{
  display: none;
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .dominate-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .dominate-card {
    min-height: auto;
    height: 95px;
    padding: 10px;
    text-align: center;
  }

  .dominate-card p {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
.dominate-card h5 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
}

.seo-matters-section {
  background-color: #37505F;
  padding: 60px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.seo-matters-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: -105px;
}

.seo-matters-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 10px; /* 🔸 reduzido (era 30px) */
  max-width: 100%;
  width: 600px;
}

.seo-matters-image {
  width: 100%;
  height: auto;
  display: block;
  align-content: center;
}

.seo-matters-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  padding: 0 20px;
  text-align: center;
  width: 90%;
}

.seo-matters-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
  margin-top: -125px; /* 🔸 reduzido (era -20px) */
}

/* Responsivo */
@media (max-width: 768px) {
  .seo-matters-title {
    font-size: 1.6rem;
   margin-bottom: -70px;

  }

  .seo-matters-overlay-text {
    font-size: 1rem;
    width: 95%;
  }

 .seo-matters-text {
    font-size: 0.95rem;
    margin-top: -55px; /* 🔸 menos "grudado" que -20px */
  }

  .seo-matters-image-wrapper {
    width: 100%;
    margin-bottom: 0px; /* 🔸 reduzido para mobile também */
  }

  .seo-matters-image {
  width: 100%;
  height: auto;
  display: block;
  align-content: center;
}

}

.highlight-orange {
  color: #E06436;
  font-weight: 600; /* opcional, para reforçar visualmente */
}


/* -------------- Plan 3 ---------------- */

.StartRanking-peak {
  background-color: #37505F;
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.StartRanking-text1-peak {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.StartRanking-text2-peak {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.StartRanking-text2-peak a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.btn-schedule-peak {
  display: inline-block;
  padding: 12px 28px;
  border: 3px solid #C6D4DB;
  background-color: transparent;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.btn-schedule-peak:hover {
  background-color: #ffffff;
  color: #37505F;
}

.StartRanking-text3-peak {
  font-size: 0.95rem;
  margin-top: 10px;
}

.StartRanking-text3-peak a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.StartRanking-text3-peak a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .StartRanking-text1-peak {
    font-size: 1.5rem;
  }

  .StartRanking-text2-peak {
    font-size: 1rem;
  }

  .btn-schedule-peak {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}



/* ----- Section Customize ----- */

.peak-section-info {
  background-color: #D9D9D9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #37505F;
  text-align: center;
}

.peak-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.peak-subtext {
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.peak-highlight-text {
  font-size: 1.1rem;
  color: #E06436;
  font-weight: 600;
  margin-bottom: 15px;
}

.peak-bold-note {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #37505F;
}

.peak-btn {
  display: inline-block;
  background-color: #37505F;
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.peak-btn:hover {
  background-color: #E06436;
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .peak-title {
    font-size: 1.4rem;
  }

  .peak-subtext,
  .peak-highlight-text,
  .peak-bold-note {
    font-size: 1rem;
  }

  .peak-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}


/* ---------- SECTION NUMBERS PLAN 3 ---------------*/
.dashboard-benefits-section-peak {
  background-color: #37505F;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.benefits-squares-peak {
  display: flex;
  flex-direction: column;
  padding-left: 300px !important;
}

.benefit-row-peak {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.benefit-row-peak.center-align {
  justify-content: center;
}

.benefit-box-peak {
  background-color: #ffffff;
  color: #37505F;
  padding: 20px 30px 20px 70px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  width: 550px;
  max-width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}

.outlined-number-peak {
  font-size: 91px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px #E06436;
  -webkit-text-fill-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.number-two { left: -32px; }
.number-three { left: -35px; }
.number-four { left: -35px; }
.number-five { left: -39px; }
.number-six  { left: -39px; }

/* Optional box */
.optional-feature-peak {
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.optional-title-peak {
  font-size: 1.1rem;
  color: white;
}

.optional-img-peak {
  width: 50px;
  height: auto;
}

.optional-box-peak {
  background-color: #fff;
  color: #37505F;
  border-radius: 10px;
  padding: 20px;
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.5;
}

/* Botão final */
.btn-peak-outline {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #E06436;
  background-color: transparent;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-peak-outline:hover {
  background-color: #E06436;
  color: #ffffff;
}

/* Responsivo */
@media (max-width: 768px) {
  .benefits-squares-peak {
    padding-left: 0 !important;
    align-items: center;
  }

  .dashboard-benefits-section-peak h2 {
    font-size: 1.6rem;
  }

  .outlined-number-peak {
    font-size: 120px;
  }

  .benefit-row-peak {
    justify-content: center !important;
    width: 100%;
  }

  .benefit-box-peak {
    width: 90%;
    padding: 20px 24px 20px 55px;
    font-size: 0.95rem;
    text-align: left;
  }

  .number-one  { left: -37px; }
  .number-two  { left: -39px; }
  .number-three{ left: -42px; }
  .number-four { left: -45px; }
  .number-five { left: -42px; }
  .number-six  { left: -42px; }

  .optional-box-peak {
    width: 90%;
  }

  .btn-peak-outline {
    width: auto;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.optional-box-peak {
  background-color: #fff;
  color: #37505F;
  border-radius: 10px;
  padding: 20px;
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.optional-img-peak {
  width: 65px;
  height: auto;
  flex-shrink: 0;
  margin-right: 16px;
}

/* Responsivo - manter centralizado e vertical em mobile */
@media (max-width: 768px) {
  .optional-box-peak {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .optional-img-peak {
    width: 50px;
    margin-left: 25px;
    margin-bottom: 20px;
  }

  .optional-text-peak {
    text-align: center;
  }
}
/* ----- Orange section ----- */
.different-peak-section {
  background-color: #E06436;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.different-peak-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.different-peak-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}

.custom-underline-dark {
  border-bottom: 3px solid #37505F;
  padding-bottom: 1px;
}

.different-peak-text {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
  .different-peak-title {
    font-size: 1.7rem;
  }

  .different-peak-subtitle {
    font-size: 1.4rem;
  }

  .different-peak-text {
    font-size: 0.95rem;
  }
}


/* -------------------- CHESS SECTION PLAN 3 -----------------*/
.launch-plan-peak-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #2D3A40;
}

.launch-plan-peak-img {
  max-width: 250px;
}

.launch-peak-subtitle {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 15px;
}

.highlight-text {
  color: #E06436;
  font-weight: 600;
}

.launch-peak-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.launch-peak-btn {
  background-color: #D9D9D9;
  color: #2D3A40;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.launch-peak-btn:hover {
  background-color: #bbb;
}

/* Responsivo */
@media (max-width: 768px) {
  .launch-plan-peak-content {
    flex-direction: column;
  }

  .launch-plan-peak-img {
    max-width: 140px;
    margin-bottom: 20px;
  }

  .launch-peak-list {
    padding-left: 16px;
  }

  .launch-peak-subtitle {
    text-align: center;
  }
}


/* -------- execution section peak ----------- */

.execution-peak-section {
  background-color: #F5F5F5;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.execution-peak-img {
  max-width: 260px;
  height: auto;
}

.execution-peak-text {
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.execution-peak-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.execution-peak-btn {
  border: 2px solid #E06436;
  color: #2D3A40;
  padding: 12px 206px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease; 

}
.execution-peak-content {
  display: flex;
}
.execution-peak-btn:hover {
  background-color: #E06436;
  color: #fff;
}


/* Responsivo */
@media (max-width: 768px) {
  .execution-peak-content {
    flex-direction: column;
  }

  .execution-peak-img {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .execution-peak-list {
    padding-left: 24px;
    font-size: 0.95rem;
  }

  .execution-peak-text {
    text-align: center;
    font-size: 0.95rem;
  }

  .execution-peak-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}


/*--------------- Cards peak section -----------*/

.dominate-search-peak-section {
  background: #D9D9D9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.dominate-search-peak-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.dominate-peak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 8px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.dominate-card {
  background: #fff;
  border: 2px solid;
  border-radius: 10px;
  padding: 20px 15px;
  min-height: 240px;
  max-width: 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
}

.border-orange {
  border-color: #E06436;
}
.border-gray {
  border-color: #ccc;
}

.dominate-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.dominate-card p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #333;
}

.btn-dominate {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 50px;
  background-color: #A7B6C3;
}

.orange-btn {
  background-color: #E06436;
  color: #fff;
  border: none;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .dominate-peak-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .dominate-card {
    min-height: auto;
    height: 95px;
    padding: 10px;
    text-align: center;

  }

  .dominate-card p {
    display: none;
  }

  .dominate-card h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .desktop-only {
    display: none !important;
  }
.dominate-search-peak-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}


}


/* ----------- Highlight Peak ------------*/

.seo-matters-peak-section {
  background-color: #37505F;
  padding: 60px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.seo-matters-peak-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: -20px;
}

.seo-matters-peak-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 600px;
  margin-top: -80px;
  margin-bottom: -110px; /* 🔸 espaçamento saudável abaixo da imagem */
}

.seo-matters-peak-image {
  width: 100%;
  height: auto;
  display: block;
}

.seo-matters-peak-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  padding: 0 20px;
  text-align: center;
  width: 90%;
}

.seo-matters-peak-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Botão */
.seo-matters-peak-btn {
  background-color: #D9D9D9;
  color: #2D3A40;
  padding: 12px 206px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 800px;
}

.seo-matters-peak-btn:hover {
  background-color: #ccc;
}

/* Responsivo */
@media (max-width: 768px) {
  .seo-matters-peak-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
.seo-matters-peak-btn {
  background-color: #D9D9D9;
  color: #2D3A40;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 400px;
}

  .seo-matters-peak-overlay-text {
    font-size: 1rem;
    width: 95%;
  }

  .seo-matters-peak-text {
    font-size: 0.95rem;
  }

  .seo-matters-peak-image-wrapper {
    width: 100%;
    margin-bottom: -30px;
  }
}


/* ------------- Section Banner peark ---------*/

/* Banner section */
.seo-banner-section-plan3 {
  background-image: url('../images/highergrounddigital-banners-higher-peak-performer.png'); /* substitua pelo caminho correto */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  background-color: #f0f0f1;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.banner-content-3 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-text-3 {
  max-width: 500px;
  z-index: 2;
}

.banner-text-3 h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2D3A40;
}

/* 🔽 Camada de imagem em mobile com opacidade */
.seo-banner-section-plan3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/highergrounddigital-banners-higher-peak-performer.png'); /* mesmo caminho da imagem acima */
  background-repeat: no-repeat;
  background-size: 220%;
  background-position: 60% center;
  opacity: 0;
  z-index: 1;
}

/* 🔽 Estilo para mobile */
@media (max-width: 768px) {
  .seo-banner-section-plan3 {
    background: none;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -5rem;
  }

  .seo-banner-section-plan3::before {
    opacity: 0.1;
  }

  .banner-text-3 {
    position: relative;
    text-align: center;
    margin: 0 auto;
  }

  .banner-text-3 h1 {
    font-size: 2rem;
  }
}

/* ---------- Page JASON ------------ */
/* ---------- Work With Jason Section ---------- */
.work-with-jason-section {
  background-color: #37505F;
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.work-with-jason-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.work-with-jason-text {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.work-with-jason-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
}

.work-with-jason-link:hover {
  color: #E06436;
  text-decoration: underline;
}

.work-with-jason-button {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.work-with-jason-button:hover {
  background-color: #ffffff;
  color: #37505F;
}

/* ------- What its Section -------- */

/* ---------- What It’s Like to Work With Jason Section ---------- */
.work-style-jason-section {
  background-color: #37505F;
  padding: 80px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.work-style-jason-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.work-style-jason-subtitle {
  font-size: 1rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.work-style-jason-list {
  list-style-type: disc;
  padding-left: 1.4rem;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.8;
}

.work-style-jason-button {
  background-color: #E06436;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.work-style-jason-button:hover {
  background-color: #c4522b;
  color: white;
}



/* ------------ Jason includes section ------------*/
.clients-jason-section {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.clients-jason-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2D3A40;
}

.clients-jason-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.2rem;
  color: #2D3A40;
  line-height: 1.8;
}

.clients-jason-img {
  max-width: 70%;
  height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .clients-jason-title {
    text-align: center;
    font-size: 1.2rem;
  }

  .clients-jason-list {
    font-size: 0.95rem;
    padding-left: 16px;
  }

  .clients-jason-img {
    margin-top: 30px;
  }
}

.philosophy-jason-section {
  background-color: #E06436;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
}

.philosophy-jason-image-wrapper {
  margin-bottom: 40px;
  margin-top: -100px;
}

.philosophy-jason-image {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.philosophy-jason-subtitle {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1rem;
  margin-top: -100px;
}

.philosophy-jason-lead {
  font-weight: 600;
  margin-bottom: 10px;
}

.philosophy-jason-list {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: left;
  line-height: 1.8;
  font-size: 0.95rem;
}
.philosophy-jason-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  max-width: 100%;
}

.philosophy-jason-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.philosophy-jason-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  width: 90%;
}
.philosophy-jason-button-wrapper {
  display: flex;
  justify-content: center;
}

.philosophy-jason-btn {
  background-color: white;
  color: #2D3A40;
  border: 2px solid #37505F;
  border-radius: 8px;
  padding: 20px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
  display: inline-block;
  line-height: 1.6;
  max-width: 700px;
  transition: all 0.3s ease;
}

.philosophy-jason-btn:hover {
  background-color: #37505F;
    color: #FFF;

}
@media (max-width: 768px) {
.philosophy-jason-btn {

  text-align: center;
}
}

/*------------ Cards Jason Section -------------*/

/* ----- RECORD RESULTS SECTION JASON ----- */
.record-results-jason-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2D3A40;
}

.record-results-jason-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.record-results-jason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 8px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.record-card-jason {
  background: #fff;
  border: 2px solid;
  border-radius: 10px;
  padding: 20px 15px;
  min-height: 240px;
  max-width: 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.record-card-jason:hover {
  transform: translateY(-4px);
}

.record-card-jason h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.record-card-jason p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #333;
}

.border-orange {
  border-color: #E06436;
}
.border-gray {
  border-color: #ccc;
}

.btn-record-jason {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 40px;
  border: 2px solid #E06436;
  background-color: transparent;
  color: #E06436;
  transition: background-color 0.3s, color 0.3s;
}

.btn-record-jason:hover {
  background-color: #E06436;
  color: #ffffff;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .record-results-jason-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .record-card-jason {
    min-height: auto;
    height: 95px;
    padding: 10px;
    text-align: center;
  }

  .record-card-jason p {
    display: none;
  }

  .record-card-jason h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 10px;
  }

  .desktop-only {
    display: none !important;
  }
  .title-extended-jason h5{
    font-size: 0.7rem;
  }
}

/* ---------- Section 3 Jason page ---------*/
/* -------- EXPERIENCE SECTION JASON -------- */
.experience-jason-section {
  background-color: #37505F;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.experience-jason-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center !important;
}

.experience-jason-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  text-align: center !important;
  margin-left: 240px;
}

.experience-jason-text strong {
  font-weight: 600;
}
@media (min-width: 768px) {
  .experience-jason-title {
  font-size: 2.5rem;

}

.experience-jason-text {
  font-size: 1.5rem;
  max-width: 800px;

}
}
/* Responsivo */
@media (max-width: 768px) {
  .experience-jason-title {
    font-size: 1.3rem;
  }

  .experience-jason-text {
    font-size: 0.95rem;
    text-align: center;
  margin-left: 0px !important;
  }
}


/* -------------- Meet Jason ----------- */
/* -------- INTRO SECTION JASON -------- */
.intro-jason-section {
  background-color: #f0f0f1;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #000;
}

.intro-jason-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-jason-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-jason-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
 .intro-jason-title {
  font-size: 3rem;
}

.intro-jason-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-jason-text {
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
}
/* Responsivo */
@media (max-width: 768px) {
  .intro-jason-title,
  .intro-jason-subtitle {
    font-size: 1.3rem;
  }

  .intro-jason-text {
    font-size: 0.95rem;
  }
  .intro-jason-section {
 margin-top: -100px;
}

}

/* -------- Banner Section Jason ------- */

/* -------- BANNER JASON -------- */
.banner-jason-section {
  background-image: url('../images/highergrounddigital-banners-jason-demmon-page.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-color: #f0f0f1;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.banner-jason-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-jason-text {
  max-width: 600px;
  z-index: 2;
}

.banner-jason-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2D3A40;
}

.banner-jason-text .orange-jason {
  color: #E06436;
}

.banner-jason-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/highergrounddigital-banners-jason-demmon-page.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  opacity: 0; /* invisível em desktop */
  z-index: 1;
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .banner-jason-section {
    background: none;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -6rem !important;
    height: 400px;

  }

  .banner-jason-section::before {
    opacity: 0.15;
    background-position: 80% center;
    background-size: 220%;
  }

  .banner-jason-text {
    z-index: 2;
    position: relative;
    text-align: center;
    margin: 0 auto;
  }

  .banner-jason-text h1 {
    font-size: 2.2rem;
  }
}
