:root {
  --brazil-green: #0D3C31;
  --brazil-yellow: #ffdf00;
  --brazil-blue: #0D2141;
  --brazil-blue-dark: #07101E;
  --ink: #05080f;
  --paper: #f7f8ff;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(6, 23, 96, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--brazil-blue-dark);
  font-family: "Inter", "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

.landing-page {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 14px 32px rgba(13, 44, 163, 0.16);
}

.join-bar {
  position: relative;
  background: #45a33d;
}

.join-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.join-bar__text {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.join-bar__text strong {
  color: var(--brazil-yellow);
}

.join-bar__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background: #ffffff;
  color: #2e9540;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(20, 86, 38, 0.16);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  animation: joinBarButtonPulse 2.8s ease-in-out infinite;
}

.join-bar__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(20, 86, 38, 0.22);
}

.join-bar__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.24) 46%,
    rgba(255, 255, 255, 0) 72%
  );
  transform: translateX(-135%);
  animation: joinBarButtonSweep 2.8s ease-in-out infinite;
  pointer-events: none;
}

.join-bar__button svg {
  width: 22px;
  height: 22px;
}

@keyframes joinBarButtonPulse {
  0%,
  100% {
    background: #ffffff;
    border-color: #ffffff;
    color: #2e9540;
    box-shadow: 0 14px 28px rgba(20, 86, 38, 0.16);
  }

  50% {
    background: #2e9540;
    border-color: #ffdf00;
    color: #ffffff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
  }
}

@keyframes joinBarButtonSweep {
  0%,
  18% {
    transform: translateX(-135%);
  }

  42%,
  100% {
    transform: translateX(135%);
  }
}

.header-nav {
  position: relative;
  width: 100%;
  background: var(--brazil-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 76px;
}

.header-nav__brand {
  flex: none;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.header-nav__brand em {
  color: #ffd700;
  font-style: normal;
}

.header-nav__logo {
  width: 118px;
}

.header-nav__toggle {
  display: none;
}

.header-nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.header-nav__links a::after {
  display: none;
}

.header-nav__links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 223, 0, 0.14);
  border-color: rgba(255, 223, 0, 0.5);
  color: var(--brazil-yellow);
}

.hero-section {
  position: relative;
  min-height: min(100vh, 1060px);
  background: #1838b2;
}

.hero-section__art,
.hero-section__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-section__art {
  object-fit: cover;
  object-position: center top;
}

.hero-section__overlay {
  background:
    linear-gradient(180deg, rgba(24, 56, 178, 0) 56%, rgba(24, 56, 178, 1) 100%);
}

.hero-section__content {
  position: relative;
  min-height: min(100vh, 1060px);
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  padding-bottom: 120px;
}

.hero-section__copy {
  max-width: 510px;
}

.hero-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-section__title-art {
  width: min(100%, 620px);
  margin-top: 4px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

.hero-section__description {
  margin: 28px 0 0;
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 420px;
}

.hero-whatsapp-card {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 460px;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  color: #1d1d1d;
  box-shadow: var(--shadow-soft);
}

.hero-whatsapp-card__icon {
  flex: none;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--brazil-blue);
  color: var(--white);
}

.hero-whatsapp-card__icon svg {
  width: 36px;
  height: 36px;
}

.hero-whatsapp-card strong,
.hero-whatsapp-card span {
  display: block;
}

.hero-whatsapp-card strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-whatsapp-card span {
  margin-top: 4px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.materials-intro,
.about-section,
.social-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(73, 127, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(33, 130, 255, 0.18), transparent 25%),
    radial-gradient(circle at 50% 55%, rgba(7, 62, 230, 0.18), transparent 30%),
    linear-gradient(180deg, #0e2aa4 0%, #071c7c 100%);
}

.materials-intro::before,
.about-section::before,
.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 32%, rgba(255, 255, 255, 0.08) 0, transparent 24%),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.06) 0, transparent 20%);
  opacity: 0.65;
  pointer-events: none;
}

.materials-intro .site-shell,
.about-section .site-shell,
.social-section .site-shell {
  position: relative;
  z-index: 1;
}

.materials-intro {
  padding: 76px 0 110px;
}

.materials-intro__headline {
  max-width: 1240px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.materials-intro__headline span {
  color: var(--brazil-yellow);
}

.materials-intro__layout {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.materials-intro__copy {
  max-width: 470px;
}

.materials-intro__lead {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  line-height: 1.32;
  max-width: 560px;
}

.materials-intro__lead strong {
  display: inline;
  color: var(--white);
  font-weight: 800;
}

.materials-intro__rotator {
  position: relative;
  height: 72px;
  margin: 18px 0 34px;
  overflow: hidden;
}

.materials-intro__rotator span {
  position: absolute;
  inset: 0 auto auto 0;
  color: #26a7ff;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(24px);
  animation: materialsWordRotate 12s infinite ease-in-out;
}

.materials-intro__rotator span:nth-child(2) {
  animation-delay: 3s;
}

.materials-intro__rotator span:nth-child(3) {
  animation-delay: 6s;
}

.materials-intro__rotator span:nth-child(4) {
  animation-delay: 9s;
}

.materials-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  color: #191919;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.18;
  max-width: 360px;
  box-shadow: var(--shadow-soft);
}

.materials-intro__cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #131313;
  color: var(--white);
  flex: 0 0 auto;
}

.materials-intro__cta-icon svg {
  width: 33px;
  height: 33px;
}

.materials-intro__stack {
  position: relative;
  min-height: 520px;
}

.materials-intro__stack-card {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 460px;
  border-radius: 28px;
  box-shadow: 0 30px 58px rgba(4, 18, 86, 0.42);
  transform-origin: center center;
  animation: materialsCarousel 14s infinite ease-in-out;
}

.materials-intro__stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-intro__stack-card--left {
  animation-delay: 0s;
}

.materials-intro__stack-card--center {
  animation-delay: -4.66s;
}

.materials-intro__stack-card--right {
  animation-delay: -9.33s;
}

@keyframes materialsWordRotate {
  0%,
  20% {
    opacity: 1;
    transform: translateY(0);
  }

  24%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes materialsCarousel {
  0%,
  28% {
    transform: translate(-50%, -53%) scale(1);
    z-index: 3;
    opacity: 1;
  }

  33%,
  61% {
    transform: translate(-16%, -43%) scale(0.82) rotate(1.6deg);
    z-index: 2;
    opacity: 0.9;
  }

  66%,
  94% {
    transform: translate(-84%, -43%) scale(0.82) rotate(-1.6deg);
    z-index: 1;
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -53%) scale(1);
    z-index: 3;
    opacity: 1;
  }
}

.categories-section {
  background: var(--white);
  color: var(--ink);
  padding: 76px 0 96px;
}

.section-title {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  font-weight: 900;
}

.section-title--blue {
  color: var(--brazil-blue);
}

.categories-section__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 920px;
  margin: 0 auto 42px;
}

.category-chip {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border-radius: 14px;
  background: #af0f0a;
  color: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  line-height: 1.1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 42, 125, 0.14);
}

.category-chip--blue {
  background: var(--brazil-blue);
}

.category-chip--outline {
  background: transparent;
  color: var(--brazil-blue);
  border: 2px solid var(--brazil-blue);
}

.category-chip--active {
  background: var(--brazil-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(15, 42, 125, 0.2);
}

.categories-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.categories-section__empty {
  grid-column: 1 / -1;
  padding: 34px 24px;
  border-radius: 24px;
  background: #f2f4ff;
  color: #43506c;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 18px 48px rgba(15, 42, 125, 0.08);
}

.categories-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.categories-section__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 18px;
  background: var(--brazil-blue);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(15, 42, 125, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.categories-section__more:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(15, 42, 125, 0.22);
}

.preview-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 42, 125, 0.12);
  background: #f2f4ff;
  min-height: 100%;
  height: 100%;
}

.preview-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-height: 246px;
  padding: 18px 18px 22px;
  color: var(--ink);
}

.preview-card__content h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

.preview-card__content p {
  margin: 0;
  color: #4e5874;
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.preview-card__content a {
  margin-top: auto;
  color: var(--brazil-blue);
  font-weight: 800;
}

.about-section {
  padding: 90px 0 82px;
}

.about-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about-section__logo {
  width: 320px;
  margin-bottom: 28px;
}

.about-section__copy p {
  margin: 0 0 26px;
  font-size: 1.16rem;
  line-height: 1.44;
  max-width: 620px;
}

.about-section__icons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  color: var(--white);
}

.about-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.about-section__icon svg {
  width: 100%;
  height: 100%;
}

.about-section__visual img {
  width: min(100%, 760px);
  margin-left: auto;
  filter: drop-shadow(0 16px 50px rgba(3, 18, 93, 0.42));
}

.influencer-section {
  padding: 0 0 94px;
}

.influencer-section__card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 56%, rgba(255, 255, 255, 0.25) 68%, rgba(255, 255, 255, 0) 100%),
    #ffffff;
  box-shadow: 0 24px 64px rgba(4, 18, 88, 0.26);
}

.influencer-section__card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0) 100%),
    url("../images/direitaja/banner-influenciadores.jpg") right center / cover no-repeat;
  pointer-events: none;
}

.influencer-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  max-width: 520px;
  padding: 54px 56px;
  color: #22242b;
}

.influencer-section__content h2 {
  margin: 0;
  color: var(--brazil-blue);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 800;
}

.influencer-section__content p {
  margin: 12px 0 0;
  color: #22242b;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.15;
}

.influencer-section__cta {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 420px);
  padding: 26px 28px;
  border-radius: 16px;
  background: #1429a5;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 18px 36px rgba(13, 44, 163, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.influencer-section__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(13, 44, 163, 0.3);
  background: #0f2396;
}

.influencer-section__cta span {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.influencer-section__cta svg {
  flex: none;
  width: 42px;
  height: 42px;
  color: var(--white);
}

.signup-section {
  position: relative;
  padding: 108px 0 118px;
  background:
    linear-gradient(180deg, rgba(14, 42, 164, 0.18) 0%, rgba(7, 28, 124, 0.18) 100%),
    url("../images/direitaja/banner-formulario.png") center / cover no-repeat,
    linear-gradient(180deg, #0e2aa4 0%, #071c7c 100%);
}

.signup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 32%, rgba(255, 255, 255, 0.08) 0, transparent 24%),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.06) 0, transparent 20%);
  pointer-events: none;
}

.signup-section .site-shell {
  position: relative;
  z-index: 1;
}

.signup-section__panel {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 42px;
  padding: 20px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.signup-section__aside {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 700px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(73, 127, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #112eb3 0%, #071c7c 100%);
}

.signup-section__aside-top,
.signup-section__aside-body,
.signup-section__aside-footer {
  padding: 32px 34px;
}

.signup-section__aside-top {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.signup-section__aside-logo {
  width: 118px;
}

.signup-section__aside-body h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(3.15rem, 4.35vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brazil-yellow);
}

.signup-section__aside-body p {
  margin: 0;
  text-align: center;
  max-width: 290px;
  margin-inline: auto;
  font-size: 1.12rem;
  line-height: 1.3;
}

.signup-section__aside-body strong {
  color: var(--brazil-yellow);
}

.signup-section__aside-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.signup-section__aside-footer strong,
.signup-section__aside-footer span {
  display: block;
}

.signup-section__aside-footer strong {
  font-size: 0.98rem;
  color: var(--brazil-yellow);
}

.signup-section__aside-footer span {
  margin-top: 6px;
  font-size: 0.82rem;
}

.signup-section__aside-help {
  width: 48px;
  height: 48px;
  flex: none;
  position: relative;
  display: block;
  border-radius: 14px;
  background: var(--brazil-yellow);
  color: var(--brazil-blue-dark);
  box-shadow: 0 14px 24px rgba(255, 223, 0, 0.18);
}

.signup-section__aside-help svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  display: block;
}

.signup-section__form-card {
  padding: 54px 48px;
  border-radius: 28px;
  background: #fbfcff;
  box-shadow: inset 0 0 0 1px rgba(10, 34, 120, 0.05), 0 12px 40px rgba(6, 23, 96, 0.08);
}

.signup-section__form-head h3 {
  margin: 0 0 28px;
  color: var(--brazil-blue);
  font-size: 2rem;
  font-weight: 800;
}

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

.signup-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.signup-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--brazil-blue);
  font-weight: 700;
}

.signup-field--full {
  width: 100%;
}

.signup-field span {
  font-size: 1rem;
}

.signup-field em {
  margin-left: 2px;
  color: #ff4545;
  font-style: normal;
}

.signup-field input,
.signup-field select {
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(10, 34, 120, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #273250;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-field input::placeholder,
.signup-field select {
  color: #9aa3bf;
}

.signup-field select.is-filled {
  color: #273250;
}

.signup-field input:focus,
.signup-field select:focus {
  border-color: rgba(13, 44, 163, 0.25);
  box-shadow: 0 0 0 4px rgba(13, 44, 163, 0.08);
}

.signup-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1f2b48;
  font-size: 1rem;
}

.signup-form__privacy input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  accent-color: var(--brazil-blue);
}

.signup-form__privacy a {
  color: #202020;
  text-decoration: underline;
}

.signup-form__submit {
  width: 100%;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0D2141 0%, #193E7A 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 32px rgba(13, 44, 163, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signup-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(13, 44, 163, 0.34);
}

.social-section {
  padding: 94px 0 0;
}

.social-section__showcase {
  padding: 28px 20px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(8, 36, 156, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-section__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: #171717;
  box-shadow: 0 18px 48px rgba(6, 23, 96, 0.2);
}

.social-card__link {
  display: block;
  color: inherit;
}

.social-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.social-card__body {
  padding: 14px 16px 18px;
}

.social-card__body strong,
.social-card__body span,
.social-card__body p {
  display: block;
}

.social-card__body strong {
  font-size: 1.05rem;
}

.social-card__body span {
  margin-top: 4px;
  color: #656c83;
  font-size: 0.82rem;
}

.social-card__body p {
  margin: 14px 0 0;
  color: #313749;
  font-size: 0.92rem;
  line-height: 1.45;
}

.social-card__body p b {
  font-weight: 800;
}

.site-footer {
  position: relative;
  isolation: isolate;
  margin-top: 86px;
  padding: 82px 0 20px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(19, 65, 209, 0) 0%,
      rgba(17, 56, 186, 0.18) 14%,
      rgba(10, 35, 145, 0.68) 48%,
      rgba(5, 20, 94, 0.96) 100%
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 64px;
  margin-bottom: 34px;
}

.site-footer__brand-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.site-footer__brand {
  width: 86px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 16px;
  background: #0f6bdd;
}

.site-footer__social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brazil-blue);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-footer__social a:hover {
  transform: translateY(-1px);
  background: var(--white);
  color: #0f6bdd;
}

.site-footer__social a svg {
  width: 16px;
  height: 16px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  max-width: 930px;
  margin: 0 auto;
}

.site-footer__links h4 {
  margin: 0 0 20px;
  font-size: 1.45rem;
  font-weight: 800;
}

.site-footer__links h5 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer__links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.site-footer__highlight-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__highlight-links h4 {
  margin: 0;
  font-size: 1.5rem;
}

.site-footer__bottom {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: start;
  justify-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.site-footer__copyright {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

#error-message {
  background: #ffe4e4;
  color: #9f2121;
  border: 1px solid #f5a5a5;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
}

/* Shared styles still used by /materiais/ */
.top-cta-banner {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-cta-banner:hover {
  transform: translateY(1px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.top-cta-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.top-cta-badge,
.top-cta-badge span,
.top-cta-badge svg {
  color: #ffffff !important;
  fill: currentColor;
}

.top-cta-banner:hover .top-cta-badge {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.48);
  filter: brightness(1.04);
}

@media (max-width: 1180px) {
  .join-bar__inner {
    padding-right: 232px;
  }

  .join-bar__text {
    font-size: 1rem;
  }

  .header-nav__inner {
    gap: 24px;
  }

  .header-nav__links {
    gap: 14px;
  }

  .hero-section__content {
    align-items: flex-start;
    padding-top: 420px;
    padding-bottom: 90px;
  }

  .materials-intro__layout,
  .about-section__layout,
  .signup-section__panel {
    grid-template-columns: 1fr;
  }

  .materials-intro__stack {
    min-height: 360px;
    width: min(100%, 360px);
    margin: 20px auto 0;
    justify-self: center;
  }

  .materials-intro__lead {
    font-size: 1.4rem;
  }

  .materials-intro__rotator {
    height: 58px;
    margin-bottom: 28px;
  }

  .materials-intro__rotator span {
    font-size: 2.45rem;
  }

  .materials-intro__stack-card {
    width: 320px;
    height: 390px;
  }

  .categories-section__grid,
  .social-section__cards,
  .site-footer__links,
  .site-footer__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    margin-top: 72px;
    padding-top: 72px;
  }

  .site-footer__bottom {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .site-shell {
    padding: 0 18px;
  }

  .join-bar__inner {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    min-height: unset;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .join-bar__text {
    position: static;
    transform: none;
    white-space: normal;
  }

  .join-bar__button {
    width: auto;
    max-width: calc(100% - 24px);
    align-self: center;
    justify-content: center;
    padding: 12px 26px;
  }

  .header-nav {
    position: relative;
  }

  .header-nav__inner {
    min-height: 78px;
    padding-top: 16px;
    padding-bottom: 16px;
    justify-content: space-between;
    gap: 16px;
  }

  .header-nav__logo {
    width: 104px;
  }

  .header-nav__toggle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(7, 28, 124, 0.18);
  }

  .header-nav__toggle span {
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .header-nav__inner.is-open .header-nav__toggle span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .header-nav__inner.is-open .header-nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .header-nav__inner.is-open .header-nav__toggle span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .header-nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(13, 44, 163, 0.97);
    box-shadow: 0 24px 50px rgba(7, 28, 124, 0.26);
    backdrop-filter: blur(10px);
  }

  .header-nav__inner.is-open .header-nav__links {
    display: flex;
  }

  .header-nav__links a {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    font-size: 1.02rem;
    font-weight: 700;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section__art {
    object-position: center center;
  }

  .hero-section__content {
    min-height: auto;
    padding-top: 300px;
    padding-bottom: 64px;
  }

  .hero-section__eyebrow {
    font-size: 0.75rem;
  }

  .hero-section__title-art {
    width: min(100%, 420px);
  }

  .hero-section__description,
  .materials-intro__copy p,
  .about-section__copy p {
    font-size: 1rem;
  }

  .materials-intro__lead {
    font-size: 1.2rem;
  }

  .materials-intro__rotator {
    height: 46px;
    margin: 12px 0 24px;
  }

  .materials-intro__rotator span {
    font-size: 1.95rem;
  }

  .hero-whatsapp-card {
    padding: 16px 18px;
    border-radius: 24px;
  }

  .hero-whatsapp-card__icon {
    width: 56px;
    height: 56px;
  }

  .hero-whatsapp-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .materials-intro,
  .categories-section,
  .about-section,
  .influencer-section,
  .signup-section,
  .social-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .categories-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .signup-section {
    background-position: center;
  }

  .materials-intro__headline {
    margin-bottom: 34px;
  }

  .materials-intro__stack {
    width: min(100%, 260px);
    min-height: 330px;
    margin-inline: auto;
  }

  .materials-intro__cta {
    width: 100%;
    max-width: 100%;
  }

  .materials-intro__stack-card {
    width: 220px;
    height: 280px;
  }

  .materials-intro__cta-icon {
    width: 54px;
    height: 54px;
  }

  .materials-intro__cta-icon svg {
    width: 30px;
    height: 30px;
  }

  .categories-section__chips,
  .site-footer__links,
  .site-footer__bottom,
  .social-section__cards,
  .categories-section__grid,
  .signup-form__grid {
    grid-template-columns: 1fr;
  }

  .categories-section__grid,
  .social-section__cards {
    display: grid;
  }

  .categories-section__chips {
    gap: 8px 10px;
    margin-bottom: 30px;
  }

  .category-chip {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .site-footer {
    margin-top: 54px;
    padding: 58px 0 18px;
  }

  .preview-card {
    min-height: 280px;
  }

  .about-section__logo {
    width: 220px;
  }

  .about-section__icons {
    gap: 20px;
    margin-top: 18px;
  }

  .about-section__icon {
    width: 36px;
    height: 36px;
  }

  .influencer-section {
    padding-top: 0;
  }

  .influencer-section__card {
    min-height: 640px;
    background: #ffffff;
  }

  .influencer-section__card::after {
    inset: -2px;
    background: url("../images/direitaja/banner-mobile-influenciadores.jpg") center bottom /
      cover no-repeat;
    opacity: 1;
  }

  .influencer-section__content {
    min-height: 640px;
    max-width: none;
    width: 100%;
    padding: 40px 28px;
    justify-content: flex-start;
  }

  .influencer-section__content h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 3.5rem);
    line-height: 0.94;
  }

  .influencer-section__content p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .influencer-section__cta {
    width: min(100%, 300px);
    margin-top: 24px;
    padding: 16px 20px;
  }

  .influencer-section__cta svg {
    width: 30px;
    height: 30px;
  }

  .influencer-section__cta span {
    font-size: 0.98rem;
  }

  .signup-section__panel {
    padding: 14px;
    gap: 16px;
  }

  .signup-section__aside {
    min-height: auto;
  }

  .signup-section__aside-top,
  .signup-section__aside-body,
  .signup-section__aside-footer,
  .signup-section__form-card {
    padding: 24px 20px;
  }

  .signup-section__aside-logo {
    width: 104px;
  }

  .signup-section__aside-body h2 {
    margin-bottom: 26px;
    font-size: 2.75rem;
  }

  .signup-section__aside-body p {
    max-width: 310px;
    font-size: 1rem;
  }

  .signup-section__aside-footer strong {
    font-size: 0.92rem;
  }

  .signup-section__aside-footer span {
    font-size: 0.78rem;
  }

  .signup-section__aside-help {
    width: 44px;
    height: 44px;
  }

  .signup-section__aside-help svg {
    width: 24px;
    height: 24px;
  }

  .signup-section__form-head h3 {
    font-size: 1.6rem;
  }

  .signup-field input,
  .signup-field select {
    min-height: 58px;
  }

  .site-footer__top {
    min-height: auto;
    margin-bottom: 26px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .site-footer__brand-wrap {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .site-footer__brand {
    width: 112px;
  }

  .site-footer__social {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .materials-intro__rotator span,
  .materials-intro__stack-card {
    animation: none;
  }

  .materials-intro__rotator {
    height: auto;
  }

  .materials-intro__rotator span {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
  }

  .materials-intro__rotator span:first-child {
    display: block;
  }
}

/* =====================================================================
   ============ MICHELLE OVERRIDES — correções de UX  ==================
   Aplicadas em CIMA do CSS original do direitaja.com.
   Cada bloco refere-se a uma mensagem específica da Michelle.
   ===================================================================== */

/* ---------------------------------------------------------------------
   FIX #6 — "eu arrancaria os botões do menu e deixaria um menu discreto
   na lateral direita"
   Substitui as 4 nav pills (Categorias / Quero Colaborar / Sobre / Redes)
   por um drawer lateral acionado pelo hamburger, em TODAS as resoluções.
   --------------------------------------------------------------------- */
.header-nav__inner {
  justify-content: space-between !important;
}

.header-nav__toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: background 0.15s ease;
}
.header-nav__toggle:hover { background: rgba(255,255,255,0.12); }
.header-nav__toggle:focus-visible { outline: 3px solid var(--brazil-yellow); outline-offset: 2px; }
.header-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header-nav__inner.is-open .header-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-nav__inner.is-open .header-nav__toggle span:nth-child(2) { opacity: 0; }
.header-nav__inner.is-open .header-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Esconde nav links da view inline; vira drawer lateral */
.header-nav__links {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start;
  gap: 0 !important;
  padding: 88px 24px 24px;
  background: var(--brazil-blue-dark);
  box-shadow: -12px 0 32px rgba(0,0,0,0.25);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 60;
  overflow-y: auto;
}
.header-nav__inner.is-open .header-nav__links { transform: translateX(0); }
.header-nav__links a {
  border-radius: 8px !important;
  border: 0 !important;
  background: transparent !important;
  justify-content: flex-start !important;
  padding: 14px 16px !important;
  font-size: 1.05rem !important;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.header-nav__links a:hover {
  background: rgba(255,206,0,0.12) !important;
  transform: none !important;
  color: var(--brazil-yellow) !important;
}

/* Overlay escuro quando drawer aberto */
.header-nav__inner::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 55;
}
.header-nav__inner.is-open::before {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------------------------------------------------------------
   FIX #3 + #4 — "Categorias pega espaço enorme no celular… box de
   seleção apenas no mobile, desktop permanece como está"
   --------------------------------------------------------------------- */
.categorias__mobile-select {
  display: block;
  margin: 0 auto 28px;
  max-width: 480px;
}
.categorias__mobile-select select {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 2px solid var(--brazil-blue);
  border-radius: 14px;
  background: #fff;
  color: var(--brazil-blue);
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brazil-blue) 50%),
                    linear-gradient(135deg, var(--brazil-blue) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.categorias__mobile-select select:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(13, 44, 163, 0.15);
}

@media (min-width: 768px) {
  .categorias__mobile-select { display: none; }
}
@media (max-width: 767px) {
  .categories-section__chips { display: none !important; }
}

/* ---------------------------------------------------------------------
   FIX #10 — "Nessa parte de siga o PL nas redes, deveria estar apenas
   a marca de cada rede social e uma amostrinha"
   Substitui 4 cards completos por linha de ícones + 1 sample.
   --------------------------------------------------------------------- */
.social-brands {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.social-brands a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.social-brands a:hover {
  background: var(--brazil-yellow);
  color: var(--brazil-blue-dark);
  transform: translateY(-3px);
}
.social-brands svg { width: 30px; height: 30px; }

.social-sample {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
}
.social-sample img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}
.social-sample__body { color: rgba(255,255,255,0.95); }
.social-sample__body strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.social-sample__body span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.social-sample__body p { margin: 0; font-size: 0.92rem; line-height: 1.4; }

/* Esconde os 4 cards do layout antigo (vai ser substituído no PHP) */
.social-section__cards { display: none; }

/* ---------------------------------------------------------------------
   FIX #1 — "Tá vendo? Muita coisa desalinhada"
   Algumas correções de alinhamento gerais.
   --------------------------------------------------------------------- */
.section-title { text-wrap: balance; }
.materials-intro__headline { text-wrap: balance; }
.influencer-section__card { contain: layout; }

/* Tab/select padding em mobile pra não cortar texto */
@media (max-width: 480px) {
  .top-promo__inner { flex-wrap: wrap; gap: 8px !important; }
  .join-bar__text { position: static !important; transform: none !important; white-space: normal !important; }
}

/* ---------------------------------------------------------------------
   FIX #8 — "Aqui deveria ser um QUEM SOMOS"
   O título já vem do PHP. Aqui só estilamos.
   --------------------------------------------------------------------- */
.about-section .section-title {
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 767px) {
  .about-section .section-title { text-align: center; }
}
