:root {
  --color-primary: #d946ef;
  --color-primary-dark: #a21caf;
  --color-bg: #f9f9fb;
  --color-bg-card: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --gradient-cta: linear-gradient(135deg, #ec4899, #a855f7, #60a5fa);
  --gradient-stats: linear-gradient(135deg, #fdf2f8, #f3e8ff);
  --radius-card: 16px;
  --shadow-card:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  scroll-snap-type: y mandatory;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

.fade-in {
  position: fixed;
  top: 0;
  left: 0;

  pointer-events: none;

  width: 100%;
  min-height: 100vh;

  background-color: white;
  z-index: 9999;

  animation: fadeOut 1.5s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);

  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  z-index: 10;
  transform: none;
  margin-top: 0;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    top 0.3s ease;
}

.cabecalho.scrolled {
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.header-brand {
  justify-self: start;
  line-height: 0;
}

.menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: 0;
  padding-right: 0;
}

.menu a {
  color: #64748b;
  text-decoration: none;
  margin-left: 0;
  font-weight: 500;
  font-size: clamp(0.82rem, 0.72rem + 0.2vw, 0.95rem);
  letter-spacing: 0;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--color-primary);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  color: var(--color-text);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
}

.btn-participar {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 11px 20px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(217, 70, 239, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-participar:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(217, 70, 239, 0.24);
}

.hamburger {
  display: none;
  font-size: 30px;
  color: var(--color-text);
  cursor: pointer;

  margin-left: auto;
  margin-right: 20px;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(255, 255, 255, 0.96);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 30px;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  z-index: 999;
}

/* quando ativo */
.menu-mobile.active {
  transform: translateX(0);
}

.menu-mobile a {
  color: var(--color-text);
  font-size: 20px;
  text-decoration: none;
  font-weight: 800;
}

.menu-mobile .btn-login {
  font-size: 18px;
}

.menu-mobile .btn-participar {
  font-size: 18px;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 30px;

  font-size: 32px;
  color: var(--color-text);
  cursor: pointer;
}

.logo {
  height: 7vh;
  width: auto;
  display: block;
  min-width: 200px;
  object-fit: contain;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .cabecalho {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding-inline: clamp(16px, 3vw, 32px);
  }

  .menu {
    gap: clamp(12px, 1.5vw, 18px);
  }

  .btn-login {
    padding-inline: 12px;
  }

  .logo {
    min-width: 140px;
    max-width: 150px;
  }
}
/* Garantia de visibilidade ao envolver o logo com um link */
.cabecalho a {
  display: inline-block;
}

.cabecalho a .logo {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.instagram-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--color-bg-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 12px 18px;
  margin-right: 15px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  font-family: "Montserrat", sans-serif;
  z-index: 9999;
  animation: aparecer 0.6s ease;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
}

.insta-icon img {
  width: 24px;
  height: 24px;
}

.insta-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 18px;
  margin-left: 12px;
  cursor: pointer;
}

.insta-close:hover {
  opacity: 0.7;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#inicio {
  margin-top: 0;
  min-height: 92vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.12), transparent 34%),
    radial-gradient(circle at 12% 35%, rgba(236, 72, 153, 0.08), transparent 30%),
    var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 88px;
}

.containerr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  max-width: 1200px;
  width: 100%;
  padding-bottom: 0;
}

.conteudoo {
  max-width: 620px;
  width: 100%;
}

.conteudoo .badge-topoo {
  font-weight: 800;
  color: var(--color-primary-dark);
  display: inline-block;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 5px;
  box-shadow: var(--shadow-card);
}

/* Conteúdo esquerdo */
.conteudoo h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.03;
  color: var(--color-text);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.conteudoo .destaque {
  color: var(--color-primary);
  font-size: 100%;
}

.conteudoo .destaquee {
  font-size: 150%;
  background-image: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo
  );
  -webkit-background-clip: text; /* Recorta o fundo para o formato do texto */
  -webkit-text-fill-color: transparent; /* Deixa a cor do texto transparente */
  background-clip: text; /* Para navegadores mais recentes */
  color: transparent; /* Fallback */
  display: inline-block; /* Importante para o recorte funcionar */
}
.caixa-infoo {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 16px 18px;
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
}

.caixa-infoo strong {
  color: var(--color-text);
}

.caixa-infoo.secundario {
  opacity: 0.9;
}

/* Texto arco-íris */
.rainbow-text {
  background-image: linear-gradient(to right, red, orange, green, blue, indigo);
  -webkit-background-clip: text; /* Recorta o fundo para o formato do texto */
  -webkit-text-fill-color: transparent; /* Deixa a cor do texto transparente */
  background-clip: text; /* Para navegadores mais recentes */
  color: transparent; /* Fallback */
  display: inline-block; /* Importante para o recorte funcionar */
}

.btn-principall {
  margin-top: 18px;
  background: var(--gradient-cta);
  color: #ffffff;
  border: none;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(217, 70, 239, 0.24);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-principall:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(217, 70, 239, 0.3);
}

.acoes-secundariass {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acoes-secundariass button {
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  width: 48%;
  box-shadow: var(--shadow-card);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.acoes-secundariass button:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.cardd {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  color: #fff;
  margin: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza verticalmente */
  align-items: center; /* centraliza horizontalmente */
}

.cardd h2 {
  font-size: 38px;
  margin: 10px 0 4px;
}

.cardd p {
  font-size: 19px;
}

.conteudoo2 {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  justify-content: center;
  align-items: center;
  width: min(440px, 100%);
}

.card-info2 {
  background: var(--gradient-stats);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-card);
}

.card-info2:hover {
  transform: translateY(-8px);
}

.icone {
  font-size: 40px;
  margin-bottom: 20px;
}

.card-info2 h2 {
  font-size: 40px;
  color: var(--color-primary);
  margin: 10px 0;
  font-weight: 800;
}

.card-info2 p {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 700;
}

.depoimentos {
  background: var(--color-bg);
  padding: 88px 0;
  overflow-x: hidden; /* mantém escondido na horizontal */
  overflow-y: visible; /* permite o card subir sem cortar */
  font-family: "Montserrat", sans-serif;
}

.depoimentos-topo {
  text-align: center;
  margin-bottom: 50px;
  padding: 0px 20px;
}

.depoimentos-topo h2 {
  font-size: 40px;
  text-shadow: none;
  color: var(--color-text);
  font-weight: 900;
}

.depoimentos-topo p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-top: 5px;
}

/* CARROSSEL */
.carrossel {
  overflow-x: hidden; /* mantém escondido na horizontal */
  overflow-y: visible; /* permite o card subir sem cortar */
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.carrossel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.carrossel:hover .carrossel-track {
  animation-play-state: paused;
}

/* ANIMAÇÃO INFINITA */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CARD */
.card-depoimento {
  min-width: 320px;
  max-width: 320px;
  background: var(--color-bg-card);
  padding: 25px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.card-depoimento:hover {
  transform: translateY(-10px);
}

.card-depoimento h3 {
  margin-bottom: 5px;
  color: var(--color-text);
}

.cargo {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.card-depoimento p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .card-depoimento {
    min-width: 260px;
    max-width: 260px;
  }

  .depoimentos-topo h2 {
    font-size: 28px;
  }

  .depoimentos-topo p {
    font-size: 16px;
  }
}

.secao1 {
  position: relative; /* referência */
  min-height: 100vh;

  overflow: hidden;
}

.mulheres {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 1; /* fundo */
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 15%,
    rgba(255, 126, 255, 0) 90%
  );
  z-index: 2;
}

.secao1 h1 {
  position: relative;
  z-index: 3; /* texto por cima */

  margin: 5px 0;
  color: white;
  font-size: 6vw;
  font-weight: 700;
  padding-left: 10%;
  top: 27%;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.seta {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 4;

  font-size: 25px;
  color: white;
  cursor: pointer;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

  animation: sobeDesce 2s ease-in-out infinite;

  /* remove underline and ensure link stays inline for animation */
  text-decoration: none;
  display: inline-block;
}

/* keep no underline on hover/focus */
.seta:hover,
.seta:focus {
  text-decoration: none;
  outline: none;
}

.secao2 {
  background: var(--color-bg);
  min-height: 100vh;
  display: auto;
}

.logoequipe {
  padding-top: 5%;
  width: 50%;
  display: block;
  margin: 0 auto;
}

.botao-rosa {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;

  margin: 0 auto;

  background: var(--gradient-cta);
  color: rgb(255, 255, 255);

  padding: 15px 30px;
  border-radius: 30px;

  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;

  transition: 0.3s;
}

.botao-rosa:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.secao2 h1 {
  text-align: center;
  position: relative;
  color: white;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.secao2 h2 {
  text-align: justify;
  position: relative;
  color: white;
  font-size: 50;
  font-weight: 300;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

  padding-bottom: 3%;
}

.secao2 h4 {
  text-align: center;
  position: relative;
  color: white;
  font-size: 120%;
  font-weight: 300;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.colunadireita {
  padding-top: 3%;
  padding-bottom: 0%;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.foguetinho {
  width: 5%;
  height: auto;
  margin-right: 5%;
}

.colunadireita a h4 {
  margin: 0;
}

.card-botao {
  display: flex;
  align-items: center;
  gap: 25px;

  background: white;
  padding: 3% 10%;
  border-radius: 20px;

  text-decoration: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.card-botao:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icone {
  font-size: 150%;
}

.texto h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 22px;
}

.texto p {
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.beneficios {
  min-height: auto;
  padding: 72px 10%;
  background: var(--color-bg);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  transition: height 0.4s ease;
}

.beneficios h2 {
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
}

.beneficios h4 {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 25px;
  padding-bottom: 2%;
  text-align: center;
}

.beneficios h3 {
  color: var(--color-text);
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
}

.sub {
  color: var(--color-text-muted);
  font-size: 20px;
  padding-bottom: 3%;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 30px;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 60px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px;
  width: 90%;
  max-width: 1000px;
  position: relative;
}

.fecharModall {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-primary);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.titulo-icone {
  width: 5%;
}

.beneficios-grid div {
  background: var(--gradient-stats);
  border: 1px solid var(--color-border);
  padding: 25px;
  border-radius: 16px;
}

.beneficios-grid h4 {
  color: var(--color-text);
  margin-bottom: 10px;
}

.beneficios-grid p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.como-funciona {
  background: var(--color-bg);
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
}

.como-funciona-espaco {
  display: block;
  max-width: 1200px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.cf-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.cf-header img {
  width: 70px;
}

.cf-header h2 {
  padding-top: 24px;
  font-size: 40px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0px;
}

.cf-header p {
  color: var(--color-text-muted);
  font-size: 18px;
  margin: 12px 0 24px;
  padding-bottom: 10px;
}

.cf-tabs .tab {
  padding: 12px 20px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* HOVER padrão */
.cf-tabs .tab:hover {
  transform: translateY(-2px);
}

/* ===== CORES ATIVAS ===== */

/* Empreendedor (roxo) */
.cf-tabs .tab.active[data-target="empreendedor"] {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(217, 70, 239, 0.22);
}

/* Cliente (azul) */
.cf-tabs .tab.active[data-target="cliente"] {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(217, 70, 239, 0.22);
}

/* Empresa (rosa) */
.cf-tabs .tab.active[data-target="empresa"] {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(217, 70, 239, 0.22);
}

.jornada {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
}

.jornada.active {
  display: block;
}

.jornada h3 {
  padding-top: 50px;
  text-align: center;
  font-size: 28px;
  color: var(--color-text);
  margin: 15px 0px;
}

.jornada h5 {
  padding-top: 50px;
  text-align: center;
  font-size: 28px;
  color: var(--color-text);
  margin: 15px 0px;
}

.jornada h6 {
  padding-top: 50px;
  text-align: center;
  font-size: 28px;
  color: var(--color-text);
  margin: 15px 0px;
}

.subtitle {
  margin: 0px 10px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-text-muted);
}

.timelinepurple,
.timelinepink,
.timelineblue {
  position: relative;
  padding: 40px 0;
}

.timelinepurple::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.timelineblue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.timelinepink::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.step {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.step.left {
  justify-content: flex-start;
}

.step.right {
  justify-content: flex-end;
}

.dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.dot.pink {
  background: var(--color-primary);
}
.dot.blue {
  background: var(--color-primary);
}
.dot.green {
  background: var(--color-primary);
}
.dot.orange {
  background: var(--color-primary);
}

.footer-in {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.jornada-footer {
  border-radius: var(--radius-card);
  background: var(--gradient-cta);
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  width: 100%;
  color: white;
  font-size: 20px;
}

.jornada-footer h1 {
  font-size: 25px;
  font-weight: 600;
}

.jornada-footer p {
  font-size: 18px;
}

.jornada-footer .btn {
  margin-top: 15px;
  background: #ffffff;
  color: var(--color-primary-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER */
.jornada-footer .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
}

.footer-in1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.jornada-footer1 {
  border-radius: var(--radius-card);
  background: var(--gradient-cta);
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  width: 100%;
  color: white;
  font-size: 20px;
}

.jornada-footer1 h1 {
  font-size: 25px;
  font-weight: 600;
}

.jornada-footer1 p {
  font-size: 18px;
}

.jornada-footer1 .btn {
  margin-top: 15px;
  background: #ffffff;
  color: var(--color-primary-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER */
.jornada-footer1 .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
}

.footer-in2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.jornada-footer2 {
  border-radius: var(--radius-card);
  background: var(--gradient-cta);
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  width: 100%;
  color: white;
  font-size: 20px;
}

.jornada-footer2 h1 {
  font-size: 25px;
  font-weight: 600;
}

.jornada-footer2 p {
  font-size: 18px;
}

.jornada-footer2 .btn {
  margin-top: 15px;
  background: #ffffff;
  color: var(--color-primary-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER */
.jornada-footer2 .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
}

.formulario {
  padding: 0px 20px 60px 20px;
  background: var(--color-bg);
  display: flex;
  justify-content: center;
}

.form-container {
  background: var(--color-bg-card);
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  max-width: 1110px;
  width: 100%;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.form-icone {
  width: 60px;
}

.subdivform {
  display: inline-block;
  max-width: 500px;
}

.subdivform h3 {
  font-size: 12px;
  color: gray;
}

.subdivform a {
  color: gray;
  text-decoration: none;
}

.form-container h2 {
  font-size: 40px;
  color: var(--color-text);
  margin-top: 5px;
  margin-bottom: 10px;
}

.form-container p {
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.form input:focus {
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.12);
}

.form button {
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.negocios {
  background: var(--color-bg);
  text-align: center;
  padding: 60px 40px;
}

.negocios h2 {
  color: var(--color-text);
  font-size: 40px;
  margin: 0px;
}

.subb {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 25px;
}

.caards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 50px;
}

@media (max-width: 992px) {
  .caards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .caards {
    grid-template-columns: 1fr;
    padding: 0 16px 50px;
  }
}

.caard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 25px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 600px) {
  .caard {
    max-width: 100%;
  }
}

.caard h3 {
  color: var(--color-primary-dark);
}

.caard_nome_empresa {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
}

.caard_nome {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.caard_tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 16px;
}

.caard_tag {
  font-size: 11px;
  font-weight: bold;
  background: var(--gradient-stats);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.caard_botao {
  margin-top: 0;
}

.caard_botao_cotnato {
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}

.iicone {
  width: 60px;
  margin-bottom: 10px;
}

.negocios .caard > .iicone {
  width: 72px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
  margin-bottom: 10px;
}

.negocios .caard > .diversa-hub-logo-card {
  width: 72px;
  height: 64px;
  align-self: flex-start;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31, 138, 91, 0.2);
  margin-bottom: 10px;
}

.negocios .taags {
  margin-top: auto;
}

.perfil-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 16px;
  object-fit: cover;
}

.diversa-hub-logo-modal {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.badgee {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-stats);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.autoor {
  color: var(--color-primary);
  font-weight: bold;
}

.deescricao {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.deescricao-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.deescricao-clamp.aberto {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.deescricao-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin: -8px 0 16px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.deescricao-toggle:hover {
  text-decoration: underline;
}

.taags {
  margin: 15px 0;
}

.taag {
  background: var(--gradient-stats);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
}

.botoes {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

button {
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}

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

.contatoBtn {
  background: var(--color-primary-dark);
  color: white;
}

.contaato {
  background: var(--color-primary-dark);
  color: white;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modalContent {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 80%;
  max-width: 900px;
}

.fecharModall {
  float: right;
  font-size: 45px;
  cursor: pointer;
}

.perfilHeader {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--gradient-cta);
  color: white;
  padding: 20px;
  border-radius: 15px;
}

.perfilHeader img {
  width: 70px;
}

.perfilGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.contatoGrande {
  margin-top: 20px;
  background: var(--color-primary);
  color: white;
  padding: 15px;
  width: 100%;
}

.cardd {
  width: min(360px, 100%);
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
}

.cardd h4 {
  margin-bottom: 10px;
  color: var(--color-text);
}

.cardd p {
  color: var(--color-text-muted);
  font-size: 15px;
}

.cardd small {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-primary);
}

.cardd.pink {
  background: var(--gradient-stats);
}
.cardd.blue {
  background: var(--gradient-stats);
}
.cardd.green {
  background: var(--gradient-stats);
}
.cardd.orange {
  background: var(--gradient-stats);
}

.cardd.highlight {
  border: 1px solid var(--color-primary);
  background: var(--gradient-stats);
}

.contato {
  min-height: auto;
  padding: 72px 20px;
  text-align: center;
  background: var(--color-bg);
}

/* Title container with icon aligned to the left */
.contato-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: nowrap; /* keep icon and title on the same line */
}

.contato-titulo .titulo-icone {
  width: 48px;
  height: auto;
  display: inline-block;
  margin-left: 5%;
  margin-right: 5px;
  flex-shrink: 0;
}

.contato-titulo h1 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  color: var(--color-text);
}

.contato .sub {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 12px auto 0;
}

.card-contato {
  background: var(--color-bg-card);
  max-width: 480px;
  padding: 40px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
  color: var(--color-text);
}
.card-contato span {
  width: 40px;
  height: auto;
}
.card-contato h2 {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
  background: #ffffff;
}

/* Links dentro dos blocos de contato devem herdar a cor roxa e não ter sublinhado */
.card-contato .info a,
.card-contato .info a:visited,
.card-contato .info a:hover,
.card-contato .info a:active {
  color: var(--color-primary);
  text-decoration: none;
}

/* Links dentro dos blocos de contato devem herdar a cor roxa e não ter sublinhado */
.card-contato .info a,
.card-contato .info a:visited,
.card-contato .info a:hover,
.card-contato .info a:active {
  color: var(--color-primary);
  text-decoration: none;
}

.contato-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1060px;
  margin: 32px auto 0;
}

/* FORMULÁRIO */
.form-contato form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-contato label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--color-text);
}

.form-contato input,
.form-contato textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: 4px solid rgba(217, 70, 239, 0.12);
  border-color: var(--color-primary);
}

.form-contato button {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: var(--gradient-cta);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.form-contato button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.info span {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.info strong {
  text-align: left;
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--color-text);
}

.info p {
  color: var(--color-text-muted);
  margin: 0;
}

.email {
  background: #ffffff;
}

.whatsapp {
  background: #ffffff;
}

.endereco {
  background: #ffffff;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.redes img {
  width: 24px;
  height: auto;
}

.redes a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--gradient-stats);
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-primary);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.redes a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.elfsight-app-d898d07d-0613-4564-a2f4-123d37208b58 > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.elfsight-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

/* Link FAQ: sublinhar apenas a palavra FAQ e herdar a cor do texto */
.link-faq {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.link-faq:hover {
  opacity: 0.9;
}

/* Link externo simples (SSSOPA) - herda cor e não tem sublinhado */
.link-externo {
  color: inherit;
  text-decoration: none;
}
.link-externo:hover {
  opacity: 0.9;
}

.newsletter {
  padding: 0 20px 72px;
  background: var(--color-bg);
  display: flex;
  justify-content: center;
}

.newsletter-container {
  max-width: 1000px;
  text-align: center;
  color: var(--color-text);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px;
}

.newsletter-container h2 {
  color: var(--color-text);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 12px;
  font-weight: 900;
}

.newsletter-container p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0 auto 24px;
  color: var(--color-text-muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: 10px;
  width: min(260px, 100%);
  font-size: 15px;
  outline: none;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
}

.newsletter-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.8;
  margin: 20px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: var(--color-bg-card);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 300px;
  color: var(--color-text);
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: var(--color-primary);
  color: white;
  cursor: pointer;
}

.patrocinadores {
  background: var(--color-bg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 72px 20px;
}

.patrocinadores-header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.patrocinadores-header h2 {
  color: var(--color-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 900;
}

.patrocinadores-header p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 1rem;
}

.patrocinadores-grupo {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  margin-top: 20px;
}

.patrocinadores-grupo h3 {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 20px;
}

.patrocinadores .logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}

.patrocinadores .logos a {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.patrocinadores .logos img {
  max-height: 74px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.patrocinadores .logos img.logo-turings {
  max-height: none;
  max-width: none;
  width: 210px;
}

.patrocinadores .logos a.logo-turings-card {
  overflow: hidden;
  padding: 6px;
}

.patrocinadores .logos.residencia img.logo-parque-tech {
  max-height: 40px;
  max-width: 185px;
  width: 100%;
}

.patrocinadores .logos a:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.patrocinadores .residencia-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 48px;
  border-radius: 8px;
  background: var(--gradient-stats);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  padding: 8px 12px;
}

.parceiro-cta {
  padding-bottom: 55px;
  background: var(--color-bg);
}

.parceiro-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  background: var(--gradient-cta);
  border-radius: var(--radius-card);
  padding: 20px 10px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(217, 70, 239, 0.22);
}

.parceiro-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.parceiro-container p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 22px;
  opacity: 0.95;
}

/* BOTÕES */
.parceiro-botoes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Botão branco */
.btn.patrocinador {
  background: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-card);
}

.btn.patrocinador:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Botão transparente com borda */
.btn.apoiador {
  background: transparent;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.btn.apoiador:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.logo-fim {
  display: block;
  margin: 0 auto 12px;
  width: auto;
  max-width: 400px;
  padding-top: 2vh;
  padding-bottom: 15px;
}

/* -------------------------
   Responsividade (tablet / mobile)
   ------------------------- */

@media (max-width: 1700px) {
  .conteudoo h1 {
    font-size: 34px;
  }
  .conteudoo .destaque {
    font-size: 130%;
  }
  .conteudoo2 {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }
  .card-info2 {
    padding: 28px;
  }
  .logos img {
    max-height: 120px;
    width: auto;
  }
  .parceiro-container {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  .cabecalho {
    height: 64px;
    grid-template-columns: 1fr auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .menu {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .hamburger {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  /* Hero */
  .conteudoo h1 {
    font-size: 26px;
    line-height: 1.18;
  }
  .conteudoo .destaque {
    font-size: 115%;
  }
  .conteudoo .caixa-infoo,
  .conteudoo .caixa-infoo.secundario {
    font-size: 14px;
    padding: 12px 14px;
  }

  /* Cards and stats */
  .conteudoo2 {
    padding: 12px;
    gap: 12px;
    margin-top: 15px;
  }
  .card-info2 {
    padding: 22px;
  }

  /* Team and grids */
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  .team-photo {
    width: 90px;
    height: 90px;
  }

  /* Logos and patrocinadores */
  .logos {
    gap: 28px;
    justify-content: center;
    padding: 0 10px;
  }
  .logos img {
    max-height: 90px;
    width: auto;
  }
  .titulo-secao {
    font-size: 28px;
    margin-bottom: 24px;
    margin-top: 24px;
    align-content: center;
  }
  .patrocinadores {
    margin-bottom: 20px;
  }

  /* Parceiro CTA */
  .parceiro-container {
    padding: 20px;
    width: 90%;
  }
  .parceiro-container h2 {
    font-size: 22px;
  }
  .parceiro-container p {
    margin-bottom: 16px;
  }
  .parceiro-botoes {
    gap: 12px;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* 375x667 and small phones */
@media (max-width: 420px) {
  .cabecalho {
    height: 56px;
  }
  .logo {
    height: 5vh;
    max-width: 120px;
    min-width: 0;
  }
  .conteudoo h1 {
    font-size: 20px;
  }
  .conteudoo .destaque {
    font-size: 110%;
  }
  .conteudoo2 {
    grid-template-columns: 1fr;
    padding: 8px;
  }
  .card-info2 {
    padding: 16px;
  }

  .team-photo {
    width: 72px;
    height: 72px;
  }
  .team-card {
    padding: 12px;
  }

  .logos {
    gap: 16px;
    padding: 0 8px;
  }
  .logos img {
    max-height: 70px;
    width: auto;
  }
  .titulo-secao {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    align-content: center;
  }

  .parceiro-container {
    padding: 14px;
  }
  .parceiro-container h2 {
    font-size: 18px;
  }
  .parceiro-container p {
    font-size: 14px;
  }
  .parceiro-botoes {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    padding: 12px;
    border-radius: 999px;
  }

  .redes-rodape img {
    width: 18px;
    margin-right: 0;
  }
  .logo-fim {
    width: 260px;
  }
  .patrocinadores {
    margin-bottom: 20px;
  }
}

/* Ensure images never overlap containers */
.card-info2 img,
.team-photo,
.logo {
  max-width: 100%;
  height: 7vh;
  display: block;
}
.logos img {
  height: auto;
}

/* Rodapé */
.direitos {
  text-align: center;
}

.slogan {
  text-align: center;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

/* Redes sociais */
.redes-rodape {
  padding-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.footer .redes-rodape a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 30px;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.icone-toggle {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-primary);
  margin-left: auto;
  transition: transform 0.3s;
}

.card img {
  width: 60px;
}

/* CONTEÚDO EXPANSÍVEL */
.conteudo {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 20px;
}

.accordion.ativo .conteudo {
  max-height: 800px;
  padding: 30px 20px;
}

/* GRID DE BENEFÍCIOS */
.conteudo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.conteudo-grid div {
  background: var(--gradient-stats);
  border: 1px solid var(--color-border);
  padding: 25px;
  border-radius: 16px;
}

.conteudo-grid h4 {
  color: var(--color-text);
  margin-bottom: 10px;
}

.conteudo-grid p {
  color: var(--color-text-muted);
}

/* ÍCONE + vira - */
.accordion.ativo .icone-toggle {
  transform: rotate(45deg);
}

.footer .redes-rodape a:hover {
  transform: translateY(-4px);
  color: var(--color-primary);
  border-color: rgba(217, 70, 239, 0.35);
  box-shadow: var(--shadow-card);
}

.footer .redes-rodape img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer .redes-rodape svg,
.footer .redes-rodape span {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .redes-rodape svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Textos */
.direitos h1 {
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.footer-bottom h2 {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 300;
  padding: 10px;
}

.footer {
  background: #f8fafc;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: 0 0 24px;
  margin-top: 0;
}

.logo-rodape {
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  align-items: start;
}

.footer-col {
  flex: 1 1 240px;
}

.footer-brand {
  flex: 1 1 420px;
}

.footer-brand p {
  max-width: 430px;
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  opacity: 1;
  margin: 18px 0 0;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  transition: 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

@media (max-width: 800px) {
  .footer {
    padding: 48px 20px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 510px) {
  .beneficios-grid div {
    padding: 10px;
  }

  .conteudoo .destaque {
    color: var(--color-primary);
    font-size: 100%;
  }

  .conteudoo .destaquee {
    font-size: 100%;
    background-image: linear-gradient(
      to right,
      red,
      orange,
      yellow,
      green,
      blue,
      indigo
    );
    -webkit-background-clip: text; /* Recorta o fundo para o formato do texto */
    -webkit-text-fill-color: transparent; /* Deixa a cor do texto transparente */
    background-clip: text; /* Para navegadores mais recentes */
    color: transparent; /* Fallback */
    display: inline-block; /* Importante para o recorte funcionar */
  }

  .beneficios h2,
  .cf-header h2,
  .form-container h2,
  .negocios h2,
  .contato-titulo h1,
  .newsletter-container h2 {
    font-size: 28px;
  }

  .beneficios h4,
  .cf-header p,
  .subb,
  .contato .sub,
  .newsletter-container p,
  .parceiro-container p {
    font-size: 16px;
  }

  .btn {
    padding: 18px 0px;
  }

  .cabecalho {
    height: calc(100vh / 10);
  }
}

/* Make modal beneficios grid 2 columns on mobile (<=1080px) */
@media (max-width: 1080px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .card-contato {
    width: auto;
    padding: 10% 5%;
  }
  .card-info2 {
    padding: 20px 10px;
  }
  .card-info2 h2 {
    font-size: 25px;
  }
  .card-info2 p {
    font-size: 20px;
  }

  .containerr {
    display: block;
  }
}

@media (max-height: 900px) {
  .containerr {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logoequipe {
    display: none;
  }

  .foguetinho {
    display: none;
  }

  .logos {
    gap: 40px;
    justify-content: center;
  }

}

@media (max-height: 810px) {
  .conteudoo h1 {
    font-size: 28px;
  }

  .badge-topoo {
    color: #00000000;
    background: rgba(255, 255, 255, 0);
  }
}

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

  .metricas {
    margin-top: 40px;
  }

  .conteudoo h1 {
    font-size: 34px;
  }
  .patrocinadores {
    min-height: 50vh;
  }

  .foguetinho {
    width: 12%;
  }

  .patrocinador img {
    width: 100px;
  }
  .patrocinadores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-fim {
    padding-top: 6vh;
  }
  .secao2 {
    flex-direction: column;
  }
  .secao2 h1 {
    font-size: 150%;
  }
  .secao2 h2 {
    font-size: 100%;
  }

  .logoequipe {
    width: 25%;
  }

  .logo-fim {
    width: 180px;
  }
  .texto h3 {
    font-size: 15px;
  }
  .beneficios h3 {
    font-size: 100%;
  }

  /* Ajuste do ícone do título em telas menores */
  .titulo-icone {
    width: 40px;
  }

  .titulo-icone {
    width: 10%;
  }

  .beneficios-grid h4 {
    font-size: 1rem;
  }

  .beneficios-grid p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .modal {
    align-items: flex-start; /* não força centralizar */
    padding-top: 40px;
  }

  .modal-content {
    max-height: 90vh; /* limita altura ao tamanho da tela */
    overflow-y: auto; /* ativa scroll interno */
    padding-top: 0px; /* espaço para o botão X */
  }

  .fechar {
    position: sticky; /* fica visível ao rolar */
    top: 15px;
    right: 15px;
    float: right;
    background: rgba(255, 255, 255, 0);
    z-index: 10;
  }

  .email p {
    max-width: 150px; /* ajuste se quiser */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logos img {
    max-height: 80px;
    width: 80%;
  }
  .parceiro-container h2 {
    font-size: 30px;
  }

  .parceiro-botoes {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .contato-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .card-contato {
    max-width: 100%;
  }
}

@keyframes sobeDesce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -20px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.comunidade-negocios {
  background: var(--color-bg);
  text-align: center;
  padding: 60px 40px;
  margin: 50px 0;
}

/* ── Curadoria — Filtros ─────────────────────────────────────────────────── */

.curadoria_filtro_bloco {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(126, 34, 206, 0.1);
  margin-bottom: 48px;
  text-align: left;
}

.curadoria_filtro_titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
}

.curadoria_filtro_grupo {
  margin-bottom: 28px;
}

.curadoria_filtro_grupo_titulo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.curadoria_filtro_grupo_botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.curadoria_filtro_btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.curadoria_filtro_btn:hover {
  background: var(--gradient-stats);
  color: var(--color-primary);
  transform: scale(1.04);
}

.curadoria_filtro_btn_ativo {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.curadoria_filtro_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.curadoria_filtro_campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.curadoria_filtro_campo .curadoria_filtro_btn {
  width: 100%;
  min-height: 42px;
}

.curadoria_filtro_label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
}

.curadoria_filtro_select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.9rem;
  background: var(--color-bg-card);
  color: var(--color-text);
  cursor: pointer;
  appearance: auto;
}

.curadoria_filtro_select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.12);
}

.curadoria_filtro_rodape {
  text-align: center;
}

.curadoria_filtro_limpar {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
}

.curadoria_filtro_limpar:hover {
  background: var(--gradient-stats);
}

@media (max-width: 600px) {
  .curadoria_filtro_bloco {
    padding: 20px 16px;
    margin-bottom: 24px;
  }
  .curadoria_filtro_grid {
    grid-template-columns: 1fr;
  }

  .curadoria_filtro_grupo_botoes {
    gap: 8px;
  }

  .curadoria_filtro_btn,
  .curadoria_filtro_limpar {
    width: 100%;
    text-align: center;
  }
}

/* ── Modal Curadoria ─────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.ativo {
  display: flex;
}
.modal-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-fechar {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: rgba(255,255,255,.85);
  line-height: 1;
  z-index: 10;
}
.modal-fechar:hover { color: #ffffff; }

/* Header */
.modal-header {
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 2rem;
  border-radius: 24px 24px 0 0;
}
.modal-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.modal-logo-wrap { flex-shrink: 0; }
.modal-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
}
.modal-titulo {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 .25rem;
}
.modal-pessoa {
  font-size: 1rem;
  opacity: .9;
  margin: 0 0 .75rem;
}
.modal-tags-header {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.modal-tag {
  background: var(--color-bg-card);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  padding: .3rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Conteúdo */
.modal-conteudo { padding: 2rem; }
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 640px) {
  .modal-grid { grid-template-columns: 1fr; }
}
.modal-coluna { display: flex; flex-direction: column; gap: 1.5rem; }
.modal-secao-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .75rem;
}
.modal-texto { color: var(--color-text-muted); line-height: 1.7; }

/* Info grid */
.modal-info-grid { display: flex; flex-direction: column; gap: .5rem; }
.modal-info-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem .75rem;
  border-radius: 8px;
  font-size: .9rem;
}
.modal-info-par  { background: var(--gradient-stats); }
.modal-info-impar { background: var(--gradient-stats); }
.modal-info-label { font-weight: 700; }

/* Links */
.modal-links { display: flex; flex-direction: column; gap: .5rem; }
.modal-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}
.modal-link:hover { opacity: .85; }
.modal-link-ig,
.modal-link-li,
.modal-link-site,
.modal-link-email {
  background: var(--gradient-stats);
  color: var(--color-primary-dark);
}

/* Botão contato */
.modal-contato-wrap { margin-top: auto; }
.modal-btn-contato {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.modal-btn-contato:hover { background: var(--color-primary-dark); }

@media (min-width: 901px) {
  .menu {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* Correcoes visuais da home */
.hero-container {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.hero-title {
  margin: 0 auto;
  max-width: 850px;
  color: var(--color-text);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  font-weight: 900;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-btn,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 800;
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--gradient-cta);
  color: #ffffff;
}

.hero-btn-secondary,
.hero-link {
  background: var(--color-bg-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.card img,
.card svg,
.card-info2 img,
.card-info2 svg,
.card-depoimento img,
.card-depoimento svg,
.universo-card img,
.universo-card svg,
.universos-feature-card img,
.universos-feature-card svg,
.universos-testimonial-card img,
.universos-testimonial-card svg {
  width: 32px;
  height: 32px;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-mock,
.universos-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-stat,
.universos-stat {
  min-width: 0;
}

.hero-mock {
  margin: 56px auto 0;
  max-width: 960px;
}

.hero-stat {
  background: var(--gradient-stats);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
}

.hero-stat h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
}

.hero-stat p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-weight: 700;
}

.universos {
  background: var(--color-bg);
  padding: 88px 20px;
}

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

.universos-header,
.universos-features-header,
.universos-testimonials-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.universos-header h2,
.universos-features-header h2,
.universos-testimonials-header h2 {
  color: var(--color-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 14px;
  font-weight: 900;
}

.universos-header p,
.universos-features-header p {
  color: var(--color-text-muted);
  margin: 0;
}

.universos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.universo-card,
.universos-feature-card,
.universos-testimonial-card,
.universos-stats-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.universo-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.universo-card h3,
.universos-feature-card h3 {
  color: var(--color-text);
  margin: 18px 0 10px;
}

.universo-card p,
.universos-feature-card p,
.universos-testimonial-card blockquote {
  color: var(--color-text-muted);
}

.universos-testimonial-card blockquote {
  margin: 0;
}

.universo-card a {
  color: var(--color-text);
  font-weight: 800;
  text-decoration: none;
}

.universo-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-stats);
  color: var(--color-primary-dark);
  font-weight: 900;
}

.universos-features,
.universos-testimonials,
.universos-stats-card,
.universos-cta-banner {
  margin-top: 72px;
}

.universos-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.universos-feature-card {
  padding: 24px;
}

.universos-feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-stats);
  color: var(--color-primary);
}

.universos-feature-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.universos-stats-card {
  padding: 24px;
}

.universos-stat {
  text-align: center;
}

.universos-stat strong {
  display: block;
  color: var(--color-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
}

.universos-stat span {
  color: var(--color-text-muted);
  font-weight: 700;
}

.universos-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.universos-testimonial-card {
  padding: 24px;
}

.universos-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.universos-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

.universos-avatar-img {
  object-fit: cover;
  padding: 0;
}

.universos-author strong,
.universos-author span:not(.universos-avatar) {
  display: block;
}

.universos-author span:not(.universos-avatar) {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.universos-author .universos-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
}

.universos-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--gradient-cta);
  color: #ffffff;
}

.universos-cta-content h2 {
  margin: 0 0 10px;
}

.universos-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.universos-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.universos-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 800;
  text-decoration: none;
}

.universos-cta-actions a + a {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

@media (max-width: 900px) {
  .hero-mock,
  .universos-stats-grid,
  .universos-grid,
  .universos-features-grid,
  .universos-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .universos-cta-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
}

/* Responsive hardening */
html {
  overflow-x: hidden;
}

body {
  min-width: 0;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

.cabecalho {
  grid-template-columns: minmax(160px, 1fr) minmax(0, auto) minmax(180px, 1fr);
}

.logo {
  height: clamp(42px, 7vh, 58px);
  min-width: 0;
  max-width: min(240px, 48vw);
}

.menu,
.header-actions {
  min-width: 0;
}

.menu {
  gap: clamp(14px, 2.2vw, 32px);
}

.menu a,
.btn-login,
.btn-participar {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .cabecalho {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 72px;
    padding-inline: clamp(14px, 4vw, 32px);
  }

  .menu,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 999px;
    font-size: 28px;
  }
}

@media (min-width: 1101px) {
  .menu {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 600px) {
  .cabecalho {
    height: 64px;
  }

  .logo {
    max-width: min(210px, 68vw);
  }

  .menu-mobile {
    gap: 22px;
    padding: 88px 24px 32px;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .menu-mobile .fechar {
    position: absolute;
    top: 24px;
    right: 24px;
    float: none;
    background: transparent;
   }

  .menu-mobile a {
    width: 100%;
    max-width: 340px;
    text-align: center;
    font-size: 18px;
  }
}

#inicio {
  min-height: auto;
  padding-top: clamp(112px, 16vh, 150px);
  padding-bottom: clamp(56px, 9vh, 88px);
}

.hero-title {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero-actions > * {
  cursor: pointer;
}

@media (max-width: 700px) {
  .hero-title {
    font-size: clamp(1.9rem, 8.2vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-btn,
  .hero-link,
  .universos-cta-actions a {
    width: 100%;
  }

  .hero-mock {
    margin-top: 36px;
  }
}

@media (max-width: 360px) {
  #inicio {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: 1.85rem;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .hero-mock,
  .universos-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.beneficios,
.como-funciona,
.negocios,
.comunidade-negocios,
.newsletter,
.patrocinadores,
.universos {
  padding-inline: clamp(16px, 5vw, 72px);
}

.beneficios-titulo,
.contato-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.beneficios h2,
.cf-header h2,
.negocios h2,
.contato-titulo h1,
.newsletter-container h2,
.titulo-secao {
  overflow-wrap: anywhere;
}

.beneficios h4 br,
.cf-header p br,
.textinho br {
  display: none;
}

.beneficios-grid,
.conteudo-grid,
.caards,
.curadoria_filtro_grid,
.universos-features-grid,
.universos-testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.caards {
  width: min(1200px, 100%);
}

.caard {
  min-width: 0;
}

.caard_nome_empresa,
.caard_nome,
.deescricao,
.caard_tag,
.modal-texto,
.modal-info-row span {
  overflow-wrap: anywhere;
}

.botoes,
.caard_botao {
  flex-wrap: wrap;
}

.botoes button,
.caard_botao button {
  min-height: 42px;
}

.timelinepurple,
.timelinepink,
.timelineblue {
  padding-inline: 0;
}

@media (max-width: 760px) {
  .timelinepurple::before,
  .timelinepink::before,
  .timelineblue::before {
    left: 18px;
  }

  .step,
  .step.left,
  .step.right {
    width: 100%;
    left: 0;
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
  }

  .step .dot {
    left: 0;
    right: auto;
  }

  .cardd {
    margin-inline: 0;
    text-align: left;
  }

  .jornada h3,
  .jornada h5,
  .jornada h6 {
    font-size: 22px;
    padding-top: 32px;
  }

  .cf-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 12px;
  }

  .cf-tabs .tab {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .card {
    align-items: flex-start;
    padding: 18px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .modal {
    padding: 12px;
  }

  .modal-content,
  .modalContent,
  .modal-box {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 22px 16px;
    overflow-y: auto;
  }

  .modal-header {
    padding: 1.5rem 1rem;
  }

  .modal-header-inner,
  .perfilHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .perfilGrid,
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .modal-info-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.contato-wrapper {
  margin-inline: auto;
  width: min(1080px, 100%);
}

.card-contato,
.newsletter-container,
.parceiro-container,
.form-container {
  max-width: 100%;
}

.info {
  min-width: 0;
}

.info p,
.info a {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .instagram-float {
    right: 12px;
    bottom: 12px;
    left: 12px;
    margin-right: 0;
    padding: 10px 12px;
  }

  .insta-link {
    min-width: 0;
  }

  .insta-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer {
    padding-inline: 20px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }
}
