:root {
  --azul-profundo: #031321;
  --azul-escuro: #061f36;
  --azul: #082947;
  --azul-transparente: rgba(3, 19, 33, 0.88);

  --dourado: #d8a326;
  --dourado-claro: #f0bd42;

  --creme: #f5efe3;
  --creme-card: #fff8ec;
  --cinza-claro: #f1f3f6;

  --branco: #ffffff;
  --preto: #111111;
  --verde: #0f7f3b;
}

/* =========================================
   RESET / BASE
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--creme);
  color: var(--azul-profundo);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================================
   HEADER / MENU FIXO
========================================= */

.header {
  width: 100%;
  height: 78px;
  background: var(--azul-profundo);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(216, 163, 38, 0.45);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  background: var(--azul-transparente);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.34);
}

.header-content {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.menu-spacing {
  height: 78px;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-area img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}

/* =========================================
   MENU PRINCIPAL
========================================= */

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.menu a,
.menu-dropdown-btn {
  color: var(--branco);
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
  transition: 0.25s ease;
}

.menu a {
  position: relative;
  padding: 29px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 0;
  height: 2px;
  background: var(--dourado-claro);
  transition: 0.25s ease;
}

.menu a:hover,
.menu a.active,
.menu-dropdown-btn:hover {
  color: var(--dourado-claro);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

/* =========================================
   DROPDOWN DO MENU
========================================= */

.menu-dropdown {
  position: relative;
}

.menu-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 29px 0;
}

.menu-dropdown-btn span {
  color: var(--dourado-claro);
  font-size: 14px;
  line-height: 1;
}

.submenu {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  min-width: 220px;
  background: var(--azul-profundo);
  border: 1px solid rgba(216, 163, 38, 0.45);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  z-index: 10000;
}

.submenu a {
  display: block;
  color: var(--branco);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.submenu a::after {
  display: none;
}

.submenu a:hover {
  background: rgba(216, 163, 38, 0.15);
  color: var(--dourado-claro);
}

.menu-dropdown:hover .submenu {
  display: block;
}

/* =========================================
   AÇÕES DO MENU
========================================= */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* =========================================
   BOTÃO ACESSE SUA CONTA
========================================= */

.btn-conta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  background: transparent;
  color: var(--dourado-claro);
  border: 1px solid var(--dourado-claro);
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
}

.btn-conta span {
  color: var(--dourado-claro);
  font-size: 16px;
  line-height: 1;
  transition: 0.25s ease;
}

.btn-conta:hover {
  background: rgba(216, 163, 38, 0.12);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-conta:hover span {
  color: var(--branco);
}

/* =========================================
   BOTÃO ASSOCIE-SE
========================================= */

.btn-associado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  color: var(--azul-profundo);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(216, 163, 38, 0.18);
}

.btn-associado:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================================
   BOTÃO LOGIN / ACESSO TRANSPARENTE
========================================= */

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  background: transparent;
  color: var(--dourado-claro);
  border: 1px solid var(--dourado-claro);
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
}

.btn-login:hover {
  background: rgba(216, 163, 38, 0.12);
  color: var(--branco);
  border-color: var(--dourado-claro);
  transform: translateY(-2px);
}

/* =========================================
   BOTÃO MOBILE
========================================= */

.menu-mobile {
  display: none;
  background: transparent;
  border: none;
  color: var(--branco);
  font-size: 32px;
  cursor: pointer;
  margin-left: auto;
}

/* =========================================
   HERO PRINCIPAL
========================================= */

.hero-principal {
  position: relative;
  width: 100%;
  min-height: 470px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 19, 33, 0.96) 0%,
      rgba(3, 19, 33, 0.88) 34%,
      rgba(3, 19, 33, 0.56) 58%,
      rgba(3, 19, 33, 0.22) 100%
    ),
    url("../img/heroi-tiro-livre.png") center center / cover no-repeat;
  color: var(--branco);
  border-bottom: 1px solid rgba(216, 163, 38, 0.55);
  overflow: hidden;
}

.hero-principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(216, 163, 38, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(3, 19, 33, 0.05), rgba(3, 19, 33, 0.22));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  max-width: 560px;
  padding: 48px 0 34px;
}

.hero-text h1 {
  color: var(--branco);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.03;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text h1 span {
  color: var(--dourado-claro);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  color: var(--azul-profundo);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(216, 163, 38, 0.20);
}

.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.4;
}

.hero-image-space {
  min-height: 470px;
}

.hero-image {
  display: none;
}

/* =========================================
   BENEFÍCIOS RÁPIDOS
========================================= */

.hero-beneficios {
  width: 100%;
  background: var(--azul-profundo);
  color: var(--branco);
  border-bottom: 1px solid rgba(216, 163, 38, 0.35);
}

.hero-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 170px;
  align-items: stretch;
}

.hero-beneficio-card {
  position: relative;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(216, 163, 38, 0.55);
}

.hero-beneficio-card:last-child {
  border-right: none;
}

.hero-beneficio-icon {
  color: var(--dourado-claro);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 14px;
}

.hero-beneficio-card h3 {
  color: var(--dourado-claro);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-beneficio-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
  max-width: 230px;
}

/* =========================================
   BENEFÍCIOS AO ALCANCE
========================================= */

.beneficios {
  background: var(--branco);
  padding: 42px 0 10px;
}

.beneficios-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.beneficios-header h2,
.conteudos-header h2 {
  color: var(--azul-profundo);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 8px;
}

.beneficios-header p,
.conteudos-header p {
  color: rgba(3, 19, 33, 0.75);
  font-size: 15px;
  line-height: 1.45;
  max-width: 650px;
}

.btn-ver-beneficios,
.btn-ver-conteudos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  background: var(--azul-profundo);
  color: var(--branco);
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.25s ease;
}

.btn-ver-beneficios:hover,
.btn-ver-conteudos:hover {
  background: var(--azul);
  transform: translateY(-2px);
}

/* =========================================
   CARDS DE BENEFÍCIOS
========================================= */

.cards-beneficios {
  background: var(--branco);
  padding: 26px 0 26px;
}

.cards-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.beneficio-card {
  min-height: 210px;
  background: var(--branco);
  border: 1px solid rgba(3, 19, 33, 0.13);
  border-radius: 6px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(3, 19, 33, 0.04);
  transition: 0.25s ease;
}

.beneficio-card:hover,
.beneficio-complementar-card:hover,
.conteudo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(3, 19, 33, 0.10);
  border-color: rgba(216, 163, 38, 0.45);
}

.beneficio-card-icon {
  color: var(--dourado);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 22px;
}

.beneficio-card h3 {
  color: var(--azul-profundo);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 15px;
}

.beneficio-card p {
  color: rgba(3, 19, 33, 0.68);
  font-size: 13.5px;
  line-height: 1.5;
  min-height: 62px;
  margin-bottom: 18px;
}

.beneficio-card a,
.beneficio-complementar-card a {
  color: var(--dourado);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

/* =========================================
   CLUBE DE BENEFÍCIOS
========================================= */

.clube-beneficios {
  background: var(--branco);
  padding: 0 0 20px;
}

.clube-beneficios-box {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 34px 70px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(245, 239, 227, 0.98), rgba(245, 239, 227, 0.88)),
    radial-gradient(circle at right, rgba(216, 163, 38, 0.26), transparent 42%);
  box-shadow: 0 8px 22px rgba(3, 19, 33, 0.04);
}

.clube-beneficios-text h2 {
  color: var(--azul-profundo);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 14px;
}

.clube-beneficios-text p {
  color: rgba(3, 19, 33, 0.78);
  font-size: 15px;
  line-height: 1.45;
  max-width: 520px;
}

.btn-clube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 24px;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  color: var(--azul-profundo);
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.clube-beneficios-card-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartao-associado {
  width: min(360px, 100%);
  min-height: 170px;
  padding: 30px 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(3, 19, 33, 0.98), rgba(8, 41, 71, 0.96)),
    radial-gradient(circle at right, rgba(216, 163, 38, 0.18), transparent 42%);
  box-shadow: 0 18px 40px rgba(3, 19, 33, 0.25);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.cartao-associado::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logotipo.png") right -25px center / 160px no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.cartao-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.cartao-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}

.cartao-logo strong {
  display: block;
  color: var(--branco);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}

.cartao-logo strong span {
  color: var(--dourado-claro);
}

.cartao-logo small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.cartao-associado p {
  position: relative;
  z-index: 2;
  color: var(--dourado-claro);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

/* =========================================
   BENEFÍCIOS COMPLEMENTARES
========================================= */

.beneficios-complementares {
  background: var(--branco);
  padding: 0 0 42px;
}

.beneficios-complementares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.beneficio-complementar-card {
  min-height: 145px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: var(--branco);
  border: 1px solid rgba(3, 19, 33, 0.13);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(3, 19, 33, 0.04);
  transition: 0.25s ease;
}

.beneficio-complementar-icon {
  color: var(--dourado);
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.beneficio-complementar-card h3 {
  color: var(--azul-profundo);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.beneficio-complementar-card p {
  color: rgba(3, 19, 33, 0.70);
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 12px;
}

/* =========================================
   APP / ÁREA DO ASSOCIADO
========================================= */

.app-associado {
  background: var(--azul-profundo);
  color: var(--branco);
  padding: 34px 0;
  border-top: 1px solid rgba(216, 163, 38, 0.35);
  border-bottom: 1px solid rgba(216, 163, 38, 0.35);
}

.app-associado-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 44px;
}

.app-bloco {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 30px;
}

.app-phone-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-phone-img {
  width: 135px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}

.app-text h2 {
  color: var(--branco);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 16px;
}

.app-text p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.app-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.app-divider {
  width: 1px;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.35);
}

/* =========================================
   CONTEÚDOS E ATUALIZAÇÕES
========================================= */

.conteudos {
  background: var(--branco);
  padding: 34px 0 46px;
}

.conteudos-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.conteudo-card {
  background: var(--branco);
  border: 1px solid rgba(3, 19, 33, 0.13);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(3, 19, 33, 0.04);
  transition: 0.25s ease;
}

.conteudo-img {
  width: 100%;
  height: 145px;
  overflow: hidden;
  background: var(--cinza-claro);
}

.conteudo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.conteudo-card:hover .conteudo-img img {
  transform: scale(1.04);
}

.conteudo-body {
  padding: 14px 16px 18px;
}

.conteudo-categoria {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  margin-bottom: 10px;
  background: var(--azul-profundo);
  color: var(--branco);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.conteudo-body h3 {
  color: var(--azul-profundo);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 10px;
}

.conteudo-body p {
  color: rgba(3, 19, 33, 0.70);
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.conteudo-body a {
  color: var(--azul-profundo);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.conteudo-body a:hover {
  color: var(--dourado);
}

/* =========================================
   FOOTER FINAL
========================================= */

.footer-site {
  background: var(--azul-profundo);
  color: var(--branco);
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr 0.85fr 0.95fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
  max-width: 260px;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--azul-profundo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
}

.footer-column h3 {
  color: var(--branco);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 7px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--dourado-claro);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact span {
  color: var(--dourado-claro);
  font-size: 17px;
  line-height: 1.2;
}

.footer-contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1.2fr;
  gap: 38px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-service {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-service-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  color: var(--dourado-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.footer-service p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 163, 38, 0.45);
  padding: 24px 0;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 1280px) {
  .container {
    width: 96%;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1050px) {
  .header {
    height: auto;
    min-height: 78px;
  }

  .header-content {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding: 9px 0 14px;
  }

  .menu-mobile {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 0;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu a::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    order: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0 14px;
  }

  .header-actions.active {
    display: flex;
  }

  .btn-conta {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .btn-associado,
  .btn-login {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    font-size: 14px;
  }

  .hero-principal {
    background:
      linear-gradient(
        180deg,
        rgba(3, 19, 33, 0.97) 0%,
        rgba(3, 19, 33, 0.91) 52%,
        rgba(3, 19, 33, 0.78) 100%
      ),
      url("../img/heroi-tiro-livre.png") center top / cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-space {
    display: none;
  }

  .hero-beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clube-beneficios-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .beneficios-complementares-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-associado-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .app-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .conteudos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios-header,
  .conteudos-header {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .container {
    width: 92%;
  }

  .logo-area img {
    width: 54px;
    height: 54px;
  }

  .hero-text {
    padding: 42px 0 34px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-btn,
  .btn-ver-beneficios,
  .btn-ver-conteudos,
  .btn-clube {
    width: 100%;
  }

  .hero-beneficios-grid,
  .cards-beneficios-grid,
  .beneficios-complementares-grid,
  .conteudos-grid {
    grid-template-columns: 1fr;
  }

  .hero-beneficio-card {
    border-right: none;
    border-bottom: 1px solid rgba(216, 163, 38, 0.45);
  }

  .hero-beneficio-card:last-child {
    border-bottom: none;
  }

  .clube-beneficios-box {
    padding: 28px 22px;
  }

  .cartao-associado {
    min-height: 155px;
    padding: 24px 22px;
  }

  .app-bloco {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-phone-img {
    width: 150px;
  }

  .conteudo-img {
    height: 180px;
  }

  .footer-top,
  .footer-middle {
    grid-template-columns: 1fr;
  }

  .footer-site {
    padding-top: 36px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 31px;
  }

  .hero-text p,
  .app-text p,
  .conteudos-header p,
  .beneficios-header p {
    font-size: 14px;
  }

  .app-text h2,
  .conteudos-header h2,
  .beneficios-header h2 {
    font-size: 27px;
  }

  .store-btn img {
    height: 36px;
  }

  .cartao-logo strong {
    font-size: 20px;
  }

  .cartao-logo small {
    font-size: 7px;
  }
}