@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Contrail+One&family=Gluten:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Irish+Grover&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'KyivType';
  src: url('../font/KyivTypeTitling-VarGX.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

html,
body {
  width: 100%;
  scroll-behavior: smooth;
  color: #f7e3ff;
}

body {
  background-color: #f0e7f2;
}

section {
  padding: 0;
}

a {
  color: black;
  text-decoration: none;
  font-weight: 800;
}

/* ── Header / navegação ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  color: #cfc0c0;
  font-family: 'Gluten', cursive;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background-color: #370234;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.header-logo {
  color: #cfc0c0;
  font-size: 1rem;
  font-weight: 700;
}

.header-quote {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #cfc0c0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #370234;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.45);
}

.header-nav.open {
  right: 0;
}

.header-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header-nav a {
  color: #cfc0c0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Hero ── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: block;
  overflow: hidden;
  background-color: #140112;
  background-image: url(../img/img-inicio.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero__panels {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  background: #0d0d0d;
}

@media (min-width: 769px) {
  .hero {
    background-image: url(../img/img-inicio.webp);
    background-position: center center;
    background-size: cover;
  }

  .hero__panels {
    display: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 1, 18, 0.55) 0%,
    rgba(20, 1, 18, 0.2) 45%,
    rgba(20, 1, 18, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 12vh 7vw 6vh;
  padding-top: calc(11vh + 52px);
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.25rem);
  margin: 3em 0 1.75rem;
  text-align: left;
  font-family: 'KyivType', 'Playfair Display', Georgia, serif;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.1;
}

.hero p {
  margin: 1.5em 0 2.25rem 30px;
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  max-width: 42rem;
  line-height: 1.45;
  font-family: 'Gluten', cursive;
  color: #ffffff;
}

.hero a {
  display: inline-block;
  background-color: #e8e0e8;
  color: #1a0a18;
  border-radius: 999px;
  border: none;
  margin-top: 3em;
  margin-left: 48px;
  padding: 30px 60px;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-family: 'Gluten', cursive;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero a:hover {
  transform: translateY(-3px);
  background-color: #f3defd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ── Faixa infinita ── */

.faixainfinita {
  background-color: #1a0518;
  color: #ffffff;
  padding-block: 52px;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.faixainfinita .texto-faixa p {
  display: inline-block;
  flex-shrink: 0;
  font-weight: 800;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  margin-right: 64px;
  letter-spacing: 0.18em;
  font-family: "Irish Grover", system-ui;
  white-space: nowrap;
  color: #ffffff;
}

.faixainfinita .faixa {
  display: flex;
  width: max-content;
  will-change: transform;
}

.faixainfinita .faixa.is-animated {
  animation: faixa-marquee 22s linear infinite;
}

.faixainfinita .texto-faixa {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

@keyframes faixa-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── Protocolo ── */

.protocolo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  background: linear-gradient(180deg, #2f032c 0%, #140112 38%, #0a0a0a 100%);
  padding: 5.5em 10%;
  position: relative;
  color: #ffffff;
  overflow: visible;
  z-index: 2;
  align-items: center;
}

.protocolo .ladoesq {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  padding-left: 2%;
}

.protocolo .ladoesq h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.35em;
  font-family: "Irish Grover", system-ui;
  color: #ffffff;
  line-height: 1.15;
}

.protocolo .ladoesq p {
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  text-align: left;
  max-width: 400px;
  margin-bottom: 28px;
  margin-left: 12px;
  font-family: 'Gluten', cursive;
  color: #ffffff;
  line-height: 1.45;
}

.protocolo .ladoesq p:nth-child(3) {
  margin-bottom: 28px;
}

.protocolo .ladoesq p:nth-child(4) {
  margin-bottom: 36px;
}

.protocolo .ladoesq a {
  display: inline-block;
  background: #ffffff;
  border-radius: 999px;
  padding: 16px 32px;
  border: none;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  margin-left: 48px;
  margin-top: 8px;
  font-weight: 700;
  text-align: center;
  font-family: 'Gluten', cursive;
  color: #2f032c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.protocolo .ladoesq a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.protocolo .ladodire {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
}

.protocolo .ladodire video,
#video1 {
  position: absolute;
  z-index: 20;
  right: 10px;
  top: 0;
  left: auto;
  width: 100%;
  max-width: 400px;
  display: block;
  border-radius: 28px;
  box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #2f032c;
}

/* ── Especialidades ── */

.especialidades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: black;
  background: #f0e7f2;
  padding: 5em 4em;
  align-items: center;
  position: relative;
  z-index: 1;
}

.especialidades .ladoesq img {
  width: 85%;
  margin: auto;
  border-radius: 20px;
  box-shadow: 8px 10px 8px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.especialidades .ladodire {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.especialidades .ladodire p {
  font-size: 32px;
  text-align: left;
  font-family: "Irish Grover", system-ui;
}

.especialidades .itens {
  display: inline;
}

.especialidades .topico {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.especialidades .topico .num {
  margin-right: 20px;
  background-color: #d9d9d9;
  border-radius: 100%;
  padding: 20px 30px;
  border: 3px solid #370234;
  font-family: "Irish Grover", system-ui;
  min-width: 60px;
  text-align: center;
}

/* ── Carrossel ── */

.carrossel {
  padding: 0;
  overflow: hidden;
  background-color: #40063c;
  color: #cfc0c0;
}

.carrossel h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  padding: 2.5em 1rem 2em;
  font-family: "Irish Grover", system-ui;
  color: #cfc0c0;
  letter-spacing: 0.04em;
}

.carrossel .slides {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem 3.5em;
  max-width: 1100px;
  margin: 0 auto;
}

.carrossel .slides-viewport {
  flex: 1;
  overflow: hidden;
  min-height: 280px;
}

.carrossel .slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carrossel .img-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0.25rem;
}

.carrossel .img-slide img {
  position: static;
  flex: 1;
  max-width: 240px;
  width: auto;
  height: 280px;
  min-width: 0;
  border-radius: 16px;
  object-fit: cover;
  opacity: 1;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.carrossel .img-slide img:hover {
  transform: scale(1.02);
}

.carrossel .prev,
.carrossel .next {
  position: relative;
  top: auto;
  transform: none;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carrossel .prev:hover,
.carrossel .next:hover {
  background: #d400ff;
  transform: scale(1.05);
}

/* ── Quem ── */

.quem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8em 10%;
  color: black;
  background: #f0e7f2;
  align-items: center;
}

.quem h2 {
  font-size: clamp(1.5rem, 3.5vw, 36px);
  margin-bottom: 1.25em;
  font-family: "Irish Grover", system-ui;
}

.quem-texto {
  max-width: 420px;
  padding-left: 10%;
}

.quem p {
  font-size: clamp(1rem, 2.2vw, 24px);
  text-align: left;
  max-width: 400px;
  margin-bottom: 1.25rem;
  margin-left: 15px;
  font-family: 'Gluten', cursive;
}

.quem .img-quem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quem .img-quem img {
  width: 90%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 8px 10px 8px rgba(0, 0, 0, 0.644);
}

/* ── Faixas roxas ── */

.faixas-roxas {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0;
}

.faixas-roxas img {
  width: 100%;
  display: block;
}

/* ── Treinos ── */

.treinos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: black;
  padding: 8em 10%;
  background: #f0e7f2;
  align-items: center;
}

.treinos .textos h2 {
  font-size: clamp(2rem, 4vw, 44px);
  margin-bottom: 0.25em;
  font-family: "Irish Grover", system-ui;
  text-align: left;
  line-height: 1.1;
}

.treinos h3 {
  font-size: clamp(1.5rem, 3.5vw, 40px);
  font-family: 'Gluten', cursive;
  line-height: 1.2;
}

.treinos .tipos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.treinos .card {
  text-align: center;
  flex: 1;
}

.treinos .tipos img {
  width: 90%;
  margin: 0 auto 15px;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 6px 8px 12px rgba(0, 0, 0, 0.3);
}

.treinos .tipos p {
  font-size: 25px;
  font-family: 'Gluten', cursive;
  text-align: left;
  margin-left: 25px;
}

/* ── Redes / CTA ── */

.redes {
  display: block;
  padding: 8em 12%;
  background: linear-gradient(180deg, #4a0848 0%, #2f032c 38%, #140112 72%, #050505 100%);
  color: #ffffff;
  min-height: 520px;
}

.redes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.redes-quote p {
  font-family: 'Gluten', cursive;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  font-weight: 600;
  max-width: 480px;
  color: #ffffff;
}

.redessociais {
  padding-left: 8%;
}

.redessociais h3 {
  font-family: 'Gluten', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.sociais {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.sociais img {
  width: 32px;
  height: 32px;
  filter: none;
  flex-shrink: 0;
}

.sociais a {
  color: #ffffff;
  font-family: 'Gluten', cursive;
  font-size: 1.25rem;
  font-weight: 600;
}

.sociais--whatsapp {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

/* ── Footer ── */

.site-footer {
  background: #0a0a0a;
  color: #cfc0c0;
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
  min-height: 520px;
  align-items: stretch;
}

.footer-brand {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
  min-height: 520px;
  background: #000000;
}

.footer-brand__center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.footer-brand h2 {
  font-family: 'KyivType', 'Playfair Display', Georgia, serif;
  display: block;
  font-size: clamp(2.75rem, 7vw, 5rem);
  letter-spacing: 0.38em;
  line-height: 1.15;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
  font-weight: 200;
}

.footer-brand h2 span {
  display: block;
}

.footer-nav {
  margin-top: 0;
  padding: 1.25rem 1.5rem 1.75rem;
}

.footer-brand ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0;
  align-items: flex-start;
}

.footer-brand a {
  color: #ffffff;
  font-family: 'Gluten', cursive;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-brand a:hover {
  color: #cfc0c0;
}

.footer-copy {
  display: none;
}

.footer-img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  background: #000000;
  padding: 0;
}

.footer-img img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: none;
  object-fit: cover;
  object-position: right bottom;
  border-radius: 0;
}

/* ── WhatsApp flutuante ── */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease;
  animation: pulse-wa 2.2s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75);
  }
}

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .carrossel .img-slide {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .hero {
    background-attachment: scroll;
  }
}
