/* ===========================
   CHAMPIONS FACTORY — STYLE
   =========================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* === VARIABLES === */
:root {
  --red: #cc0000;
  --red-dark: #990000;
  --red-glow: rgba(204, 0, 0, 0.15);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gray: #888888;
  --gray-light: #cccccc;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: 2px; line-height: 1.05; font-weight: 400; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-title { font-size: clamp(36px, 5vw, 64px); line-height: 1; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; font-weight: 400; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 36px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  cursor: pointer; transition: all 0.3s ease; border: none; white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.07); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { font-size: 16px; padding: 18px 44px; }
.btn-sm { font-size: 12px; padding: 10px 24px; }

/* === CARDS === */
.card {
  background: var(--black-2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  padding: 13px 16px;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--black-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; padding: 16px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #25d366; font-family: var(--font-condensed); font-weight: 600; letter-spacing: 1px; text-align: center; margin-top: 12px; }
.form-error { display: none; padding: 16px; background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.3); color: #ff4444; font-family: var(--font-condensed); font-weight: 600; letter-spacing: 1px; text-align: center; margin-top: 12px; }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0.05s; }
.stagger.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:0.10s; }
.stagger.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:0.15s; }
.stagger.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:0.20s; }
.stagger.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:0.25s; }
.stagger.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:0.30s; }
.stagger.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:0.35s; }
.stagger.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:0.40s; }
.stagger.visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay:0.45s; }
.stagger.visible > *:nth-child(10) { opacity:1; transform:none; transition-delay:0.50s; }
.stagger.visible > *:nth-child(11) { opacity:1; transform:none; transition-delay:0.55s; }
.stagger.visible > *:nth-child(12) { opacity:1; transform:none; transition-delay:0.60s; }

/* ===========================
   TOPBAR
   =========================== */
.topbar { background: var(--red); padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 1px;
}
.topbar-socials { display: flex; align-items: center; gap: 20px; }
.topbar-socials a { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; transition: opacity 0.2s; }
.topbar-socials a:hover { opacity: 1; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky; top: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,10,0.99); box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 56px; width: auto; }
.navbar-logo-text { display: none; }
.hero-logo-img { display: block; max-width: 480px; width: 80%; margin: 0 auto 8px; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5)); }
.hero-muaythai { font-family: var(--font-display); font-size: clamp(28px, 5vw, 52px); color: var(--red); letter-spacing: 10px; text-align: center; margin-bottom: 24px; }

.navbar-menu { display: flex; align-items: center; gap: 4px; }
.navbar-menu a {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 8px 14px;
  transition: color 0.2s; position: relative;
}
.navbar-menu a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.2s; }
.navbar-menu a:hover { color: var(--white); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { transform: scaleX(1); }
.navbar-menu a.active { color: var(--white); }

.navbar-cta { display: flex; align-items: center; gap: 10px; }
.navbar-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/gallery-muay-thai.jpg');
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.78) 50%, rgba(150,0,0,0.25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; text-align: center; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(204,0,0,0.5);
  padding: 6px 22px; margin-bottom: 24px;
}
.hero-title { font-size: clamp(64px, 12vw, 130px); line-height: 0.9; margin-bottom: 24px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.hero-title .red { color: var(--red); }
.hero-subtitle { font-size: clamp(17px, 2.5vw, 21px); font-weight: 400; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 42px; line-height: 1.6; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); text-align: center; color: rgba(255,255,255,0.35); font-family: var(--font-condensed); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ===========================
   STATS SECTION
   =========================== */
.stats-section { padding: 0; background: var(--black-2); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.stat-item { text-align: center; padding: 48px 20px; border-right: 1px solid rgba(255,255,255,0.04); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img { width: 100%; height: 520px; object-fit: cover; clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px)); }
.about-img-accent { position: absolute; top: -16px; right: -16px; width: 180px; height: 180px; border: 2px solid var(--red); opacity: 0.25; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); pointer-events: none; }
.about-content .section-tag, .about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.75; font-weight: 400; margin-bottom: 28px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-icon { width: 38px; height: 38px; background: var(--red-glow); border: 1px solid rgba(204,0,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.highlight-text strong { display: block; font-family: var(--font-condensed); font-size: 15px; font-weight: 700; letter-spacing: 1px; margin-bottom: 2px; }
.highlight-text span { font-size: 13px; color: var(--gray); }

/* ===========================
   FOUNDER SECTION
   =========================== */
.founder-section { background: var(--black-2); position: relative; overflow: hidden; }
.founder-bg-text { position: absolute; top: 50%; right: -20px; transform: translateY(-50%); font-family: var(--font-display); font-size: clamp(100px, 15vw, 200px); color: rgba(255,255,255,0.02); letter-spacing: 10px; pointer-events: none; white-space: nowrap; }
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.founder-img-wrapper { position: relative; }
.founder-img { width: 100%; height: 560px; object-fit: cover; object-position: top; clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); }
.founder-badge { position: absolute; bottom: 28px; left: -16px; background: var(--red); padding: 16px 24px; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%); }
.founder-badge-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; line-height: 1.1; }
.founder-badge-sub { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }
.founder-content { position: relative; z-index: 1; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.founder-tag { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; background: var(--black-3); border: 1px solid rgba(204,0,0,0.3); color: var(--red); }
.founder-text { color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.75; font-weight: 400; margin-bottom: 20px; }
.founder-quote { margin: 28px 0; padding: 22px 28px; border-left: 4px solid var(--red); background: rgba(204,0,0,0.04); font-size: 19px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; font-weight: 400; }

/* ===========================
   MUAY THAI SECTION
   =========================== */
.muay-section { background: var(--black); position: relative; }
.muay-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.muay-content .section-tag, .muay-content .section-title { text-align: left; }
.muay-text { color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.75; font-weight: 400; margin-bottom: 28px; }
.muay-arms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.arm-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--black-2); border: 1px solid rgba(255,255,255,0.05); }
.arm-icon { font-size: 22px; }
.arm-item strong { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.muay-img-wrapper { position: relative; }
.muay-img { width: 100%; height: 540px; object-fit: cover; clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px); }
.muay-img-bar { position: absolute; top: 0; right: 0; width: 5px; height: 100%; background: var(--red); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { background: var(--black-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--black-3); padding: 36px; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 28px; font-family: var(--font-display); font-size: 80px; color: var(--red); opacity: 0.15; line-height: 1; }
.testimonial-stars { color: var(--red); margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; font-weight: 400; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; flex-shrink: 0; overflow: hidden; position: relative; }
.testimonial-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-initial { position: relative; z-index: 1; }
.testimonial-avatar:not(:has(img)) { display: none; }
.testimonial-name { font-family: var(--font-condensed); font-size: 16px; font-weight: 700; letter-spacing: 1px; display: block; }
.testimonial-role { font-size: 13px; color: var(--gray); }

/* ===========================
   UNITS SECTION
   =========================== */
.units-section { background: var(--black); }
.units-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.unit-card { background: var(--black-2); padding: 28px; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); border: 1px solid rgba(255,255,255,0.04); transition: border-color 0.3s, transform 0.3s; }
.unit-card:hover { border-color: rgba(204,0,0,0.3); transform: translateY(-4px); }
.unit-flag { font-size: 26px; margin-bottom: 12px; }
.unit-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; margin-bottom: 6px; }
.unit-city { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.unit-leader { font-size: 14px; color: var(--gray-light); margin-bottom: 6px; font-weight: 500; }
.unit-address { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.unit-phone { display: block; font-family: var(--font-condensed); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.unit-links { display: flex; gap: 12px; }
.unit-link { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); transition: color 0.2s; }
.unit-link:hover { color: var(--red); }

/* ===========================
   FRANCHISE SECTION (#franquia)
   =========================== */
.franquia-section { background: var(--black-2); position: relative; overflow: hidden; }
.franquia-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }

.franquia-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; background: var(--red); margin-bottom: 64px; }
.f-stat { background: var(--black-3); text-align: center; padding: 28px 16px; transition: background 0.3s; }
.f-stat:hover { background: rgba(204,0,0,0.08); }
.f-stat-value { display: block; font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 50px); color: var(--red); line-height: 1; margin-bottom: 6px; }
.f-stat-label { display: block; font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

.franquia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }

.franquia-vantagens h3 { font-size: 32px; margin-bottom: 28px; }
.vantagens-list { display: flex; flex-direction: column; gap: 13px; }
.vantagens-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.4; }
.vantagens-list li .check { color: var(--red); font-weight: 700; font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.franquia-form-card { background: var(--black); padding: 40px; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); }
.franquia-form-card h3 { font-size: 32px; margin-bottom: 8px; }
.franquia-form-card > p { color: var(--gray); font-size: 15px; margin-bottom: 28px; }

.lideres-grid { display: grid; grid-template-columns: minmax(0, 560px); justify-content: center; gap: 24px; margin-bottom: 48px; }
.lider-card { background: var(--black); padding: 28px; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); border: 1px solid rgba(204,0,0,0.15); }
.lider-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); font-style: italic; font-weight: 400; margin-bottom: 20px; }
.lider-author { display: flex; align-items: center; gap: 12px; }
.lider-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; flex-shrink: 0; }
.lider-name { font-family: var(--font-condensed); font-size: 15px; font-weight: 700; letter-spacing: 1px; display: block; }
.lider-role { font-size: 12px; color: var(--red); font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.franquia-whatsapp { text-align: center; }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h3 { font-size: 30px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: var(--black-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 28px; height: 28px; display: block; }
.contact-label { display: block; font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-value { font-size: 16px; color: var(--white); font-weight: 500; }
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--red); }
.contact-form-card { background: var(--black-2); padding: 40px; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); }
.contact-form-card h3 { font-size: 30px; margin-bottom: 28px; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--black-2); border-top: 1px solid rgba(255,255,255,0.05); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand-text { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.7; font-weight: 400; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 40px; height: 40px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); }
.footer-social:hover { background: var(--red); }
.footer-col h4 { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 400; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: var(--gray); font-weight: 400; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===========================
   BOTTOM BAR (FRANCHISE CTA)
   =========================== */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--black-2); border-top: 3px solid var(--red);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
}
.bottom-bar.show { transform: translateY(0); }
.bottom-bar-text { font-family: var(--font-condensed); font-size: 15px; font-weight: 600; letter-spacing: 1px; flex: 1; }
.bottom-bar-text .highlight { color: var(--red); }
.bottom-bar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.bottom-bar-close { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 22px; padding: 2px 6px; transition: color 0.2s; line-height: 1; }
.bottom-bar-close:hover { color: var(--white); }

/* ===========================
   POPUP (FRANCHISE CONVERSION)
   =========================== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-card {
  background: var(--black-2); max-width: 480px; width: 100%;
  padding: 48px 40px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  position: relative; text-align: center;
  transform: scale(0.88) translateY(16px); transition: transform 0.3s;
}
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }
.popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--gray); cursor: pointer; font-size: 24px; padding: 4px; transition: color 0.2s; line-height: 1; }
.popup-close:hover { color: var(--white); }
.popup-badge { display: inline-block; font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); border: 1px solid rgba(204,0,0,0.4); padding: 5px 18px; margin-bottom: 20px; }
.popup-title { font-size: clamp(32px, 5vw, 44px); line-height: 1; margin-bottom: 16px; }
.popup-text { color: rgba(255,255,255,0.68); font-size: 16px; line-height: 1.6; font-weight: 400; margin-bottom: 32px; }
.popup-reject { display: block; margin-top: 16px; font-size: 13px; color: var(--gray); text-decoration: underline; cursor: pointer; background: none; border: none; transition: color 0.2s; }
.popup-reject:hover { color: var(--white); }

/* ===========================
   WHATSAPP FLOAT BUTTON
   =========================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .franquia-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { display: none; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img-wrapper { max-height: 380px; overflow: hidden; }
  .founder-img { height: 380px; }
  .founder-badge { left: 0; bottom: 16px; }
  .muay-grid { grid-template-columns: 1fr; }
  .muay-img-wrapper { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.04); }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-item:last-child { border-right: none; }
}

/* ===========================
   CARROSSEL
   =========================== */
.cf-carousel-section {
  background: var(--black);
  padding: 80px 0 0;
  overflow: hidden;
}

.cf-carousel-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.cf-carousel-tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.cf-carousel-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: 3px;
  color: var(--white);
}

.cf-carousel-title span {
  color: rgba(255,255,255,0.18);
}

/* === VIEWPORT === */
.cf-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* === TRACK (stacked slides) === */
.cf-carousel-track {
  position: relative;
  width: 100%;
  height: 520px;
}

/* === SLIDE === */
.cf-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 62fr 38fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
  pointer-events: none;
}

.cf-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* === MEDIA SIDE === */
.cf-slide-media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.cf-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.cf-slide.active .cf-slide-img { transform: scale(1.03); }

.cf-slide-iframe,
.cf-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.cf-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-3);
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 2px;
}

/* Gradient edge bleed into panel */
.cf-slide-media::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 25%;
  background: linear-gradient(to right, transparent, var(--black));
  pointer-events: none;
}

/* === TEXT PANEL === */
.cf-slide-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 32px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cf-slide-ghost {
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,0.035);
  position: absolute;
  bottom: -16px;
  right: -8px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.cf-slide-accent {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cf-slide-legenda {
  font-family: var(--font-condensed);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--gray-light);
  position: relative;
  z-index: 1;
  flex: 1;
}

.cf-slide-counter {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gray);
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.cf-slide-counter span { color: rgba(255,255,255,0.2); }

/* === ARROWS === */
.cf-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}

.cf-carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.cf-carousel-arrow svg { width: 20px; height: 20px; }
.cf-arrow-prev { left: 16px; }
.cf-arrow-next { left: calc(62% - 60px); }

/* === FOOTER (dots + progress) === */
.cf-carousel-footer {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black);
}

.cf-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 20px 48px 20px calc(38% + 16px);
}

.cf-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.cf-dot.active {
  background: var(--red);
  width: 22px;
}

.cf-carousel-progress {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.cf-carousel-bar {
  height: 2px;
  width: 0%;
  background: var(--red);
}

/* === CAROUSEL COMPACTO (página de franquia — 80% do tamanho) === */
.cf-carousel-compact .cf-carousel-track { height: 416px; }
.cf-carousel-compact .cf-carousel-title { font-size: clamp(32px, 4.8vw, 56px); }
.cf-carousel-compact .cf-slide-ghost { font-size: 128px; }
.cf-carousel-compact .cf-slide-panel { padding: 38px 38px 38px 26px; }
.cf-carousel-compact .cf-slide-legenda { font-size: 15px; }
.cf-carousel-compact .cf-slide-counter { font-size: 12px; margin-top: 24px; }
.cf-carousel-compact .cf-carousel-arrow { width: 36px; height: 36px; }
.cf-carousel-compact .cf-carousel-arrow svg { width: 16px; height: 16px; }
.cf-carousel-compact .cf-carousel-header { margin-bottom: 36px; }

/* === MOBILE === */
@media (max-width: 768px) {
  .cf-carousel-track { height: auto; min-height: 0; }
  .cf-slide { position: relative; grid-template-columns: 1fr; grid-template-rows: 240px auto; }
  .cf-slide:not(.active) { display: none; }
  .cf-slide-media { clip-path: none; height: 240px; }
  .cf-slide-media::after { display: none; }
  .cf-slide-panel { padding: 28px 24px; }
  .cf-slide-ghost { font-size: 100px; }
  .cf-slide-legenda { font-size: 16px; }
  .cf-arrow-next { left: auto; right: 16px; }
  .cf-carousel-dots { padding: 16px 24px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .topbar-socials { display: none; }

  .navbar-menu {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.99);
    padding: 20px 24px; gap: 0;
    border-bottom: 2px solid var(--red);
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }

  .hero { min-height: 100svh; }
  .hero-logo-img { max-width: 260px; }
  .hero-muaythai { letter-spacing: 4px; font-size: clamp(20px, 5vw, 36px); }
  .hero-badge { font-size: 10px; letter-spacing: 0.5px; padding: 6px 12px; }
  .hero-title { font-size: 56px; }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.04); padding: 32px 12px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:last-child { border-right: none; }

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

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

  .franquia-stats { grid-template-columns: repeat(2, 1fr); }
  .franquia-grid { grid-template-columns: 1fr; gap: 40px; }
  .lideres-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .bottom-bar { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .bottom-bar-text { font-size: 13px; text-align: center; }
  .bottom-bar-actions { flex-shrink: 0; }

  .popup-overlay { padding: 20px 16px; align-items: flex-start; padding-top: 40px; }
  .popup-card { max-height: calc(100svh - 80px); overflow-y: auto; }

  .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 16px; }
}

@media (max-width: 520px) {
  section { padding: 52px 0; }
  .container { padding: 0 16px; }

  .hero-title { font-size: 46px; }
  .hero-logo-img { max-width: 200px; }
  .hero-muaythai { letter-spacing: 2px; font-size: 20px; }
  .hero-badge { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { font-size: 13px; padding: 14px 24px; }
  .btn-lg { font-size: 14px; padding: 15px 28px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 10px; border-right: 1px solid rgba(255,255,255,0.04); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-size: 42px; }

  .about-highlights { grid-template-columns: 1fr; }
  .muay-arms { grid-template-columns: 1fr 1fr; }
  .units-grid { grid-template-columns: 1fr; }

  .franquia-stats { grid-template-columns: 1fr 1fr; }
  .franquia-form-card { padding: 24px 16px; }
  .vantagens-list li { font-size: 14px; }

  .popup-card { padding: 32px 20px; }
  .popup-title { font-size: clamp(28px, 8vw, 48px); }

  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 14px; }

  .section-title { font-size: clamp(28px, 8vw, 48px); }
  .section-subtitle { font-size: 15px; }

  .footer-copy { font-size: 12px; text-align: center; }

  .contact-form-card { padding: 24px 16px; }
}
