@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-Regular.ttf');
  font-weight: 400
}

@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-Medium.ttf');
  font-weight: 500
}

@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-SemiBold.ttf');
  font-weight: 600
}

@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree-Bold.ttf');
  font-weight: 700
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}

img {
  max-width: 100%;
  height: auto
}

:root {
  --bg: hsl(228, 30%, 8%);
  --fg: hsl(220, 20%, 96%);
  --card: hsl(229, 28%, 12%);
  --primary: hsl(217, 77%, 55%);
  --secondary: hsl(228, 25%, 15%);
  --muted: hsl(220, 15%, 55%);
  --border: hsl(228, 20%, 18%);
  --accent: hsl(180, 80%, 42%);
  --radius: 1rem;
  --clr-p: #3578E5;
  --clr-s: #14b8a6;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden
}

/* ── PROFILE SELECTOR ── */
#profile-selector {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.sel-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem
}

.sel-logo img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.sel-logo span {
  font-weight: 700;
  font-size: 1.6rem
}

.sel-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .4rem;
  text-align: center
}

.sel-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center
}

.profile-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center
}

.profile-card {
  width: 260px;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
}

.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 200, .45)
}

.profile-card:hover::before {
  opacity: 1
}

.profile-card.pc-personal::before {
  background: linear-gradient(135deg, rgba(99, 102, 200, .1), transparent)
}

.profile-card.pc-student::before {
  background: linear-gradient(135deg, rgba(20, 184, 166, .1), transparent)
}

.profile-card:hover.pc-personal {
  box-shadow: 0 20px 50px rgba(99, 102, 200, .2)
}

.profile-card:hover.pc-student {
  box-shadow: 0 20px 50px rgba(20, 184, 166, .2)
}

.pc-emoji {
  font-size: 3.2rem;
  line-height: 1
}

.pc-img {
  width: 88px;
  height: 88px;
  max-width: 88px;
  max-height: 88px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .3s ease;
  flex-shrink: 0
}

.profile-card:hover .pc-img {
  transform: scale(1.06)
}

.pc-name {
  font-size: 1.25rem;
  font-weight: 700
}

.pc-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6
}

.pc-btn {
  margin-top: .5rem;
  padding: .6rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  transition: all .25s;
}

.pc-personal .pc-btn {
  background: var(--clr-p);
  color: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
}

.pc-student .pc-btn {
  background: var(--clr-s);
  color: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
}

.sel-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.sel-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 200, .1);
  top: -100px;
  left: -100px
}

.sel-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, .07);
  bottom: -80px;
  right: -80px
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 12, 24, .8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

/* selector page hides nav */
body.selector-only nav {
  display: none
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 9px
}

.nav-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg)
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--fg)
}

.nav-right {
  display: flex;
  gap: .75rem;
  align-items: center
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nav-badge.personal {
  background: rgba(99, 102, 200, .15);
  border: 1px solid rgba(99, 102, 200, .3);
  color: hsl(239, 70%, 75%)
}

.nav-badge.student {
  background: rgba(20, 184, 166, .12);
  border: 1px solid rgba(20, 184, 166, .28);
  color: hsl(180, 60%, 60%)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: 'Figtree', sans-serif
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border)
}

.btn-ghost:hover {
  background: var(--secondary)
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.btn-teal,
.btn-secondary {
  background: var(--clr-s);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.btn-teal:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.btn-lg {
  padding: .8rem 1.9rem;
  font-size: .98rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s
}

.hamburger:hover {
  background: var(--secondary)
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all .3s
}

/* ── VIEWS (legacy — mantido para compatibilidade) ── */
.view {
  display: none
}

.view.active {
  display: block
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, var(--hero-glow, rgba(99, 102, 200, .18)) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(20, 184, 166, .08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-personal {
  background: rgba(99, 102, 200, .12);
  border: 1px solid rgba(99, 102, 200, .28);
  color: hsl(239, 70%, 78%)
}

.badge-student {
  background: rgba(20, 184, 166, .1);
  border: 1px solid rgba(20, 184, 166, .25);
  color: hsl(180, 60%, 62%)
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 2s infinite
}

.badge-personal .badge-dot {
  background: var(--primary)
}

.badge-student .badge-dot {
  background: var(--clr-s)
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.4rem
}

.grad-personal {
  background: linear-gradient(135deg, var(--primary), hsl(259, 60%, 68%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.grad-student {
  background: linear-gradient(135deg, var(--clr-s), hsl(199, 80%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: clamp(.98rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  font-weight: 400
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 700
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: .2rem
}

/* ── SECTION COMMON ── */
section {
  padding: 5.5rem 2rem
}

.container {
  max-width: 1100px;
  margin: 0 auto
}

.section-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .65rem
}

.label-personal {
  color: var(--primary)
}

.label-student {
  color: var(--clr-s)
}

.section-title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .9rem
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 1.2rem
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.feature-card.fc-personal::before {
  background: linear-gradient(135deg, rgba(99, 102, 200, .07), transparent)
}

.feature-card.fc-personal:hover {
  border-color: rgba(99, 102, 200, .3)
}

.feature-card.fc-personal:hover::before {
  opacity: 1
}

.feature-card.fc-student::before {
  background: linear-gradient(135deg, rgba(20, 184, 166, .07), transparent)
}

.feature-card.fc-student:hover {
  border-color: rgba(20, 184, 166, .25)
}

.feature-card.fc-student:hover::before {
  opacity: 1
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .9rem
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .45rem
}

.feature-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6
}

/* ── TABS ── */
.tabs {
  display: flex;
  gap: .85rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap
}

.tab {
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  font-family: 'Figtree', sans-serif
}

.tab:hover:not(.active) {
  color: var(--fg);
  border-color: rgba(99, 102, 200, .3)
}

.tab.active-personal {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(99, 102, 200, .2)
}

.tab.active-student {
  background: var(--clr-s);
  color: #fff;
  border-color: var(--clr-s);
  box-shadow: 0 4px 12px rgba(20, 184, 166, .18)
}

/* ── STUDENT PREVIEW (inside personal view) ── */
.preview-section {
  background: var(--secondary);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  margin-top: 1.5rem
}

.preview-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-s);
  margin-bottom: .5rem
}

.preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.preview-sub {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 2rem;
  max-width: 500px
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem
}

.preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: 1.25rem;
  transition: all .25s
}

.preview-card:hover {
  border-color: rgba(20, 184, 166, .25);
  transform: translateY(-3px)
}

.preview-card .pi {
  font-size: 1.3rem;
  margin-bottom: .6rem
}

.preview-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.preview-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.55
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.75rem;
  margin-top: 2.75rem
}

.step {
  text-align: center;
  padding: 1.75rem 1.25rem
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25)
}

.step-num.sn-personal {
  background: linear-gradient(135deg, hsl(239, 55%, 55%), hsl(259, 55%, 60%))
}

.step-num.sn-student {
  background: linear-gradient(135deg, hsl(180, 65%, 40%), hsl(199, 65%, 48%))
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .45rem
}

.step p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.75rem
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

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

@media(max-width:1100px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .pricing-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:580px) {

  .pricing-grid-4,
  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr
  }
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column
}

.price-card:hover {
  transform: translateY(-3px)
}

.price-card.featured-personal {
  background: linear-gradient(135deg, rgba(99, 102, 200, .12), rgba(99, 102, 200, .04));
  border-color: rgba(99, 102, 200, .35);
  box-shadow: 0 0 35px rgba(99, 102, 200, .1)
}

.price-card.featured-student {
  background: linear-gradient(135deg, rgba(20, 184, 166, .1), rgba(20, 184, 166, .03));
  border-color: rgba(20, 184, 166, .32);
  box-shadow: 0 0 35px rgba(20, 184, 166, .08)
}

.popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  padding: .22rem .85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap
}

.pb-personal {
  background: var(--primary);
  box-shadow: 0 4px 10px rgba(99, 102, 200, .2)
}

.pb-student {
  background: var(--clr-s);
  box-shadow: 0 4px 10px rgba(20, 184, 166, .2)
}

/* plan tier badge */
.plan-tier {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  letter-spacing: .04em
}

.tier-silver {
  background: rgba(194, 201, 208, .15);
  color: rgb(194, 201, 208);
  border: 1px solid rgba(194, 201, 208, .25)
}

.tier-gold {
  background: rgba(212, 175, 55, .15);
  color: rgb(212, 175, 55);
  border: 1px solid rgba(212, 175, 55, .25)
}

.tier-diamond {
  background: rgba(125, 92, 170, .18);
  color: rgb(185, 168, 210);
  border: 1px solid rgba(125, 92, 170, .3)
}

.tier-black {
  background: rgba(80, 80, 90, .2);
  color: rgb(120, 125, 135);
  border: 1px solid rgba(80, 80, 90, .35)
}

.tier-easy-pro {
  background: rgba(99, 102, 241, .18);
  color: rgb(165, 180, 252);
  border: 1px solid rgba(99, 102, 241, .35)
}

.pc-black,
.pc-easy-black {
  border-color: rgba(80, 80, 90, .4)
}

.pc-black:hover,
.pc-easy-black:hover {
  border-color: rgba(120, 125, 135, .5)
}

.price-val {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin: .6rem 0 .2rem
}

.price-val sup {
  font-size: 1rem;
  vertical-align: super
}

.price-val sub {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted)
}

.price-val .cents {
  font-size: 1.3rem;
  font-weight: 700
}

.price-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .4rem
}

.price-desc {
  color: var(--muted);
  font-size: .87rem;
  margin-bottom: 1.2rem
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.price-features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  color: var(--muted)
}

.ck {
  color: hsl(142, 65%, 50%);
  font-size: .95rem
}

.btn-black-plan {
  border-color: rgba(120, 125, 135, .4) !important;
  color: rgb(194, 201, 208) !important
}

.btn-black-plan:hover {
  background: rgba(80, 80, 90, .2) !important;
  border-color: rgba(120, 125, 135, .6) !important
}

/* ── TESTIMONIALS ── */
.alt-bg {
  background: var(--secondary)
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1.4rem;
  margin-top: 2.75rem
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: transform .3s
}

.testimonial:hover {
  transform: translateY(-4px)
}

.stars {
  color: hsl(45, 100%, 58%);
  margin-bottom: .9rem;
  letter-spacing: 2px;
  font-size: .95rem
}

.testimonial blockquote {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-align: left
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0
}

.author-name {
  font-weight: 600;
  font-size: .88rem
}

.author-role {
  font-size: .78rem;
  color: var(--muted)
}

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--border)
}

.cta-banner.cta-personal {
  background: linear-gradient(135deg, rgba(99, 102, 200, .12) 0%, transparent 60%), var(--bg)
}

.cta-banner.cta-student {
  background: linear-gradient(135deg, rgba(20, 184, 166, .1) 0%, transparent 60%), var(--bg)
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: .9rem
}

.cta-banner p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: .9rem auto 2.2rem;
  max-width: 480px
}

.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem
}

.store-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  text-decoration: none;
  color: var(--fg);
  transition: all .25s
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35)
}

.store-icon {
  font-size: 1.7rem
}

.store-text small {
  display: block;
  font-size: .68rem;
  color: var(--muted)
}

.store-text span {
  font-weight: 700;
  font-size: .95rem
}

/* ── FOOTER ── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.75rem
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem
}

.footer-brand img {
  width: 38px;
  border-radius: 11px;
  margin-bottom: .9rem
}

.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 230px
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: .9rem;
  font-size: .92rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--fg)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem
}

.footer-bottom p {
  color: var(--muted);
  font-size: .82rem
}

.socials {
  display: flex;
  gap: .65rem
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, #94a3b8);
  text-decoration: none;
  transition: all .2s
}

.social-btn:hover {
  background: rgba(99, 102, 200, .18);
  border-color: rgba(99, 102, 200, .35);
  color: #fff;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: rgba(99, 102, 200, .1);
  top: -130px;
  left: -80px
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(20, 184, 166, .07);
  bottom: -90px;
  right: -80px
}

/* ── MOBILE ── */
.d-none {
  display: none !important
}

/* Mobile menu — painel lateral direito */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 340px);
  z-index: 250;
  background: var(--card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .5);
  overflow: hidden;
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.menu-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.menu-header .nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem
}

.menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--fg);
  flex-shrink: 0;
  font-family: 'Figtree', sans-serif;
  transition: all .2s;
}

.menu-close:hover {
  background: rgba(99, 102, 200, .2);
  border-color: rgba(99, 102, 200, .3)
}

/* block flow + flex column para empurrar bottom para baixo */
.menu-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.menu-links {
  padding: .5rem .75rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  color: var(--fg);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: .85rem 1rem;
  border-radius: .75rem;
  transition: all .2s;
  border-bottom: 1px solid var(--border);
}

.menu-links a:last-child {
  border-bottom: none
}

.menu-links a:hover {
  background: var(--secondary);
  color: var(--primary)
}

/* rodapé do menu — empurrado para baixo */
.menu-bottom {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: .875rem .875rem calc(.875rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.menu-profile-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  padding: 0 .25rem;
  margin-bottom: .25rem;
  display: block;
}

.menu-profile-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem .9rem;
  border-radius: .875rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  width: 100%;
  transition: all .2s;
  text-decoration: none;
}

.menu-profile-btn:active {
  transform: scale(.98)
}

.menu-profile-btn.p-personal:hover {
  border-color: rgba(99, 102, 200, .4);
  background: rgba(99, 102, 200, .12)
}

.menu-profile-btn.p-student:hover {
  border-color: rgba(20, 184, 166, .35);
  background: rgba(20, 184, 166, .1)
}

.menu-profile-btn .pb-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center
}

.menu-profile-btn .pb-icon img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 6px;
  display: block
}

.nav-badge .badge-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle
}

.menu-profile-btn .pb-text {
  display: flex;
  flex-direction: column;
  gap: .08rem
}

.menu-profile-btn .pb-text small {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 400
}

.menu-profile-btn.active-profile {
  border-color: var(--border);
  background: var(--card);
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.menu-profile-btn.active-profile:active {
  transform: none
}

.menu-profile-btn.active-profile.p-personal {
  border-color: var(--primary);
  background: rgba(99, 102, 200, .08)
}

.menu-profile-btn.active-profile.p-student {
  border-color: var(--clr-s);
  background: rgba(20, 184, 166, .08)
}

.current-profile-badge {
  margin-left: auto;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--fg)
}

.active-profile.p-personal .current-profile-badge {
  background: var(--primary);
  color: #fff
}

.active-profile.p-student .current-profile-badge {
  background: var(--clr-s);
  color: #fff
}

@media(max-width:768px) {

  .nav-links,
  .nav-badge,
  .nav-right .btn-ghost,
  .nav-right .btn-primary,
  .nav-right .btn-teal {
    display: none
  }

  .hamburger {
    display: flex
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .profile-cards {
    flex-direction: column;
    align-items: center
  }

  .profile-card {
    width: min(300px, 90vw);
    padding: 1.8rem 1.5rem;
    gap: 0.75rem
  }

  #profile-selector {
    justify-content: flex-start;
    padding: 3rem 1.5rem
  }

  .sel-logo {
    margin-bottom: 1.5rem
  }

  .sel-title {
    margin-bottom: 0.4rem
  }

  .sel-sub {
    margin-bottom: 1.5rem
  }

  .pc-emoji {
    font-size: 2.5rem
  }

  .pc-img {
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
    border-radius: 18px
  }
}

@media(max-width:480px) {
  .footer-top {
    grid-template-columns: 1fr
  }

  h1 {
    font-size: 2rem
  }
}

/* ── FIND TRAINER / BE FOUND SECTIONS ── */
.find-trainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.be-found-grid {
  direction: rtl;
  /* flip columns: benefits right, mockup left */
}

.be-found-grid>* {
  direction: ltr;
}

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

  .be-found-grid {
    direction: ltr
  }
}

/* mockup container */
.find-trainer-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
}

/* search bar */
.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .75rem 1rem;
}

.mockup-search-icon {
  font-size: 1rem;
  flex-shrink: 0
}

.mockup-search-text {
  flex: 1;
  color: var(--muted);
  font-size: .88rem
}

.mockup-search-kbd {
  font-size: .7rem;
  padding: .2rem .5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: .35rem;
  color: var(--muted);
  font-family: monospace;
}

/* filter chips */
.mockup-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.mockup-filter {
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.mockup-filter.active-filter {
  background: var(--clr-s);
  color: #fff;
  border-color: var(--clr-s);
}

/* trainer list */
.mockup-trainer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.mockup-trainer-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .85rem 1rem;
  transition: all .25s;
}

.mockup-trainer-card.mockup-selected {
  border-color: rgba(20, 184, 166, .4);
  background: rgba(20, 184, 166, .06);
}

.mockup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.mockup-trainer-info {
  flex: 1;
  min-width: 0
}

.mockup-trainer-name {
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mockup-trainer-spec {
  font-size: .76rem;
  color: var(--muted);
  margin-top: .1rem
}

.mockup-verified {
  color: var(--clr-s);
  font-size: .7rem;
  font-weight: 700;
  background: rgba(20, 184, 166, .12);
  border: 1px solid rgba(20, 184, 166, .25);
  border-radius: 50px;
  padding: .1rem .4rem;
}

.mockup-connect-btn {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
  padding: .38rem .85rem;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid rgba(99, 102, 200, .4);
  background: rgba(99, 102, 200, .12);
  color: hsl(239, 70%, 78%);
  font-family: 'Figtree', sans-serif;
  transition: all .2s;
}

.mockup-connect-btn:hover {
  background: rgba(99, 102, 200, .2)
}

.mockup-connect-btn.mockup-btn-connected {
  border-color: rgba(20, 184, 166, .4);
  background: rgba(20, 184, 166, .12);
  color: hsl(180, 60%, 60%);
}

/* profile header (trainer view) */
.mockup-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem
}

.mockup-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.mockup-profile-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.mockup-profile-name {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap
}

.mockup-profile-handle {
  font-size: .8rem;
  color: var(--muted)
}

/* profile tags */
.mockup-profile-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.mockup-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(99, 102, 200, .3);
  background: rgba(99, 102, 200, .1);
  color: hsl(239, 70%, 78%);
}

/* stats row */
.mockup-stats-row {
  display: flex;
  gap: 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .875rem 1rem;
}

.mockup-stat-item {
  flex: 1;
  text-align: center
}

.mockup-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg)
}

.mockup-stat-lbl {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .15rem
}

/* request list */
.mockup-request-list {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.mockup-request-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .15rem;
}

.mockup-request-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .75rem .9rem;
}

.mockup-req-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

.mockup-req-info {
  flex: 1;
  min-width: 0
}

.mockup-req-name {
  font-size: .85rem;
  font-weight: 700
}

.mockup-req-time {
  font-size: .72rem;
  color: var(--muted)
}

.mockup-req-actions {
  display: flex;
  gap: .4rem;
  flex-shrink: 0
}

.mockup-accept-btn,
.mockup-reject-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  font-family: 'Figtree', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.mockup-accept-btn {
  background: rgba(20, 184, 166, .18);
  color: #2dd4bf
}

.mockup-accept-btn:hover {
  background: rgba(20, 184, 166, .3)
}

.mockup-reject-btn {
  background: rgba(239, 68, 68, .12);
  color: #f87171
}

.mockup-reject-btn:hover {
  background: rgba(239, 68, 68, .25)
}

/* benefits list */
.find-trainer-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem
}

.ftb-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.ftb-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.ftb-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.ftb-item p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65
}

/* ── APP MOCKUP - SOLICITAÇÃO AO TREINADOR (Fiel ao App) ── */
.app-mockup-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

/* Mockup Header Tabs */
.mockup-state-tabs {
  display: flex;
  gap: .25rem;
  background: var(--secondary);
  padding: .25rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: .25rem;
}

.mockup-state-tab {
  flex: 1;
  text-align: center;
  font-size: .62rem;
  font-weight: 700;
  padding: .35rem .35rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s ease;
  font-family: 'Figtree', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  white-space: nowrap;
}

.mockup-state-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 200, .3);
}

.mockup-state-tab.active.tab-approved {
  background: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .3);
}

/* App Status Banner */
.app-status-banner {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 1rem;
  padding: .85rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  transition: all .3s ease;
}

.app-status-banner.banner-pending {
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .28);
  color: #f59e0b;
}

.app-status-banner.banner-approved {
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .28);
  color: #10b981;
}

.app-status-banner .banner-text {
  flex: 1;
  font-weight: 600;
}

.app-status-banner .banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(1.4)
  }
}

/* App Trainer Card */
.app-trainer-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: all .3s ease;
}

.app-trainer-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-trainer-avatar-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 200, .2), rgba(20, 184, 166, .2));
  border: 2.5px solid rgba(99, 102, 200, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #818cf8;
  flex-shrink: 0;
  overflow: hidden;
}

.app-trainer-meta {
  flex: 1;
  min-width: 0;
}

.app-trainer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.app-trainer-role {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* Contact Info (Approved state) */
.app-contact-box {
  background: rgba(16, 185, 129, .06);
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: .85rem;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.app-contact-title {
  font-size: .72rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .1rem;
}

.app-contact-item {
  font-size: .85rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Action Buttons */
.app-card-actions {
  display: flex;
  gap: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: .85rem;
}

.app-btn-profile {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(99, 102, 200, .14);
  border: 1px solid rgba(99, 102, 200, .32);
  color: #a5b4fc;
  border-radius: .75rem;
  padding: .65rem 1rem;
  font-size: .83rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}

.app-btn-profile:hover {
  background: rgba(99, 102, 200, .25);
  color: #fff;
}

.app-btn-cancel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .22);
  color: #f87171;
  border-radius: .75rem;
  padding: .65rem 1rem;
  font-size: .83rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}

.app-btn-cancel:hover {
  background: rgba(239, 68, 68, .18);
  color: #ef4444;
}

/* Notification Hint */
.app-hint-box {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
  padding: 0 .25rem;
}

/* ── TRAINER MOCKUP - SEJA ENCONTRADO (Fiel ao App Treinador) ── */
.trainer-app-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.trainer-req-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
}

.trainer-req-accent-bar {
  height: 3px;
  background: var(--primary);
  opacity: .8;
}

.trainer-req-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.trainer-req-header {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.trainer-req-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 200, .25), rgba(20, 184, 166, .25));
  border: 2.5px solid rgba(99, 102, 200, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #818cf8;
  flex-shrink: 0;
}

.trainer-req-meta {
  flex: 1;
  min-width: 0;
}

.trainer-req-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--fg);
}

.trainer-req-detail {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .15rem;
}

.trainer-req-detail.phone-detail {
  color: #10b981;
  font-weight: 600;
}

.trainer-req-time {
  background: rgba(99, 102, 200, .12);
  color: #818cf8;
  border-radius: 50px;
  padding: .2rem .55rem;
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
}

.trainer-req-chips {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.trainer-req-chip {
  font-size: .72rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

.trainer-req-chip.chip-goal {
  background: rgba(99, 102, 200, .1);
  border-color: rgba(99, 102, 200, .25);
  color: #a5b4fc;
}

.trainer-req-message {
  background: rgba(255, 255, 255, .03);
  border-left: 3px solid var(--primary);
  border-radius: .5rem;
  padding: .55rem .8rem;
  font-size: .79rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.45;
}

.trainer-req-actions {
  display: flex;
  gap: .65rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: .8rem;
}

.trainer-btn-accept {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: .75rem;
  padding: .6rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .25);
  transition: all .2s ease;
}

.trainer-btn-accept:hover {
  background: #059669;
  transform: translateY(-1px);
}

.trainer-btn-reject {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .22);
  color: #f87171;
  border-radius: .75rem;
  padding: .6rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}

.trainer-btn-reject:hover {
  background: rgba(239, 68, 68, .18);
  color: #ef4444;
}

.trainer-profile-card-view {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.trainer-code-box {
  background: rgba(99, 102, 200, .1);
  border: 1px dashed rgba(99, 102, 200, .35);
  border-radius: .85rem;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trainer-code-val {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #a5b4fc;
}

/* ── Mockup Image ── */
.mockup-state-content {
  border-radius: .75rem;
  background: var(--secondary);
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: .75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

/* ── COOKIE CONSENT BANNER & MODAL ── */
#ez-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: fit-content;
  max-width: calc(100vw - 2rem);
  background: rgba(15, 18, 35, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.15);
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

#ez-cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.ez-cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.ez-cookie-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ez-cookie-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.ez-cookie-text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted, #94a3b8);
  line-height: 1.5;
}

.ez-cookie-text p strong {
  color: var(--fg, #f8fafc);
}

.ez-cookie-text a {
  color: hsl(239, 70%, 78%);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ez-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ez-btn-cookie-accept {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
  font-family: 'Figtree', sans-serif;
}

.ez-btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.ez-btn-cookie-essential {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg, #f8fafc);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
}

.ez-btn-cookie-essential:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.ez-btn-cookie-config {
  background: transparent;
  color: var(--muted, #94a3b8);
  border: none;
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  font-size: 0.83rem;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Figtree', sans-serif;
}

.ez-btn-cookie-config:hover {
  color: var(--fg, #f8fafc);
}

/* ── COOKIE PREFERENCES MODAL ── */
#ez-cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#ez-cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.ez-cookie-modal {
  background: #111427;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  width: min(640px, 100%);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#ez-cookie-modal-overlay.open .ez-cookie-modal {
  transform: scale(1) translateY(0);
}

.ez-cookie-modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ez-cookie-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.ez-cookie-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--muted, #94a3b8);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.ez-cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ez-cookie-modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ez-cookie-intro {
  font-size: 0.88rem;
  color: var(--muted, #94a3b8);
  line-height: 1.6;
  margin: 0;
}

.ez-cookie-cat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}

.ez-cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.ez-cookie-cat-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg, #f8fafc);
}

.ez-cookie-cat-desc {
  font-size: 0.83rem;
  color: var(--muted, #94a3b8);
  margin: 0;
  line-height: 1.5;
}

/* Custom Switch Toggle */
.ez-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.ez-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ez-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.18);
  transition: 0.3s;
  border-radius: 24px;
}

.ez-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.ez-toggle-switch input:checked+.ez-toggle-slider {
  background-color: #6366f1;
}

.ez-toggle-switch input:checked+.ez-toggle-slider:before {
  transform: translateX(20px);
}

.ez-toggle-switch input:disabled+.ez-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.ez-cookie-badge-locked {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ez-cookie-modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ── SELECTOR PAGE FOOTER ── */
.selector-footer {
  margin-top: auto;
  padding: 2rem 1.5rem 1.5rem;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.selector-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem 0;
}

.selector-footer-links a {
  color: var(--muted, #94a3b8);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.selector-footer-links a:hover {
  color: var(--fg, #f8fafc);
}

.selector-footer-copy {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.6);
  margin: 0;
}

@media(max-width: 640px) {
  #ez-cookie-banner {
    bottom: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 14px;
    width: calc(100vw - 2rem);
  }

  .ez-cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .ez-cookie-actions {
    justify-content: flex-end;
    gap: 0.5rem;
  }

  /* ── COOKIE MODAL MOBILE OPTIMIZATION ── */
  #ez-cookie-modal-overlay {
    padding: 1rem 0.75rem;
    align-items: center;
  }

  .ez-cookie-modal {
    max-height: 78vh;
    border-radius: 20px;
    width: 100%;
  }

  .ez-cookie-modal-header {
    padding: 1rem 1.25rem;
  }

  .ez-cookie-modal-header h3 {
    font-size: 1.1rem;
  }

  .ez-cookie-modal-body {
    padding: 1rem 1.25rem;
    gap: 0.85rem;
  }

  .ez-cookie-intro {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .ez-cookie-cat {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .ez-cookie-cat-title {
    font-size: 0.88rem;
  }

  .ez-cookie-cat-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .ez-cookie-modal-footer {
    padding: 0.85rem 1.25rem;
    gap: 0.5rem;
    flex-direction: column-reverse;
  }

  .ez-cookie-modal-footer button {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}

/* ── SOBRE NÓS (ABOUT US) STYLES ── */
.about-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.about-hero p {
  font-size: 1.125rem;
  color: var(--muted, #94a3b8);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 2rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.value-card {
  background: rgba(17, 20, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.1);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.vi-mission {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.vi-vision {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.vi-values {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--muted, #94a3b8);
  line-height: 1.65;
  margin: 0;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.story-text p {
  font-size: 0.98rem;
  color: var(--muted, #94a3b8);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.story-card-num {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary, #6366f1);
  background: rgba(99, 102, 241, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.story-card p {
  font-size: 0.85rem;
  color: var(--muted, #94a3b8);
  margin: 0;
  line-height: 1.5;
}

/* Stats Section */
.about-stats-bar {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(20, 184, 166, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted, #94a3b8);
  font-weight: 600;
}

/* Trust / Commitments Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-card-icon {
  font-size: 1.6rem;
}

.trust-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--muted, #94a3b8);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── TEAM & CONTACT SECTIONS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.team-card {
  background: rgba(17, 20, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

/* Hover handled by wrapper — see .team-card-wrapper:not(.flipped):hover below */

.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(20, 184, 166, 0.15));
  border: 2px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.83rem;
  font-weight: 700;
  color: hsl(239, 70%, 78%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--muted, #94a3b8);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted, #94a3b8);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-socials a:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* ── FLIP CARD SYSTEM ── */

/* Outer block: card + socials stacked */
.team-member-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

.team-card-wrapper {
  perspective: 1000px;
  cursor: pointer;
  border-radius: 20px;
  flex: 1;
  -webkit-tap-highlight-color: transparent;
}

.team-card-inner {
  position: relative;
  width: 100%;
  min-height: 460px;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.team-card-wrapper.flipped .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  /* Prevent font blurriness in 3D transform context on mobile/retina */
  transform: translateZ(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* ── BACK FACE: blurred photo bg ── */
.team-card-back {
  transform: rotateY(180deg) translateZ(0);
  border: 1px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
  background: #0d0f22;
  /* fallback */
  isolation: isolate;
  /* isolate GPU blur layer to avoid font blurring */
}

/* The blurred background image layer */
.team-back-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.team-back-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: blur(14px) saturate(0.6) brightness(0.38);
  transform: scale(1.12);
  /* hide blur edges cleanly */
  will-change: transform;
}

/* Gradient overlay for readability — darkest at bottom where text lives */
.team-back-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(170deg,
      rgba(10, 12, 28, 0.65) 0%,
      rgba(10, 12, 28, 0.88) 40%,
      rgba(10, 12, 28, 0.98) 100%);
}

/* Content sits on top of bg + overlay */
.team-back-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.75rem 1.35rem 1.5rem;
  height: 100%;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  overflow-y: auto;
  /* Fallback scroll if content overflows on ultra-small screens */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.team-back-content::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Hint badge on front */
.team-flip-hint {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(239, 70%, 75%);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 50px;
  padding: 0.28rem 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.team-card-wrapper:hover .team-flip-hint {
  opacity: 1;
}

/* Close button on back */
.team-flip-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  z-index: 10;
}

.team-flip-close:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.6);
  color: #f87171;
}

/* Tag chips */
.team-back-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.team-back-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(99, 102, 241, 0.22);
  border: 1px solid rgba(99, 102, 241, 0.45);
  border-radius: 50px;
  padding: 0.22rem 0.65rem;
  white-space: nowrap;
}

/* Back description */
.team-back-description {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Stats row */
.team-back-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.75rem 0.35rem;
  flex-shrink: 0;
}

.team-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0.35rem;
}

.team-stat:last-child {
  border-right: none;
}

.team-stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(239, 85%, 85%), hsl(180, 85%, 68%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.team-stat-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Back face: name + role text styling override for contrast */
.team-card-back .team-name {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.team-card-back .team-role {
  color: hsl(239, 80%, 82%);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-size: 0.78rem;
}

/* Hover lift on wrapper (front only, desktop only to prevent touch glow flash on mobile) */
@media (hover: hover) and (pointer: fine) {
  .team-card-wrapper:not(.flipped):hover .team-card-front {
    border-color: rgba(99, 102, 241, 0.35) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.12);
  }
}

/* Disable card's own hover transform while in wrapper & prevent tap highlight */
.team-card-wrapper .team-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

/* ── MOBILE RESPONSIVE OPTIMIZATIONS ── */
@media (max-width: 640px) {
  .team-card-inner {
    min-height: 480px;
  }

  .team-card-front {
    padding: 1.5rem 1.2rem;
  }

  .team-back-content {
    padding: 1.5rem 1rem 1.25rem;
    justify-content: space-between;
  }

  .team-back-description {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .team-back-details {
    gap: 0.3rem;
    margin-bottom: 0.65rem;
  }

  .team-back-tag {
    font-size: 0.66rem;
    padding: 0.2rem 0.55rem;
  }

  .team-stat-value {
    font-size: 0.9rem;
  }

  .team-stat-label {
    font-size: 0.55rem;
  }

  .contact-card-item {
    padding: 1.1rem 1rem;
    gap: 0.85rem;
  }
}

/* ── SOCIALS OUTSIDE CARD ── */
.team-socials-outside {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 0 0.25rem;
}

.team-socials-outside a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted, #94a3b8);
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-socials-outside a:hover {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
  transform: translateY(-2px);
}



.contact-section-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(20, 184, 166, 0.06));
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card-item {
  background: rgba(15, 18, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.contact-card-item:hover {
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
  min-width: 0;
}

.contact-info-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem 0;
}

.contact-info-content p {
  font-size: 0.88rem;
  color: var(--muted, #94a3b8);
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.contact-info-content a {
  color: hsl(239, 70%, 78%);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ── REMOVER DESTAQUE / BRILHO AO CLICAR EM BOTÕES E CARDS NO MOBILE ── */
*,
*::before,
*::after,
a,
button,
input,
textarea,
select,
summary,
[role="button"],
[onclick],
[tabindex],
.profile-card,
.team-card-wrapper,
.team-card,
.team-member-block,
.pc-btn,
.social-btn,
.btn,
.nav-cta,
.btn-cta,
.mockup-tab,
.tab-btn,
.trainer-tab-btn,
.ez-btn-cookie-config,
.ez-btn-cookie-essential,
.ez-btn-cookie-accept,
.ez-cookie-modal-close {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
}

a:focus,
button:focus,
a:active,
button:active,
*:focus,
*:active,
*:focus-visible {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none !important;
}

/* ── 404 NOT FOUND PAGE ── */
.not-found-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 1.5rem 5rem;
  overflow: hidden;
  text-align: center;
}

.not-found-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.not-found-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.not-found-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse404 2s infinite;
}

@keyframes pulse404 {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.not-found-title {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.not-found-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}

.not-found-img-wrapper {
  position: relative;
  margin: 1.2rem 0;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.not-found-img-wrapper::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 200, 0.25) 0%, rgba(20, 184, 166, 0.15) 50%, transparent 75%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.not-found-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  animation: float404 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.not-found-img:hover {
  transform: scale(1.02);
}

@keyframes float404 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.not-found-quicklinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 780px;
  margin-top: 2rem;
}

.not-found-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  color: var(--fg);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.not-found-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 200, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.not-found-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.not-found-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── 404 MOBILE RESPONSIVE ── */
@media (max-width: 640px) {
  .not-found-section {
    padding: 5.5rem 1rem 3rem;
    min-height: auto;
  }

  .not-found-container {
    gap: 1.1rem;
  }

  .not-found-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
  }

  .not-found-title {
    font-size: 1.65rem;
  }

  .not-found-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    padding: 0 0.5rem;
  }

  .not-found-img-wrapper {
    margin: 0.75rem 0;
    max-width: 320px;
  }

  .not-found-img {
    max-width: 280px;
    border-radius: 1.2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  }

  .not-found-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 0.75rem;
  }

  .not-found-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .not-found-quicklinks {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .not-found-card {
    padding: 1.1rem 1.25rem;
    border-radius: 1rem;
  }

  .not-found-card h3 {
    font-size: 1rem;
  }

  .not-found-card p {
    font-size: 0.84rem;
  }
}