/* =========================================================
   VARIÁVEIS DE TEMA
========================================================= */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-elevated-2: #101011;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f6;
  --text-muted: #9a9a9e;
  --accent: #e31d33;
  --accent-hover: #ff2f47;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;

  /* ALTURA DO HERO */
  --hero-height: 880px;
}


/* =========================================================
   RESET BÁSICO
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

section {
  padding: 96px 24px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1;
  text-transform: uppercase;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}


/* =========================================================
   BOTÕES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-elevated-2);
}

.btn--pill {
  background: #fff;
  color: #0a0a0b;
  border-radius: 999px;
  padding: 10px 22px;
}

.btn--pill:hover {
  opacity: 0.85;
}


/* =========================================================
   NAV
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo__img {
  height: 38px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-right: auto;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}


/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  height: var(--hero-height);
  min-height: 0;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--bg);
  background-image: url("../assets/FundoPTK.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 11, 0.72) 0%,
    rgba(10, 10, 11, 0.40) 38%,
    rgba(10, 10, 11, 0.12) 70%,
    rgba(10, 10, 11, 0.08) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--bg)
  );
  pointer-events: none;
  z-index: 2;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero__overlay {
  display: none;
}

.hero__text {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100vw - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  left: 0;
  align-self: center;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(4rem, 7vw, 6.8rem);
  margin-bottom: 22px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================================================
   STATS
========================================================= */
.stats {
  max-width: var(--container);
  margin: 0 auto 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px;
}

.stats__item {
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats__item:last-child {
  border-right: none;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.stats__label {
  color: var(--text-muted);
  font-size: 0.85rem;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */
.socials {
  max-width: var(--container);
  margin: 0 auto;
}

.socials__head {
  text-align: center;
  margin-bottom: 36px;
}

.socials__head h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

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

.socials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.social-card {
  min-height: 96px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 29, 51, 0.5);
  background: var(--bg-elevated-2);
}

.social-card__icon {
  display: block;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 50px;
}

.social-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}


/* =========================================================
   SOBRE
========================================================= */
.about {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.about__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.about__bio h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.about__bio p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.signature {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.4rem;
  transform: rotate(-4deg);
}

.about__photo {
  padding: 0;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.about__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__list {
  padding: 24px;
}

.about__list h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about__list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}


/* =========================================================
   CONTEÚDO
========================================================= */
.content {
  max-width: var(--container);
  margin: 0 auto;
}

.content__head {
  text-align: center;
  margin-bottom: 48px;
}

.content__head h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

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

.content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.content__img {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated-2);
}

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

.content__body {
  padding: 22px;
}

.content__body h3 {
  font-size: 1.1rem;
  margin: 10px 0 8px;
}

.content__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* =========================================================
   CTA / PARCERIAS
========================================================= */
.cta {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
}


/* =========================================================
   FOOTER
========================================================= */
.footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a:hover {
  color: var(--text);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 960px) {

  .about { grid-template-columns: 1fr; }

  .about__side { flex-direction: row; }

  .content__grid { grid-template-columns: 1fr; }

  .hero {
    height: 680px;
    min-height: 680px;
    padding: 0;
  }

  .hero__background {
    object-position: center center;
  }

  .hero__text {
    left: 0;
    margin-left: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stats__item:nth-child(2) { border-right: none; }

  .socials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {

  /* NAV */
  .nav__inner {
    padding: 12px 16px;
    gap: 16px;
  }

  .logo__img {
    height: 34px;
  }

  .nav__links {
    display: none;
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .btn--pill {
    display: none;
  }

  /* HERO MOBILE */
  .hero {
    width: 100% !important;
    height: 560px !important;
    min-height: 560px !important;
    max-height: 560px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 18px !important;
    align-items: center !important;
    background-position: 60% center !important;
    background-size: cover !important;
  }

  .hero__background {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 63% center !important;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(10, 10, 11, 0.90) 0%,
      rgba(10, 10, 11, 0.66) 48%,
      rgba(10, 10, 11, 0.18) 100%
    ) !important;
  }

  .hero__text {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    margin: 0 !important;
    left: 0 !important;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 1.8px;
  }

  .hero__title {
    font-size: clamp(2.85rem, 12vw, 4rem);
    line-height: 0.94;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    justify-content: center;
  }

  /* STATS MOBILE */
  section {
    padding: 56px 16px;
  }

  .stats {
    width: auto;
    margin: 0 12px 24px !important;
    padding: 22px 12px !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 0 !important;
    border-radius: 16px;
  }

  .stats__item {
    min-width: 0;
  }

  .stats__item:nth-child(2),
  .stats__item:nth-child(4) {
    border-right: none;
  }

  .stats__value {
    font-size: 1.35rem;
  }

  .stats__label {
    font-size: 0.72rem;
  }

  /* SOCIAL MOBILE */
  .socials {
    padding: 56px 16px;
  }

  .socials__head {
    margin-bottom: 24px;
  }

  .socials__head h2 {
    font-size: 1.75rem;
  }

  .socials__head p {
    font-size: 0.88rem;
  }

  .socials__grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .social-card {
    min-height: 74px;
    padding: 12px 14px;
    gap: 14px;
  }

  .social-card__icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    flex: 0 0 50px !important;
  }

  .social-card__name {
    font-size: 1.1rem;
  }

  /* ABOUT MOBILE */
  .about {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about__card {
    padding: 22px;
  }

  .about__side {
    flex-direction: column;
    gap: 14px;
  }

  .about__photo img {
    min-height: 280px;
  }

  /* CONTENT MOBILE */
  .content__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .content__head {
    margin-bottom: 32px;
  }

  .content__head h2 {
    font-size: 1.8rem;
  }

  /* CTA MOBILE */
  .cta {
    padding: 30px 18px;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .cta p {
    font-size: 0.88rem;
  }

  /* FOOTER MOBILE */
  .footer {
    padding: 28px 16px 44px;
    text-align: center;
    justify-content: center;
  }
}
