/* =========================
   RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #020617, #0b0f1a, #020617);
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* =========================
   HEADER / NAV
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 999;

  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

header h1 {
  color: #38bdf8;
}

nav a {
  position: relative;
  margin-left: 22px;
  color: #94a3b8;
  font-weight: 600;
  transition: 0.25s;
}

nav a:hover {
  color: #38bdf8;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #38bdf8;
  transition: 0.25s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #38bdf8;
}

/* =========================
   SECTIONS / HERO
========================= */

section {
  padding: 60px 20px;
}

.hero {
  padding: 120px 20px;
  text-align: center;

  background:
    linear-gradient(rgba(2,6,23,0.85), rgba(2,6,23,0.95)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e");

  background-size: cover;
  background-position: center;
}

.hero h2 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 1px;
}

.hero p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* =========================
   HOME HERO
========================= */

.hero-home {
  min-height: 680px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 120px 60px;

  background:
    linear-gradient(
      90deg,
      rgba(2,6,23,0.97) 0%,
      rgba(2,6,23,0.88) 35%,
      rgba(2,6,23,0.45) 60%,
      rgba(2,6,23,0.18) 100%
    ),
    url("../assets/images/sbw-home-hero.png.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  overflow: hidden;
  position: relative;
}

.hero-content {
  max-width: 620px;
  text-align: left;
}

.hero-content h2 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 30px;
  text-align: left;
}

.hero-tag {
  display: inline-block;
  color: #38bdf8;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: none;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;

  padding: 12px 24px;

  background: linear-gradient(135deg, #38bdf8, #0ea5e9);

  color: #020617;

  border-radius: 8px;

  font-weight: bold;

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

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(56,189,248,0.25);
}

.btn-secondary {
  background: transparent;
  color: #38bdf8;
  border: 1px solid rgba(56,189,248,0.45);
}

section a.btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.hero-buttons a.btn,
.dashboard-actions a.btn {
  margin: 0;
}

/* =========================
   CARDS
========================= */

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(17, 24, 39, 0.8);

  padding: 20px;

  border-radius: 12px;

  flex: 1;
  min-width: 250px;

  border: 1px solid rgba(255,255,255,0.05);

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

.card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 0 18px rgba(56,189,248,0.14);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.cards a {
  color: inherit;
}

.cards a .card {
  height: 100%;
}

/* =========================
   CREATOR / PROFILE CARDS
========================= */

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 24px;

  margin-top: 30px;

  align-items: stretch;
}

.creator-link,
.featured-creator-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.creator-card {
  height: 100%;
  min-height: 140px;

  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,0.95),
      rgba(2,6,23,0.98)
    );

  border: 1px solid rgba(56,189,248,0.15);
  border-radius: 20px;

  padding: 22px;

  text-align: center;

  transition: 0.3s ease;

  overflow: hidden;

  position: relative;
}

.creator-card:hover,
.featured-creator:hover {
  transform: translateY(-8px) scale(1.02);

  border-color: #38bdf8;

  box-shadow: 0 0 25px rgba(56,189,248,0.22);
}

.creator-avatar,
.hero img.creator-avatar {
  display: block;

  width: 160px !important;
  height: 160px !important;

  max-width: 160px !important;
  max-height: 160px !important;

  border-radius: 50%;

  border: 4px solid #38bdf8;

  object-fit: cover;

  margin: 0 auto 25px auto;

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.creator-mini-avatar {
  width: 120px;
  height: 120px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid #38bdf8;

  margin: 0 auto 20px;

  box-shadow: 0 0 20px rgba(56,189,248,0.28);
}

.creator-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: white;
}

.creator-card p {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;

  margin-top: 16px;
  margin-bottom: 20px;
}

.creator-tags span {
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(56,189,248,0.10);

  border: 1px solid rgba(56,189,248,0.22);

  color: #38bdf8;

  font-size: 14px;
  font-weight: 600;
}

.creator-socials,
.creator-socials-profile {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.creator-socials a {
  width: 42px;
  height: 42px;

  border-radius: 50%;

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

  background: rgba(56,189,248,0.10);

  border: 1px solid rgba(56,189,248,0.22);

  color: #38bdf8;

  font-size: 18px;

  transition: 0.25s;
}

.creator-socials a:hover {
  transform: translateY(-4px) scale(1.08);

  background: rgba(56,189,248,0.22);

  border-color: #38bdf8;

  box-shadow: 0 0 18px rgba(56,189,248,0.28);

  color: white;
}

.creator-socials-profile a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 14px;

  background: rgba(56,189,248,0.10);

  border: 1px solid rgba(56,189,248,0.20);

  color: #38bdf8;

  font-weight: 600;

  transition: 0.25s;
}

.creator-socials-profile a:hover {
  transform: translateY(-4px);

  background: rgba(56,189,248,0.20);

  border-color: #38bdf8;

  box-shadow: 0 0 20px rgba(56,189,248,0.25);

  color: white;
}

.profile-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(56,189,248,0.12);

  border: 1px solid rgba(56,189,248,0.35);

  color: #38bdf8;

  font-weight: 700;
  font-size: 14px;

  transition: 0.25s;
}

.profile-btn:hover {
  background: #38bdf8;
  color: #020617;

  box-shadow: 0 0 18px rgba(56,189,248,0.32);
}

/* =========================
   GAME / DIVISION CARDS
========================= */

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;
}

.game-card {
  position: relative;

  min-height: 260px;

  border-radius: 18px;

  overflow: hidden;

  border: 1px solid rgba(56,189,248,0.18);

  display: flex;
  align-items: flex-end;

  color: white;

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

.game-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(2,6,23,0.02),
      rgba(2,6,23,0.72)
    );

  z-index: 1;
}

.game-card-content {
  position: relative;
  z-index: 2;

  padding: 24px;
}

.game-card-content span {
  color: #38bdf8;

  font-size: 13px;
  font-weight: bold;

  letter-spacing: 2px;
}

.game-card-content h3 {
  font-size: 30px;

  margin: 8px 0;

  text-shadow: 0 0 18px rgba(56,189,248,0.28);
}

.game-card-content p {
  color: #e2e8f0;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);

  border-color: #38bdf8;

  box-shadow: 0 0 20px rgba(56,189,248,0.25);

  filter: brightness(1.15);
}

.game-fighting {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.40)),
    url("../assets/images/sbw-alpha-kickboxing.png.png");
  background-size: cover;
  background-position: center;
}

.game-fps {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.40)),
    url("../assets/images/sbw-fps-tactical.png.png");
  background-size: cover;
  background-position: center;
}

.game-moba {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.40)),
    url("../assets/images/sbw-moba-arcane.png.png");
  background-size: cover;
  background-position: center;
}

.game-sports {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.40)),
    url("../assets/images/sbw-basketball.png.png");
  background-size: cover;
  background-position: center;
}

.game-tournaments {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.40)),
    url("../assets/images/sbw-home-hero.png.png");
  background-size: cover;
  background-position: center;
}

/* =========================
   VIDEO / MEDIA
========================= */

.video-card {
  max-width: 900px;

  margin: 0 auto;

  padding: 14px;

  border-radius: 18px;

  min-height: auto;
}

.video-card iframe {
  width: 100%;
  height: 360px;

  border-radius: 14px;

  border: none;

  display: block;
}

.youtube-card {
  max-width: 900px;
}

.youtube-card iframe {
  height: 360px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 40px;

  margin-top: 40px;
}

.media-channel-card {
  background: rgba(15, 23, 42, 0.95);

  border-radius: 24px;

  padding: 22px;

  border: 1px solid rgba(56,189,248,0.18);

  box-shadow: 0 0 30px rgba(56,189,248,0.08);

  transition: 0.3s ease;
}

.media-channel-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 0 50px rgba(56,189,248,0.18);
}

.media-channel-card h3 {
  font-size: 1.5rem;

  margin-bottom: 18px;

  color: white;
}

.media-channel-card iframe {
  width: 100%;

  aspect-ratio: 16 / 9;

  border: none;

  border-radius: 18px;

  display: block;
}

/* =========================
   LIVE LAYOUTS
========================= */

.twitch-live-layout,
.youtube-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;

  gap: 18px;

  max-width: 1900px;

  margin: 30px auto 0;
}

.twitch-player,
.twitch-chat,
.youtube-player,
.youtube-chat {
  background: rgba(15, 23, 42, 0.95);

  border: 1px solid rgba(56,189,248,0.20);

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 0 30px rgba(56,189,248,0.10);

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

.twitch-player iframe,
.twitch-chat iframe,
.youtube-player iframe,
.youtube-chat iframe {
  width: 100%;
  height: 780px;

  border: none;

  display: block;

  pointer-events: auto;
}

.twitch-chat,
.youtube-chat {
  max-width: 340px;
}

/* =========================
   HOME FEATURE
========================= */

.home-feature-section {
  padding: 80px 20px;

  display: flex;
  justify-content: center;
}

.home-feature-card {
  width: 100%;
  max-width: 760px;

  text-align: center;

  background: rgba(15, 23, 42, 0.82);

  border: 1px solid rgba(56,189,248,0.25);

  border-radius: 24px;

  padding: 42px 34px;

  box-shadow: 0 0 35px rgba(56,189,248,0.12);
}

.home-feature-card h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.home-feature-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   PLAYER GRID
========================= */

.player-grid {
  display: flex;
  justify-content: center;

  margin-top: 30px;
}

.player-grid .creator-card {
  max-width: 320px;
  min-height: auto;

  padding: 22px;
}

.player-grid .creator-mini-avatar {
  width: 90px;
  height: 90px;
}

.player-grid h3 {
  font-size: 1.4rem;
}

.player-grid p {
  font-size: 0.92rem;
}

/* =========================
   FIGHTING GIRLS THEME
========================= */

.fg-theme {
  background:
    radial-gradient(circle at top right, rgba(236,72,153,0.18), transparent 35%),
    radial-gradient(circle at top left, rgba(147,51,234,0.16), transparent 35%),
    linear-gradient(135deg, #020617, #0b0f1a, #020617);
}

.fg-theme header h1 {
  color: #ff4fd8;
}

.fg-theme .hero {
  background:
    linear-gradient(rgba(2,6,23,0.82), rgba(88,28,135,0.55)),
    url("../assets/images/fighting-girls-logo.jpeg.jpeg");

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.fg-theme .creator-avatar {
  border-color: #ff4fd8;

  box-shadow: 0 0 28px rgba(236,72,153,0.65);
}

.fg-theme .btn {
  background:
    linear-gradient(135deg, #ff4fd8, #9333ea);

  color: white;
}

.fg-theme .btn:hover {
  box-shadow: 0 0 24px rgba(236,72,153,0.45);
}

.fg-theme .creator-card {
  border-color: rgba(236,72,153,0.28);

  box-shadow: 0 0 28px rgba(236,72,153,0.10);
}

.fg-theme .creator-card:hover {
  border-color: #ff4fd8;

  box-shadow: 0 0 35px rgba(236,72,153,0.30);
}

.fg-theme .creator-card h3 i {
  color: #ff4fd8;
}

.fg-theme nav a:hover,
.fg-theme .footer-links a:hover {
  color: #ff4fd8;
}

.fg-theme nav a::after {
  background: #ff4fd8;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #020617;

  border-top: 1px solid rgba(255,255,255,0.06);

  padding: 40px 20px;

  color: #94a3b8;

  text-align: center;
}

.footer-content h2 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-content p {
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  margin-bottom: 18px;
}

.footer-links a {
  color: #94a3b8;

  font-weight: 500;

  transition: 0.25s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-copy {
  font-size: 14px;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .twitch-live-layout,
  .youtube-live-layout {
    grid-template-columns: 1fr;
  }

  .twitch-player iframe,
  .twitch-chat iframe,
  .youtube-player iframe,
  .youtube-chat iframe {
    height: 420px;
  }

  .twitch-chat,
  .youtube-chat {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 18px 20px;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;

    position: absolute;

    top: 72px;
    right: 20px;
    left: 20px;

    background: rgba(2,6,23,0.98);

    border: 1px solid rgba(56,189,248,0.25);

    border-radius: 14px;

    padding: 18px;

    flex-direction: column;
    gap: 16px;

    backdrop-filter: blur(12px);

    box-shadow: 0 0 25px rgba(0,0,0,0.35);
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin-left: 0;
    font-size: 15px;
  }

  section {
    padding: 50px 20px;
  }

  .hero {
    padding: 90px 20px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .cards {
    flex-direction: column;
  }

  .hero-home {
    min-height: 620px;

    padding: 100px 24px;

    background:
      linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.98)),
      url("../assets/images/sbw-home-hero.png.png");

    background-size: cover;
    background-position: center;
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: fit-content;
  }
}

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

/* =========================
   PADRONIZAÇÃO DE CARDS
========================= */

.creator-grid {
  align-items: stretch;
}

.creator-grid .featured-creator-link {
  height: 100%;
}

.creator-grid .creator-card {
  height: 100%;
  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cards {
  align-items: stretch;
}

.cards .card {
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Cards menores de redes sociais */
.creator-grid .featured-creator {
  min-height: 240px;
}

/* =========================
   HOME CLEAN / IDENTIDADE SBW
========================= */

.home-main {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.08), transparent 34rem),
    radial-gradient(circle at top right, rgba(14,165,233,0.06), transparent 30rem),
    linear-gradient(135deg, #020617, #0b0f1a, #020617);
}

.home-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.home-section + .home-section {
  padding-top: 32px;
}

/* HERO */

.home-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 70px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.home-hero-content {
  max-width: 680px;
}

.home-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  width: fit-content;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.24);

  color: #38bdf8;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-hero h2 {
  margin-top: 22px;
  margin-bottom: 18px;

  color: #ffffff;

  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.home-hero-subtitle {
  max-width: 620px;

  color: #cbd5e1;

  font-size: 1.08rem;
  line-height: 1.8;

  margin-bottom: 30px;
}

.home-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero-buttons .btn {
  margin: 0;
}

.home-identity-card {
  position: relative;
  overflow: hidden;

  min-height: 430px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 34px;

  border-radius: 32px;

  background:
    radial-gradient(circle at top, rgba(56,189,248,0.20), transparent 22rem),
    linear-gradient(180deg, rgba(15,23,42,0.96), rgba(2,6,23,0.98));

  border: 1px solid rgba(56,189,248,0.20);

  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.home-identity-card::before {
  content: "";
  position: absolute;
  inset: 22px;

  border-radius: 26px;

  border: 1px solid rgba(56,189,248,0.10);

  pointer-events: none;
}

.identity-emblem {
  position: absolute;
  top: 38px;
  right: 38px;

  display: grid;
  place-items: center;

  width: 108px;
  height: 108px;

  border-radius: 30px;

  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.22);

  color: #38bdf8;
  font-size: 3rem;

  box-shadow: 0 0 34px rgba(56,189,248,0.14);
}

.home-identity-card > span {
  color: #38bdf8;

  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.home-identity-card h3 {
  max-width: 420px;

  margin: 14px 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.home-identity-card p {
  max-width: 430px;

  color: #cbd5e1;

  line-height: 1.75;
}

/* SECTIONS */

.home-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-section-heading h2 {
  margin-top: 12px;
  margin-bottom: 12px;

  color: #ffffff;

  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.home-section-heading p {
  color: #94a3b8;
  line-height: 1.75;
}

/* PILARES */

.home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
}

.home-pillar-card {
  min-height: 260px;

  padding: 28px;

  border-radius: 26px;

  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.08), transparent 18rem),
    rgba(15,23,42,0.86);

  border: 1px solid rgba(56,189,248,0.15);

  transition: 0.25s ease;
}

.home-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.home-pillar-card i {
  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  margin-bottom: 22px;

  border-radius: 16px;

  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.20);

  color: #38bdf8;
  font-size: 1.35rem;
}

.home-pillar-card h3 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 1.35rem;
}

.home-pillar-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ACESSOS */

.home-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.home-access-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;

  padding: 24px;

  border-radius: 24px;

  background: rgba(15,23,42,0.82);
  border: 1px solid rgba(56,189,248,0.14);

  transition: 0.25s ease;
}

.home-access-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.38);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.access-icon {
  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  border-radius: 16px;

  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.20);

  color: #38bdf8;
  font-size: 1.2rem;
}

.home-access-card h3 {
  color: #ffffff;
  margin-bottom: 6px;
}

.home-access-card p {
  color: #94a3b8;
  line-height: 1.55;
}

.home-access-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #38bdf8;

  font-size: 0.9rem;
  font-weight: 900;
}

/* STATEMENT */

.home-statement-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;

  padding: 38px;

  border-radius: 30px;

  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 24rem),
    linear-gradient(135deg, rgba(15,23,42,0.94), rgba(2,6,23,0.96));

  border: 1px solid rgba(56,189,248,0.18);
}

.home-statement-card h2 {
  max-width: 680px;

  margin-top: 14px;
  margin-bottom: 14px;

  color: #ffffff;

  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.home-statement-card p {
  max-width: 760px;

  color: #cbd5e1;

  line-height: 1.8;
}

.statement-mark {
  display: grid;
  place-items: center;

  width: 210px;
  height: 210px;

  border-radius: 32px;

  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.20);
}

.statement-mark strong {
  color: #38bdf8;

  font-size: 3rem;
  letter-spacing: -0.05em;
}

.statement-mark span {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* CTA FINAL */

.home-final-cta {
  text-align: center;

  padding: 46px 28px;

  border-radius: 32px;

  background:
    radial-gradient(circle at center top, rgba(56,189,248,0.16), transparent 24rem),
    linear-gradient(180deg, rgba(15,23,42,0.96), rgba(2,6,23,0.98));

  border: 1px solid rgba(56,189,248,0.24);

  box-shadow: 0 0 34px rgba(56,189,248,0.08);
}

.home-final-cta h2 {
  max-width: 760px;

  margin: 16px auto 12px;

  color: #ffffff;

  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.home-final-cta p {
  max-width: 680px;

  margin: 0 auto 26px;

  color: #cbd5e1;
  line-height: 1.75;
}

.home-final-cta .home-hero-buttons {
  justify-content: center;
}

/* RESPONSIVO HOME */

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .home-identity-card {
    min-height: 360px;
  }

  .home-pillars-grid,
  .home-access-grid {
    grid-template-columns: 1fr;
  }

  .home-statement-card {
    grid-template-columns: 1fr;
  }

  .statement-mark {
    width: 100%;
    height: 170px;
  }
}

@media (max-width: 768px) {
  .home-section {
    width: min(100% - 32px, 1160px);
    padding: 48px 0;
  }

  .home-hero {
    width: min(100% - 32px, 1160px);
    padding: 58px 0 48px;
  }

  .home-hero h2 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .home-hero-buttons {
    flex-direction: column;
  }

  .home-hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .home-identity-card {
    min-height: auto;
    padding: 28px;
  }

  .identity-emblem {
    position: static;
    margin-bottom: 70px;
  }

  .home-access-card {
    grid-template-columns: 1fr;
  }

  .home-access-card > span {
    margin-top: 4px;
  }

  .home-statement-card,
  .home-final-cta {
    padding: 28px;
    border-radius: 24px;
  }
}