:root {
  --gold: #d4af37;
  --gold-dim: #b8860b;
  --gold-bright: #ffd700;
  --gold-text: #f4d03f;
  --dark: #0a0a0a;
  --dark2: #111111;
  --gray: #888;
  --white: #f5f0e8;
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

section {
  background: #111111;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}

nav .logo-nav img {
  height: 48px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  padding: 12px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

nav ul a:hover {
  opacity: 1;
  color: var(--gold-text);
}

nav ul a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  opacity: 1;
}

nav .nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  opacity: 1 !important;
}

nav .nav-cta:hover {
  background: var(--gold-bright) !important;
}

nav .nav-cta:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav {
    padding: 14px 20px;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/fight.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.97) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 25%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(-60deg, transparent, transparent 38px, rgba(184, 134, 11, 0.02) 38px, rgba(184, 134, 11, 0.02) 39px);
}

.hero-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(184, 134, 11, 0.05), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 24px 80px;
  max-width: 860px;
}

@media (max-width: 600px) {
  .hero-content {
    padding: 110px 16px 60px;
  }
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-logo {
  width: min(340px, 72vw);
  margin: 0 auto 32px;
  display: none;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
  filter: drop-shadow(0 0 50px rgba(184, 134, 11, 0.4));
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 8vw, 90px);
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
  color: var(--gold-text);
}

.hero p {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  min-height: 48px;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.btn-secondary {
  background: transparent;
  color: var(--gold-text);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  min-height: 44px;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(184, 134, 11, 0.5);
}

.hero-scroll span:last-child {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s infinite;
}

/* STATS */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 80px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-icon {
  color: var(--gold);
  margin-bottom: 2px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
}

/* SECTIONS COMMON */
section {
  padding: 100px 24px;
}

@media (max-width: 600px) {
  section {
    padding: 80px 16px;
  }
}

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}

h2.section-title span {
  color: var(--gold-light);
}

/* ABOUT */
#sobre {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: 'KRAV';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px;
  color: rgba(184, 134, 11, 0.035);
  pointer-events: none;
  letter-spacing: -8px;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-logo-wrap img {
    filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.25));
  }
}

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrap img {
  width: 100%;
  max-width: 380px;
  display: block;
  filter: drop-shadow(0 0 70px rgba(184, 134, 11, 0.25));
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.70);
  margin-bottom: 18px;
}

.about-text p strong {
  color: var(--gold-light);
  font-weight: 500;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 500px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
  background: rgba(184, 134, 11, 0.05);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pillar-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pillar p {
  font-size: 13px !important;
  color: rgba(245, 240, 232, 0.58) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* AFFILIATION */
.affil-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1500 100%);
  border-top: 1px solid rgba(184, 134, 11, 0.25);
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
  padding: 48px 24px;
  text-align: center;
}

.affil-inner {
  max-width: 700px;
  margin: 0 auto;
}

.affil-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.affil-banner p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 2.5vw, 21px);
  letter-spacing: 0.5px;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 20px;
  line-height: 1.65;
}

.affil-banner p strong {
  color: var(--gold-bright);
}

.affil-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 11, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.affil-link:hover {
  color: var(--gold-bright);
}

/* MODALITIES */
#modalidades {
  background: var(--black);
}

.mod-header {
  max-width: 1140px;
  margin: 0 auto 48px;
  text-align: center;
}

.modalities-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
}

.mod-card {
  background: var(--dark2);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.mod-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.mod-card:hover {
  background: #1f1f1f;
}

.mod-card:hover::before {
  transform: scaleX(1);
}

.mod-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.mod-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.mod-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.58);
}

/* PLANS TABLE */
#planos {
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}

.plans-subtitle {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.58);
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.family-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.3);
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 48px;
}

.plans-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .plans-table-wrap {
    overflow-x: auto;
  }
}

.plans-header-row {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  gap: 3px;
  margin-bottom: 3px;
}

.plans-col-header {
  padding: 16px 12px;
  text-align: center;
}

.plans-col-header.individual {
  background: rgba(184, 134, 11, 0.14);
  border-top: 2px solid var(--gold);
}

.plans-col-header.familiar {
  background: rgba(60, 160, 60, 0.14);
  border-top: 2px solid #3ca03c;
}

.col-header-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}

.plans-col-header.familiar .col-header-label {
  color: #7ee87e;
}

.col-header-sub {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 3px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  gap: 3px;
  margin-bottom: 3px;
  position: relative;
}

.plan-row.featured-row .plan-row-info,
.plan-row.featured-row .individual-price,
.plan-row.featured-row .familiar-price {
  background: linear-gradient(160deg, #1d1700, #1c1c1c);
  border-top: 1px solid rgba(184, 134, 11, 0.3);
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.plan-row-badge {
  position: absolute;
  top: -1px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  z-index: 2;
}

.plan-row-info {
  background: var(--dark2);
  padding: 28px 24px;
  text-align: left;
}

.plan-row-freq {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.plan-row-desc {
  display: block;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.48);
  margin-bottom: 14px;
  line-height: 1.5;
}

.plan-row-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.plan-row-features li {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.62);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}

.plan-row-features li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.plan-row-price {
  background: var(--dark2);
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.individual-price {
  background: rgba(184, 134, 11, 0.05);
}

.familiar-price {
  background: rgba(60, 160, 60, 0.05);
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  margin-bottom: 2px;
}

.price-from {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  padding-top: 6px;
}

.familiar-price .price-from {
  color: #5ec85e;
}

.price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-bright);
}

.familiar-price .price-big {
  color: #7ee87e;
}

.price-cents {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--gold-bright);
  font-weight: 600;
  padding-top: 6px;
}

.familiar-price .price-cents {
  color: #7ee87e;
}

.price-mo {
  font-size: 11px;
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-row-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.plan-row-cta.outline {
  border: 1px solid rgba(184, 134, 11, 0.45);
  color: var(--gold-light);
}

.plan-row-cta.outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(184, 134, 11, 0.07);
}

.plan-row-cta.solid {
  background: var(--gold);
  color: var(--black);
}

.plan-row-cta.solid:hover {
  background: var(--gold-bright);
}

.plan-row-cta.outline-fam {
  border: 1px solid rgba(60, 160, 60, 0.45);
  color: #5ec85e;
}

.plan-row-cta.outline-fam:hover {
  border-color: #7ee87e;
  color: #7ee87e;
  background: rgba(60, 160, 60, 0.07);
}

.plan-row-cta.solid-fam {
  background: #3ca03c;
  color: #fff;
}

.plan-row-cta.solid-fam:hover {
  background: #4dc84d;
}

@media (max-width: 680px) {
  .plans-header-row {
    grid-template-columns: 1fr 1fr;
  }

  .plans-col-label {
    display: none;
  }

  .plan-row {
    grid-template-columns: 1fr 1fr;
  }

  .plan-row-info {
    grid-column: 1 / -1;
  }
}

/* FORM */
#agendar {
  background: var(--black);
  text-align: center;
}

.form-wrap {
  max-width: 580px;
  margin: 48px auto 0;
  background: var(--dark2);
  padding: 48px 40px;
  border: 1px solid rgba(184, 134, 11, 0.14);
  text-align: left;
}

@media (max-width: 640px) {
  .form-wrap {
    padding: 28px 18px;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 13px 15px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: #1a1a1a;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 17px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--gold-bright);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* FOOTER */
footer {
  background: #060606;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  padding: 64px 48px 32px;
}

@media (max-width: 768px) {
  footer {
    padding: 48px 20px 28px;
  }
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  height: 56px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.8;
  margin-bottom: 20px;
}

.world-krav-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.world-krav-badge a {
  color: var(--gold-bright);
  text-decoration: none;
}

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer ul li svg {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

footer ul li a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.28);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.7;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

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

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

/* MOBILE MENU */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hidden by default on desktop */
.mobile-menu {
  display: none;
}

.mobile-menu-close {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Hide desktop nav links on mobile */
  #navLinks {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

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

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    transition: color 0.2s;
  }

  .mobile-menu a:hover {
    color: var(--gold-bright);
  }

  .mobile-menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
  }

  .mobile-menu-close:hover {
    color: var(--gold-bright);
  }

  .mobile-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 36px !important;
    background: var(--gold);
    color: var(--dark) !important;
    font-size: 22px !important;
    letter-spacing: 3px;
    transition: background 0.2s, transform 0.2s;
  }

  .mobile-cta:hover {
    background: var(--gold-bright);
    color: var(--dark) !important;
    transform: scale(1.03);
  }
}

/* NAV ENHANCED */
nav.scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

nav ul a:not(.nav-cta)::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s;
  margin-top: 2px;
}

nav ul a:not(.nav-cta):hover::after {
  width: 100%;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  fill: #fff;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {

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

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

/* MOD CARD HOVER */
.mod-card {
  transition: background 0.3s, transform 0.3s;
}

.mod-card:hover {
  transform: translateY(-4px);
}

/* TESTIMONIALS */
#depoimentos {
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}

.testimonials-grid {
  max-width: 1140px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 134, 11, 0.12);
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(184, 134, 11, 0.35);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(184, 134, 11, 0.15);
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.68);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--black);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* SCHEDULE */
#horarios {
  background: var(--black);
  text-align: center;
}

.schedule-grid {
  max-width: 800px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.schedule-cell {
  background: var(--dark2);
  padding: 20px 16px;
}

.schedule-cell.header {
  background: rgba(184, 134, 11, 0.12);
  border-top: 2px solid var(--gold);
}

.schedule-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.schedule-time {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 6px;
  line-height: 1.6;
}

@media (max-width: 500px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 89;
  width: 40px;
  height: 40px;
  background: var(--dark2);
  border: 1px solid rgba(184, 134, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(184, 134, 11, 0.15);
  transform: translateY(-2px);
}

.back-to-top svg {
  color: var(--gold);
}

/* FEATURED ROW GLOW */
.plan-row.featured-row {
  position: relative;
}

.plan-row.featured-row::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), transparent, rgba(184, 134, 11, 0.1));
  pointer-events: none;
  z-index: 0;
}