/* ===================================================
   1. RESET E VARIÁVEIS GERAIS
   =================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  --primary-pink: #d81b60;
  --primary-pink-hover: #c2185b;
  --purple-accent: #5e35b1;
  --dark-bg:#051a2c;
  --light-bg: #f9f9f9;
  --text-color: #333333;
  --text-muted: #666666;
}

html {
  scroll-behavior: smooth;
}

section, [id] {
  scroll-margin-top: 90px;
}

body {
  color: var(--text-color);
  background-color: #ffffff;
  line-height: 1.6;
}

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

/* ===================================================
   2. COMPONENTES: BOTÕES
   =================================================== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-pink,
.btn-purple {
  background-color: var(--primary-pink);
  color: white;
}

.btn-primary-pink:hover,
.btn-purple:hover {
  background-color: var(--primary-pink-hover);
}

.btn-outline-pink {
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
}

.btn-dark {
  background-color: var(--dark-bg);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--primary-pink);
}

.btn-plataforma {
  background-color: #051a2c !important;
  border-color: #051a2c !important;
  color: #ffffff !important;
}

/* ===================================================
   3. NAVEGAÇÃO / HEADER
   =================================================== */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a,
nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after,
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-pink);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after,
nav a:hover::after {
  width: 100%;
}

.nav-links a:hover,
nav a:hover {
  color: var(--primary-pink);
}

.btn-header,
header .btn,
.nav-btn {
  transition: all 0.3s ease;
}

.btn-header:hover,
header .btn:hover,
.nav-btn:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
}

/* ===================================================
   4. SEÇÃO HERO
   =================================================== */
.hero {
  background-image: url('imagens/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: #ffffff;
}

.hero-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 650px;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.highlight {
  color: var(--primary-pink);
}

.hero-text h2 {
  font-size: 2.8rem;
  color: var(--primary-pink);
  margin: 15px 0;
}

.hero-description {
  max-width: 650px;
  line-height: 1.5;
}

.hero .sub-text {
  color: #e0e0e0;
  margin-top: 10px;
}

.hero-media {
  flex: 1;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.quote-card {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  border-radius: 8px;
  max-width: 250px;
  font-size: 0.85rem;
}

/* ===================================================
   5. SEÇÃO "VOCÊ SE IDENTIFICA?"
   =================================================== */
.identifica {
  padding: 80px 0 60px 0;
  background-color: #ffffff;
}

.section-title-center {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-pink);
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.identifica-grid,
.identifica-cards,
.identifica-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 0;
}

.identifica-card {
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icone-img,
.icon-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icone-img:hover {
  transform: scale(1.05); /* Aumenta a imagem em 5%. Se quiser maior, use 1.1 (10%) */
  cursor: pointer;
}

/* Oculta o parágrafo redundante já que o texto está embutido na imagem */
.identifica-card p {
  display: none;
}

/* ===================================================
   6. SEÇÃO COMUNIDADE / SOBRE
   =================================================== */
.about-community {
  padding: 80px 0;
  background-color: #ffffff;
}

.split-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.side-image {
  flex: 1;
  display: flex;
}

.side-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.side-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-title-pink {
  color: var(--primary-pink);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-description {
  font-size: 1.05rem;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.find-here-title {
  font-size: 1rem;
  color: #222222;
  margin-bottom: 20px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.benefit-icon {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-pink);
  width: 20px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item span:last-child {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

/* ===================================================
   7. SEÇÃO "RECEBE TODOS OS MESES"
   =================================================== */
.recebe-mes {
  background-color: var(--primary-pink);
  padding: 70px 0;
  color: #ffffff;
  text-align: center;
}

.section-title-white {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.recebe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

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

.recebe-icon-box {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recebe-icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.recebe-item p {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* ===================================================
   8. PLANOS DE PREÇO
   =================================================== */
.pricing {
  background-color: var(--light-bg);
  padding: 50px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.price-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary-pink);
}

.badge,
.price-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-pink);
  color: white;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}

.features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* ===================================================
   9. MÉTODO REAGI
   =================================================== */
.method {
  background-color: var(--dark-bg);
  color: white;
  text-align: center;
  padding: 50px 0;
}

.method h2 {
  color: var(--primary-pink);
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.method p {
  margin-bottom: 50px;
}

.method-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 140px;
  padding: 10px;
}

.step-icon img {
  max-width: 40%;
  max-height: 40%;
  object-fit: contain;
}

.step-arrow {
  color: var(--primary-pink);
  font-size: 1.5rem;
  font-weight: bold;
}

/* ===================================================
   10. BANNER CTA / FOOTER
   =================================================== */
.cta-banner,
.banner-section {
  background-color: #051a2c;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.cta-banner h2,
.footer-cta h2,
.banner-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-banner p,
.banner-section p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 45px;
}

.cta-banner .btn,
.banner-section .btn {
  display: inline-block;
  margin: 0 auto;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-icons a {
  text-decoration: none;
  border: none;
  outline: none;
  display: inline-block;
}

/* ===================================================
   11. SEÇÃO AUTORA / FUNDADORA
   =================================================== */
.author {
  padding: 80px 0;
  background-color: #ffffff;
}

.author .split-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.author-img {
  flex: 0 0 35%;
  max-width: 350px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-signature {
  font-family: 'Great Vibes', cursive;
  color: var(--primary-pink);
  font-size: 3.2rem;
  display: block;
  margin-top: 15px;
  font-weight: normal;
}

/* ===================================================
   12. BOTÃO FLUTUANTE WHATSAPP
   =================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===================================================
   13. RESPONSIVIDADE (MEDIA QUERIES)
   =================================================== */
@media (max-width: 900px) {
  .identifica-grid,
  .identifica-cards,
  .identifica-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .split-container {
    flex-direction: column;
    gap: 30px;
  }

  .recebe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

@media (max-width: 768px) {
  .hero-container, 
  .cta-flex {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .method-steps {
    flex-direction: column;
    gap: 20px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .identifica-grid,
  .identifica-cards,
  .identifica-container {
    grid-template-columns: 1fr;
  }

  .recebe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 10px;
  }

  .section-title-white {
    font-size: 1.5rem;
  }
}

.btn-pink,
.btn-primary-pink {
  background-color: var(--primary-pink);
  color: #ffffff !important;
  border: 2px solid var(--primary-pink);
  display: inline-block;
  text-align: center;
}

.btn-pink:hover,
.btn-primary-pink:hover {
  background-color: var(--primary-pink-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Animação para pulsar o tempo todo */
@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(216, 27, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
  }
}

/* Aplicando a animação de pulsar */
.btn-pulse {
  animation: pulsar 1.8s infinite ease-in-out;
}

/* Transição suave nos ícones da seção "Você Recebe" */
.recebe-icon-img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Efeito ao passar o mouse: sobe um pouco, aumenta e ganha um brilho/sombra */
.recebe-item:hover .recebe-icon-img {
  transform: translateY(-6px) scale(1.12);
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.25));
  cursor: pointer;
}

.section-title-center {
  text-align: center;
  font-size: 2.4rem; /* Tamanho padronizado para os títulos */
  color: var(--primary-pink);
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Estilização das setas no Método */
.step-arrow {
  color: var(--primary-pink);
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  
  /* Animação para pulsar a seta */
  animation: pulsarSeta 1.5s infinite ease-in-out;
}

/* Animação de expansão e leve brilho */
@keyframes pulsarSeta {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3); /* Aumenta o tamanho da seta */
    opacity: 1;
    text-shadow: 0 0 8px rgba(216, 27, 96, 0.6); /* Efeito de brilho rosa */
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Animação para pulsar o ícone */
@keyframes pulsarIcone {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(216, 27, 96, 0));
  }
  50% {
    transform: scale(1.15); /* Aumenta 15% */
    filter: drop-shadow(0 0 8px rgba(216, 27, 96, 0.6)); /* Glow rosa ao redor do ícone */
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(216, 27, 96, 0));
  }
}

/* Classe para aplicar no ícone */
.icone-pulsar {
  animation: pulsarIcone 1.8s infinite ease-in-out;
}

/* 1. Reduz o espaçamento inferior da seção de cima */
.about-community {
  padding-top: 60px;
  padding-bottom: 20px; /* Era 80px */
  background-color: #ffffff;
}

/* 2. Reduz o espaçamento superior da seção "Você se identifica?" */
.identifica {
  padding-top: 20px; /* Era 80px */
  padding-bottom: 50px;
  background-color: #ffffff;
}

/* Link do rodapé em branco e sem sublinhado */
.footer-link {
  color: #ffffff !important;      /* Força a cor branca */
  text-decoration: none !important; /* Remove o sublinhado */
  transition: opacity 0.3s ease;
}

/* Efeito ao passar o mouse (fica ligeiramente transparente para mostrar interatividade) */
.footer-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

/* Animação de pulsar específica para botões brancos */
@keyframes pulsarBranco {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Aplica o pulsar branco quando o botão for btn-white */
.btn-white.btn-pulse {
  animation: pulsarBranco 1.8s infinite ease-in-out;
  display: inline-block;
}

/* Seção Superior (Sobre/Comunidade) */
.about-community {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

/* Seção Inferior (Você se Identifica?) */
.identifica {
  padding-top: 30px !important;
  margin-top: 0px !important;
}

/* Reduz o espaçamento do próprio título se ele tiver margem superior alta */
.identifica .section-title-center,
.identifica h2 {
  margin-top: 0px !important;
  padding-top: 0px !important;
}



/* --- Animação Exclusiva para o Botão do Hero --- */

/* 1. Define a animação (o efeito de pulsar com sombra) */
@keyframes pulsarUnicoHero {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.7); /* Cor rosa com transparência */
  }
  70% {
    transform: scale(1.03); /* Aumenta levemente */
    box-shadow: 0 0 0 15px rgba(216, 27, 96, 0); /* Sombra expande e desaparece */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
  }
}

/* 2. Aplica a animação APENAS a este botão */
.btn-hero-pulse {
  display: inline-block; /* Garante que a animação funcione corretamente */
  animation: pulsarUnicoHero 2s infinite ease-in-out; /* Nome da animação, duração, repetição infinita */
  
  /* Garante que o efeito de sombra não seja cortado por outros elementos */
  position: relative;
  z-index: 1;
}




/* Opcional: Pausar a animação quando o mouse estiver em cima, para não atrapalhar o clique */
.btn-hero-pulse:hover {
  animation-play-state: paused;
}





/* --- HERO SECTION CENTRALIZADO COM FONTE PADRÃO --- */
.hero-okr-dark {
  background-color: #051a2c !important;
  padding: 0;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.hero-okr-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 580px;
  position: relative;
}

/* 1. CONTAINER DO TEXTO (65%) */
.hero-text-content {
  flex: 0 0 55% !important;
  max-width: 55% !important;
  width: 55% !important;
  padding: 60px 40px 60px calc((100vw - 1200px) / 2 + 20px);
  z-index: 2;
  box-sizing: border-box;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* 2. CONTAINER DA IMAGEM (35%) */
.hero-image-content,
.hero-media-content,
.side-image { /* Use a classe referente ao container da sua imagem */
  flex: 0 0 45% !important;
  max-width: 45% !important;
  width: 45% !important;
  box-sizing: border-box;
}

/* 3. EVITA QUEBRA DE LINHA NO TÍTULO COM O NOVO ESPAÇO */
.hero-text-content h1 span,
.hero-text-content h1 .highlight {
  white-space: nowrap !important;
}

/* RESPONSIVO PARA CELULAR (Volta a empilhar 100% no mobile) */
@media (max-width: 768px) {
  .hero-text-content,
  .hero-image-content,
  .hero-media-content,
  .side-image {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .hero-text-content h1 span,
  .hero-text-content h1 .highlight {
    white-space: normal !important;
  }
}

/* 2/4 (50%) para a imagem com fusão em degradê */
.hero-media-full {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  align-self: stretch;
}

.hero-media-full img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
}

/* Elementos de Texto */
.hero-okr-dark .badge-tag {
  display: inline-block;
  background: rgba(216, 27, 96, 0.2);
  color: #D81B60;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Título ajustado com a fonte padrão da marca */
.hero-okr-dark h1 {
  font-family: inherit; /* Utiliza a mesma fonte principal do site */
  font-size: 3.2rem;   /* Tamanho mais equilibrado e harmônico */
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-okr-dark h1 .highlight {
  color: #D81B60;
}

.hero-okr-dark h2 {
  font-family: inherit;
  font-size: 1.6rem;
  color: #e2e8f0;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-okr-dark .hero-description {
  font-family: inherit;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-okr-dark .sub-text {
  font-family: inherit;
  color: #94a3b8 !important;
  font-size: 0.88rem;
  margin-top: 10px;
}

/* RESPONSIVO MOBILE */
@media (max-width: 991px) {
  .hero-okr-wrapper {
    flex-direction: column;
  }

  .hero-text-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px 20px 30px 20px;
    align-items: center;
    text-align: center;
  }

  .hero-media-full {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    height: 350px;
  }

  .hero-media-full img {
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
  }
  
  .hero-okr-dark h1 {
    font-size: 2.5rem;
  }
}

/* GRID DE ÍCONES (6 POR LINHA) */
.recebe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Define 6 colunas por linha */
  gap: 40px; /* Espaçamento entre os elementos */
}

/* Responsividade para telas menores */
@media (max-width: 992px) {
  .recebe-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 por linha em tablets */
  }
}

@media (max-width: 576px) {
  .recebe-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 por linha em celulares */
  }
}

/* BANNER CALL TO ACTION */
.cta-banner {
  background-color: #051a2c; /* Altere para a cor de fundo desejada */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-subtitle {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ESTILO DO BOTÃO */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-white {
  background-color: #ffffff;
  color:#051a2c; /* Cor do texto do botão */
}

/* EFEITO PULSE NO BOTÃO */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Container principal da seção com background cinza bem claro */
.cards-section {
  background-color: #f4f5f7; /* Background cinza bem claro */
  padding: 60px 20px;
}

/* Cabeçalho centralizado (Título + Texto abaixo) */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto; /* Centraliza e adiciona espaço antes dos cards */
}

.section-header h2 {
  font-size: 2rem;
  color: #051a2c;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.05rem;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}

/* Grid responsivo */
.cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Formato dos boxes: fundo branco e borda cinza mais escura */
.custom-card {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff; /* Card branco */
  border: 1px solid #d1d5db; /* Borda cinza suave/escuro */
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ou 'center' se preferir tudo centralizado */
}

.custom-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinha a imagem, título e parágrafo à esquerda */
}

/* Estilização e tamanho da nova imagem acima do título */
.cards-section .custom-card .card-img {
  width: 350px;            /* Largura da imagem (ajuste conforme necessário) */
  height: auto;           /* Mantém a proporção da imagem */
  margin-bottom: 16px;    /* Espaço entre a imagem e o título <h3> */
  display: block;
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* Opcional: Se preferir o conteúdo do card todo centralizado */

.custom-card .card-content {
  align-items: center;
  text-align: center;
}
.cards-section .custom-card .card-img {
  margin-left: auto;
  margin-right: auto;
}



/* Textos dentro do Card */
.card-content h3 {
  font-size: 1.1rem;
  color: #051a2c;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.card-content p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
}

/* Container da Seção com Fundo Cinza Claro */
.testimonial-single-section {
  background-color: #f4f5f7;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Cabeçalho */
.testimonial-header h2 {
  font-size: 2rem;
  color: #051a2c;
  margin-bottom: 12px;
  font-weight: 700;
}

.testimonial-header p {
  font-size: 1.05rem;
  color: #555555;
  margin: 0 0 40px 0;
}

/* Container do Slider */
.testimonial-slider {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  min-height: 220px; /* Mantém espaço suficiente sem "pular" a página */
}

/* Item de Depoimento (Sem box, limpo e centralizado) */
.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Depoimento Ativo (Visível) */
.testimonial-item.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* O elemento ativo define o fluxo da página */
}

/* Texto das Aspas/Depoimento */
.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333333;
  font-style: italic;
  margin: 0 0 28px 0;
  max-width: 680px;
}

/* Bloco do Autor */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foto Redonda */
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #051a2c;
}

/* Nome e Cargo Alinhados à Esquerda da Foto */
.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 1.05rem;
  color: #051a2c;
  margin: 0 0 3px 0;
  font-weight: 700;
}

.author-info span {
  font-size: 0.9rem;
  color: #6b7280;
}
/* Fundo escuro para


a seção de cards e cor de texto base clara */
.cards-section {
  background-color: #051a2c !important;
  color: #ffffff !important;
}

/* Altera o título principal (h2) e o subtítulo (p) do cabeçalho da seção */
.cards-section .section-header h2,
.cards-section .section-header p {
  color: #ffffff !important;
}

/* Garante a cor branca nos títulos e parágrafos de dentro de cada card */
.cards-section .custom-card .card-content h3,
.cards-section .custom-card .card-content p {
  color: #051a2c !important;
}

/* Opcional: Se o parágrafo ficar muito forte, pode usar uma transparência leve para o subtítulo e descrições */
.cards-section .section-header p,
.cards-section .custom-card .card-content p {
  color: #051a2c !important;
}


@media (max-width: 768px) {
  .nav-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .btn-plataforma {
    display: block !important;
    width: 100% !important; /* Ocupa a largura total */
    text-align: center !important;
    font-size: 0.85rem !important; /* Diminui a fonte levemente no celular */
    padding: 10px 16px !important;
    white-space: normal !important; /* Permite quebrar linha se necessário */
  }
} /* Esta chave fecha o @media query corretamente no final */



/* ======================================================= */
/* MODAL FLUTUANTE DO WHATSAPP                             */
/* ======================================================= */

/* Fundo escuro transparente cobrindo toda a tela */
.wa-modal-overlay {
  display: none; /* Inicia oculto */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.75) !important;
  z-index: 999999 !important; /* Sobrepõe todos os elementos do site */
  justify-content: center !important;
  align-items: center !important;
}

/* Caixinha do Modal centralizada */
.wa-modal-box {
  background: #ffffff !important;
  padding: 30px 25px !important;
  border-radius: 12px !important;
  max-width: 400px !important;
  width: 90% !important;
  position: relative !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  color: #333333 !important;
  text-align: left !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

/* Botão Fechar (X) */
.wa-modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 15px !important;
  background: transparent !important;
  border: none !important;
  font-size: 26px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  color: #888888 !important;
}

.wa-modal-close:hover {
  color: #000000 !important;
}

/* Textos e Títulos */
.wa-modal-box h3 {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  color: #040e17 !important;
  font-size: 1.25rem !important;
  font-weight: bold !important;
}

.wa-modal-box p {
  font-size: 0.9rem !important;
  color: #555555 !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

/* Grupos de entrada e Labels */
.wa-input-group {
  margin-bottom: 15px !important;
  text-align: left !important;
}

.wa-input-group label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: bold !important;
  margin-bottom: 6px !important;
  color: #333333 !important;
}

/* Campos de entrada (Inputs) */
.wa-input-group input {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #cccccc !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  box-sizing: border-box !important;
  outline: none !important;
}

.wa-input-group input:focus {
  border-color: #25d366 !important;
}

/* Botão Enviar */
.wa-submit-btn {
  width: 100% !important;
  background-color: #25d366 !important; /* Verde WhatsApp */
  color: #ffffff !important;
  border: none !important;
  padding: 12px !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  margin-top: 10px !important;
  transition: background-color 0.2s ease !important;
}

.wa-submit-btn:hover {
  background-color: #1ebd57 !important;
}

/* Nota explicativa de rodapé */
.wa-notice {
  font-size: 0.8rem !important;
  color: #777777 !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  text-align: center !important;
}
