:root {
  --color-bg: #050509;
  --color-bg-alt: #0b0b12;
  --color-accent: #9dff20;
  --color-accent-soft: rgba(157, 255, 32, 0.12);
  --color-secondary: #345c00;
  --color-text: #f5f5f7;
  --color-muted: #a3a3b0;
  --color-card: #151520;
  --color-border-soft: rgba(255, 255, 255, 0.08);
  /* gradientes principais, mais leves e próximos do original (verde/amarelo) */
  --gradient-hero: radial-gradient(circle at 0% 0%, rgba(157, 255, 32, 0.2) 0, transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(234, 255, 196, 0.2) 0, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(0, 210, 140, 0.18) 0, transparent 60%),
    #050509;
  --gradient-section-soft: linear-gradient(180deg, #07070f, #050509);
  --gradient-section-accent: linear-gradient(135deg, #060b03, #050509);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);

  --container-width: 1120px;
  --spacing-section: 4.5rem;
  --spacing-section-mobile: 3rem;

  --font-base: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-base);
  background: var(--gradient-hero);
  color: var(--color-text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 0.9rem;
  text-align: justify;
  text-justify: inter-word;
}

/* Em telas menores, priorizar leitura com texto alinhado à esquerda */
@media (max-width: 900px) {
  p {
    text-align: left;
    text-justify: auto;
  }
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.75rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  z-index: 0;
  padding: var(--spacing-section) 0;
}

/* transições suaves entre blocos */
.section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto 0;
  background: linear-gradient(to bottom, rgba(5, 5, 9, 0), rgba(5, 5, 9, 0.8));
  pointer-events: none;
  z-index: -1;
}

.section-alt {
  background: var(--gradient-section-soft);
}

.section-accent {
  background: var(--gradient-section-accent);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

/* títulos dentro de modais ficam alinhados ao conteúdo do card */
.modal .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 540px;
  margin: 0 auto 2.25rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}

.logo img {
  max-height: 44px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 1px;
  background: #ffffff;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), #ffffff);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out,
    color 0.12s ease-out;
  white-space: nowrap;
}

.btn-small {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #eaffc4);
  color: #020305;
  box-shadow: 0 12px 30px rgba(157, 255, 32, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(157, 255, 32, 0.45);
}

.btn-secondary {
  background: rgba(5, 5, 9, 0.9);
  color: var(--color-accent);
  border-color: rgba(157, 255, 32, 0.6);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #020305;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(157, 255, 32, 0.75);
}

.btn-outline:hover {
  background: rgba(157, 255, 32, 0.12);
}

.btn i {
  font-size: 1rem;
}

/* HERO */

.hero {
  padding-top: 4.5rem;
}

/* decoração com "cartas" de poker bem sutis no fundo */
.hero::after,
.section-accent::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0.2;
}

/* quatro cartas levemente empilhadas na hero */
.hero::after {
  width: 110px;
  height: 150px;
  right: 10px;
  top: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    14px 10px 0 rgba(255, 255, 255, 0.02),
    28px 20px 0 rgba(255, 255, 255, 0.015),
    42px 30px 0 rgba(255, 255, 255, 0.01);
  transform: rotate(-10deg);
}

/* pequenas cartas no rodapé da seção de destaque final */
.section-accent::after {
  width: 90px;
  height: 130px;
  left: -10px;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    12px 8px 0 rgba(255, 255, 255, 0.015),
    24px 16px 0 rgba(255, 255, 255, 0.01);
  transform: rotate(8deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-lead {
  margin-top: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--color-muted);
  max-width: 560px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-illustration {
  position: relative;
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.65));
}

.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.stats {
  display: flex;
  gap: 1.75rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-prefix {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 700;
}

.stat-label {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-highlight {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.9rem;
  background: radial-gradient(circle at top left, rgba(157, 255, 32, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(5, 5, 9, 0.95));
  border: 1px solid rgba(157, 255, 32, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-highlight p {
  color: var(--color-muted);
  margin-bottom: 1.4rem;
}

/* VÍDEO */

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
  aspect-ratio: 16 / 9;
}

/* Versão para vídeos em formato vertical (stories 9:16) */
.video-wrapper-vertical {
  max-width: 360px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CARDS / GRIDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.cards-grid-3 {
  margin-top: 2rem;
}

/* Lista horizontal de promoções na home */
.home-promos {
  margin-top: 2.2rem;
}

.home-promos-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin: 0 -0.25rem;
  scroll-snap-type: x mandatory;
}

.home-promos-row::-webkit-scrollbar {
  height: 6px;
}

.home-promos-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.home-promo-card {
  flex: 0 0 240px;
  max-width: 260px;
  border-radius: 16px;
  border: 1px solid var(--color-border-soft);
  background: rgba(10, 10, 18, 0.96);
  padding: 0;
  color: var(--color-text);
  text-align: left;
  display: flex;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.12s ease-out, background 0.12s ease-out,
    box-shadow 0.12s ease-out, transform 0.08s ease-out;
}

.home-promo-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-promo-card:hover {
  border-color: rgba(157, 255, 32, 0.9);
  box-shadow: 0 0 0 1px rgba(157, 255, 32, 0.7);
  background: radial-gradient(circle at top left,
      rgba(157, 255, 32, 0.18),
      rgba(5, 5, 9, 0.98));
  transform: translateY(-1px);
}

.home-promos-hint {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .home-promos {
    margin-top: 1.8rem;
  }

  .home-promos-row {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 360px;
    scroll-snap-type: y mandatory;
  }

  .home-promo-card {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* Modal simples para pré-visualizar promoções na home */
.home-promo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 12, 0.85);
  backdrop-filter: blur(10px);
  z-index: 70;
}

.home-promo-modal.is-open {
  display: flex;
}

.home-promo-modal-backdrop {
  position: absolute;
  inset: 0;
}

.home-promo-modal-dialog {
  position: relative;
  max-width: min(96vw, 920px);
  max-height: min(96vh, 720px);
  border-radius: 18px;
  overflow: hidden;
  background: #020307;
  border: 1px solid rgba(157, 255, 32, 0.7);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

.home-promo-modal-dialog img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
}

.home-promo-modal-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(5, 5, 12, 0.9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.home-promo-modal-close:hover {
  background: rgba(157, 255, 32, 0.85);
  color: #020307;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(157, 255, 32, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}

.card-soft {
  background: rgba(10, 10, 18, 0.95);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.card-title {
  font-size: 1.05rem;
}

.card-text {
  color: var(--color-muted);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

/* Painel de plataformas de transação (saques e depósitos) */
.transaction-panel {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(5, 5, 12, 0.95);
  border: 1px solid rgba(157, 255, 32, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.transaction-panel-title {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.transaction-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.transaction-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(157, 255, 32, 0.16), transparent 55%),
    rgba(10, 10, 18, 0.96);
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    border-color 0.12s ease-out, background 0.12s ease-out;
}

.transaction-card-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.transaction-card-text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  text-align: left;
  text-justify: auto;
}

.transaction-card:hover {
  transform: translateY(-1px);
  border-color: rgba(157, 255, 32, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  background:
    radial-gradient(circle at top left, rgba(157, 255, 32, 0.22), transparent 55%),
    rgba(10, 10, 18, 0.98);
}

@media (max-width: 640px) {
  .transaction-panel-grid {
    grid-template-columns: 1fr;
  }
}

/* SOBRE / ABOUT */

.about-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-media {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* MODAL APLICATIVO */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 10, 0.85);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
  z-index: 50;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem 2.3rem;
  background: radial-gradient(circle at top left, rgba(157, 255, 32, 0.18), transparent 55%),
    linear-gradient(145deg, #151521, #050509 80%);
  border: 1px solid rgba(157, 255, 32, 0.45);
  box-shadow: var(--shadow-soft);
}

.modal-subtitle {
  margin: 0 0 1.8rem;
  color: var(--color-muted);
  max-width: 520px;
}

.app-name {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  /* mesma área de título em todos os cards para alinhar o texto de descrição */
  min-height: 2.2rem;
  display: flex;
  align-items: flex-end;
}

.app-knowledge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-finalize-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.app-finalize-card {
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 14, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    border-color 0.12s ease-out, background 0.12s ease-out;
}

.app-finalize-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  border-color: rgba(157, 255, 32, 0.75);
}

.app-finalize-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.app-finalize-icon i {
  color: #ffffff;
}

.app-finalize-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.app-finalize-text {
  margin-top: 0.1rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.app-finalize-whatsapp .app-finalize-icon {
  background: rgba(0, 210, 120, 0.35);
}

.app-finalize-telegram .app-finalize-icon {
  background: rgba(0, 136, 204, 0.4);
}

.app-finalize-instagram .app-finalize-icon {
  background: linear-gradient(135deg, rgba(247, 119, 55, 0.5), rgba(193, 53, 132, 0.5));
}

.app-finalize-form .app-finalize-icon {
  background: rgba(157, 255, 32, 0.45);
}

@media (max-width: 640px) {
  .app-finalize-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .app-finalize-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.app-card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 14, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  overflow: hidden;        /* evita vazamento de contorno/efeitos internos */
  position: relative;      /* base para efeitos internos respeitarem o raio */
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    border-color 0.12s ease-out;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.app-card.is-active {
  border-color: rgba(157, 255, 32, 0.9);
  box-shadow: 0 0 0 1px rgba(157, 255, 32, 0.7);
}

.app-chip {
  min-width: 36px;
  height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

/* Ajuste específico para chip longo da Suprema, quebrando em duas linhas */
.app-suprema .app-chip {
  height: auto;
  min-height: 36px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  white-space: normal;
  text-align: center;
  line-height: 1.1;
}

/* personalização de cores de cada card */

.app-pppoker .app-chip {
}

.app-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: left;          /* não justificar para evitar espaçamentos estranhos */
  text-justify: auto;
}

/* personalização de cores de cada card */

.app-pppoker .app-chip {
  background: rgba(0, 210, 120, 0.2);
  color: #00d278;
}

.app-suprema .app-chip {
  background: rgba(130, 100, 255, 0.22);
  color: #a38cff;
}

.app-kkpoker .app-chip {
  background: rgba(0, 180, 255, 0.22);
  color: #42c4ff;
}

.app-cacheta .app-chip {
  background: rgba(255, 160, 70, 0.24);
  color: #ffb458;
}

/* CONTATO / FOOTER */

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-brand img {
  max-width: 220px;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: var(--color-muted);
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer-contact h2 {
  margin-bottom: 0.8rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-muted);
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-accent);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #050509;
}

.footer-bottom {
  padding: 1.1rem 1.5rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* RESPONSIVIDADE */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: var(--spacing-section-mobile);
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero-side {
    display: none;
  }

  .modal {
    max-width: 100%;
    margin: 0 1.25rem;
    padding: 2rem 1.6rem 1.9rem;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hero-side {
    justify-content: stretch;
  }

  .hero-highlight {
    padding: 1.5rem 1.4rem;
  }

  .stats {
    gap: 1.3rem;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-cta {
    justify-content: flex-start;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-block;
}

.floating-whatsapp img {
  display: block;
  width: 64px;
  height: 64px;
}

/* Ajustes responsivos para o botão de WhatsApp em telas menores */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-nav {
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    padding: 0.7rem 1.5rem 1rem;
    background: rgba(5, 5, 9, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 40;
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
  }

  .mobile-nav a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--color-muted);
  }

  .mobile-nav.is-open {
    display: block;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .floating-whatsapp img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 360px) {
  .floating-whatsapp img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .hero-lead,
  .hero-highlight p,
  #casa p,
  #sobre p {
    /* coluna de texto mais estreita e centralizada no mobile para evitar quebras feias */
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .modal {
    max-width: 100%;
    margin: 0 1rem;
    padding: 1.7rem 1.4rem 1.6rem;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    max-height: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stats {
    flex-direction: column;
  }

  .card {
    padding: 1.4rem 1.25rem;
  }
}
