@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Caveat:wght@700&display=swap");

:root {
  /* Cores da Identidade Movibe Sports */
  --pink: #e95e9b;
  --pink-hover: #d24f88;
  --blue: #5baedf;
  --blue-hover: #4c9dcb;
  --green: #42d14a;
  --green-hover: #38bc40;
  --orange: #d17a4c;
  --orange-hover: #bd6c41;
  
  /* Cores Neutras */
  --ink: #1e1e24;
  --body: #555562;
  --wash: #f8fafc;
  --line: rgba(30, 30, 36, 0.08);
  --line-strong: rgba(30, 30, 36, 0.16);
  --white: #ffffff;
  
  /* Layout e Transições */
  --container: min(1200px, calc(100vw - 40px));
  --r: 16px;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 220ms var(--ease);
  --slow: 760ms var(--ease);
  --shadow-card: 0 12px 34px rgba(30, 30, 36, 0.06);
  --shadow-pop: 0 16px 36px rgba(230, 0, 126, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

::selection {
  background: rgba(230, 0, 126, 0.15);
  color: var(--pink);
}

.mv-container {
  width: var(--container);
  margin: 0 auto;
}

/* ---- Botões (Buttons) ------------------------------------------------ */

.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast), color var(--fast);
  will-change: transform;
}

.mv-btn .mv-ic {
  width: 18px;
  height: 18px;
  fill: none;
  transition: transform var(--fast);
}

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

.mv-btn:hover .mv-ic {
  transform: scale(1.1);
}

/* Dropdown Arrow */
.mv-dropdown-ic {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  stroke: currentColor;
  transition: transform var(--fast);
}

.mv-has-dropdown:hover .mv-dropdown-ic {
  transform: translateY(2px);
}

.mv-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Botão Rosa (Primary) */
.mv-btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(230, 0, 126, 0.25);
}

.mv-btn--pink:hover {
  background: var(--pink-hover);
  box-shadow: 0 14px 28px rgba(230, 0, 126, 0.35);
}

/* Botão Contorno (Outline) */
.mv-btn--outline {
  border: 2px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.mv-btn--outline:hover {
  border-color: var(--ink);
  background: rgba(30, 30, 36, 0.04);
}

/* Botão Branco/WhatsApp (Fale Conosco) */
.mv-btn--white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 8px 20px rgba(30, 30, 36, 0.08);
}

.mv-btn--white:hover {
  background: var(--wash);
  box-shadow: 0 12px 24px rgba(30, 30, 36, 0.12);
}

/* Botão Azul (CTA Principal Secundário) */
.mv-btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 174, 239, 0.25);
}

.mv-btn--blue:hover {
  background: var(--blue-hover);
  box-shadow: 0 14px 28px rgba(0, 174, 239, 0.35);
}

/* ---- Cabeçalho (Header) --------------------------------------------- */

.mv-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 30, 36, 0.05);
  transition: padding var(--fast), background var(--fast), box-shadow var(--fast);
}

.mv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 140px;
  transition: height var(--fast);
}

/* Cabeçalho "Stuck" pós rolar a página */
.mv-header.is-stuck {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(30, 30, 36, 0.05);
}

.mv-header.is-stuck .mv-header-inner {
  height: 108px;
}

.mv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: height var(--fast);
}

.mv-header.is-stuck .mv-logo {
  height: 100px;
}

.mv-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mv-nav-links > a:not(.mv-btn) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body);
  padding: 6px 0;
  transition: color var(--fast);
}

.mv-nav-links > a:not(.mv-btn):hover,
.mv-nav-links > a.is-active:not(.mv-btn) {
  color: var(--pink);
}

.mv-nav-links > a:not(.mv-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fast);
}

.mv-nav-links > a:not(.mv-btn):hover::after,
.mv-nav-links > a.is-active:not(.mv-btn)::after {
  transform: scaleX(1);
}

.mv-nav-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hambúrguer Menu Mobile */
.mv-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 30, 36, 0.03);
  border: 1px solid rgba(30, 30, 36, 0.08);
}

.mv-nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--fast), opacity var(--fast);
}

.mv-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mv-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mv-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsivo para o Header */
@media (max-width: 980px) {
  .mv-header-inner {
    height: 72px;
  }

  .mv-logo {
    height: 56px;
  }

  .mv-header.is-stuck .mv-header-inner {
    height: 64px;
  }

  .mv-header.is-stuck .mv-logo {
    height: 48px;
  }

  .mv-nav-toggle {
    display: flex;
  }

  .mv-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--fast), opacity var(--fast);
    box-shadow: 0 10px 25px rgba(30, 30, 36, 0.05);
  }

  .mv-nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mv-nav-links > a:not(.mv-btn) {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .mv-nav-cta {
    width: 100%;
    max-width: 280px;
  }
}
