/* Botón de hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }
  .nav-links {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--bg, #0d0d10);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(40px, auto);
    place-items: center;
    gap: 16px 12px;
    padding: 24px 0;
    display: none;
    z-index: 10;
  }
  .nav-links.is-open {
    display: grid;
  }
}
.container.nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
.brand {
  margin-left: 24px;
}
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav-actions {
  margin-right: 24px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.container.nav {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 780px) {
  .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .nav-social {
    display: none;
  }
  .nav-links {
    flex: 1 1 100%;
    justify-content: center;
    margin: 0;
  }
  .brand {
    margin-right: 0;
  }
}
@media (max-width: 780px) {
  .nav-actions {
    flex-direction: row-reverse;
  }
}
:root {
  --bg: #0d0d10;
  --card: #15151c;
  --card-2: #1b1b24;
  --border: #24242f;
  --muted: #c6c6d1;
  --text: #f5f5f7;
  --red: #e50914;
  --red-dark: #b00810;
  --red-2: #ff3b3f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 16px;
}

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

body {
  font-family: "Bebas Neue", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(229, 9, 20, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(229, 9, 20, 0.18), transparent 30%),
    #0a0a0d;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 64px;
}
img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--red-2);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 13, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.topbar-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  font-family: "Bebas Neue", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(90deg, #f5071c, #f5071c);
  color: #fff;
  padding: 0;
}

.topbar-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.7);
  top: 50%;
  transform: translateY(-50%);
}

.topbar-line.top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.topbar-line.bottom {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar-label {
  display: inline-block;
  line-height: 1;
  padding: 1px 6px;
  background: linear-gradient(135deg, #f5071c, #f5071c);
  position: relative;
  z-index: 1;
}

.topbar-line.top .top-label {
  transform: translateX(18vw);
}

.topbar-line.bottom .bottom-label {
  transform: translateX(-18vw);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  position: relative;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 13, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  margin-left: 0;
}

.nav-toggle:hover {
  background: rgba(10, 10, 13, 1);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle:active {
  transform: translateY(1px);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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


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

.brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -14px;
  margin-bottom: -14px;
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: 40px;
  height: 40px;
  padding: 0 10px 0 160px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), #7a0006);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 8px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.6);
}

.brand-title {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  letter-spacing: 0.4px;
  font-size: 22px;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, var(--red), #7a0006);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-size: 18px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.35), rgba(229, 9, 20, 0.18));
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.32);
  outline: none;
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.45), rgba(229, 9, 20, 0.24));
  box-shadow: 0 10px 32px rgba(229, 9, 20, 0.36);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(229, 9, 20, 0.24);
  outline: none;
}

.icon-btn:active {
  transform: translateY(1px);
}

.icon-btn svg,
.btn .icon-24 svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-btn .icon-tiktok {
  transition: color 0.2s;
}
.icon-btn:hover .icon-tiktok {
  color: var(--red-2);
}

.btn .icon-24 {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-icon {
  padding: 12px;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
}

.btn:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.22);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), #7a0006);
  color: #fff;
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(229, 9, 20, 0.4);
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 14px;
  letter-spacing: -0.5px;
}

.hero-copy .lede {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-copy .lede.secondary {
  margin-top: -6px;
}

.hero-points {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 6px 0 18px;
}

@media (max-width: 780px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .hero-copy .lede {
    font-size: 15px;
  }

  .hero {
    padding-top: 48px;
  }
}

.eyebrow {
  color: var(--red-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.highlight-card {
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.value {
  font-weight: 700;
}

.hero-media .media-card {
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.06), rgba(21, 21, 28, 0.95)),
    radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.18), transparent 42%),
    var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-top {
  padding: 18px 18px 8px;
}

.media-tag {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.media-title {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 6px;
}

.media-sub {
  color: var(--muted);
  font-size: 14px;
}

.media-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 30% 40%, rgba(229, 9, 20, 0.35), rgba(21, 21, 28, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 14px 18px;
  border-radius: 14px;
  overflow: hidden;
}

.media-video[data-video-type="facebook"] {
  aspect-ratio: 9 / 16;
  width: min(420px, 100%);
  margin-inline: auto;
}

.media-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.28), rgba(0, 0, 0, 0.7));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.4), rgba(0, 0, 0, 0.75));
}

.play-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.media-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 12px 18px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews {
  padding-top: 20px;
}

.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: "\201C";
  position: absolute;
  top: -22px;
  right: 16px;
  font-size: 96px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  font-family: "Bebas Neue", "Manrope", sans-serif;
}

.review-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, var(--red), #7a0006);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.28);
}
.review-name {
  font-weight: 700;
}

.review-meta {
  color: var(--muted);
  font-size: 13px;
}

.review-meta.stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.review-meta.stars span:first-child {
  color: var(--red-2);
  letter-spacing: 1px;
}

.score {
  color: var(--text);
}

.review-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-quote {
  font-size: 15px;
  color: #f3f3f5;
  line-height: 1.6;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 6px 0;
}

.lede {
  color: var(--muted);
}

.lede.small {
  font-size: 14px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.coach-list {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .card-grid.coach-list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid.coach-list {
    grid-template-columns: 1fr;
  }
}

.card, .coach-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card h3, .coach-name {
  margin: 10px 0 8px;
  letter-spacing: -0.1px;
  font-size: 21px;
}

.card p, .coach-card p {
  color: var(--muted);
  font-size: 14px;
}

.card ul {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.card ul li::before {
  content: "•";
  color: var(--red-2);
  margin-right: 8px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.35);
}

.schedule {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.schedule-block {
  background: var(--card-2);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-block h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.schedule-block p {
  color: var(--muted);
  font-size: 14px;
}

.coach-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(26, 26, 36, 0.98), rgba(12, 12, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: coach-card-fade 0.7s ease both;
}

.coach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.25), transparent 45%);
  opacity: 0.35;
  pointer-events: none;
}


.coach-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 26px 60px rgba(229, 9, 20, 0.25);
}

.coach-avatar {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  background: #101016;
  border: none;
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.18);
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coach-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 70%);
}

.coach-card:hover .coach-avatar {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.35);
}

.coach-role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.coach-name {
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.coach-card p {
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.coach-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 0;
}

.coach-badges li {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-body {
  position: relative;
  z-index: 1;
}

@keyframes coach-card-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .coach-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .coach-avatar {
    width: 100%;
    height: 320px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding-top: 70%;
  border-radius: 16px;
  background-image: var(--img, none), linear-gradient(135deg, rgba(229, 9, 20, 0.25), rgba(0, 0, 0, 0.65));
  background-size: cover, cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.gallery-item.video {
  display: grid;
  place-items: center;
  padding-top: 0;
  aspect-ratio: 16 / 9;
}

.gallery-item.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.embed-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
}

.embed-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.embed-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.22), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tiktok-frame {
  aspect-ratio: 9 / 16;
  padding: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.tiktok-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  transform: scale(1.22);
  transform-origin: center;
}

@media (max-width: 540px) {
  .tiktok-frame iframe {
    transform: scale(1.12);
  }
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.cta-banner {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner__inner {
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.25), rgba(10, 10, 13, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a svg {
  width: 26px;
  height: 26px;
  fill: var(--muted);
  transition: fill 0.2s ease, transform 0.2s ease;
}

.socials a:hover svg {
  fill: var(--text);
  transform: translateY(-1px);
}

.map {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  min-height: 280px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  background: #0a0a0d;
}

.footer-content {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  color: var(--muted);
  align-items: center;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-social {
  text-align: right;
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-social {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .topbar-line {
    font-size: 14px;
    padding: 2px 0;
  }

  .topbar-line::after {
    height: 2px;
  }

  .topbar-label {
    padding: 1px 4px;
  }

  .brand-logo {
    height: 74px;
    margin-top: -4px;
    margin-bottom: -4px;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    row-gap: 6px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
    gap: 10px 12px;
    padding: 0 8px;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(10, 10, 13, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.18s ease, margin 0.18s ease, padding 0.18s ease;
  }

  .nav-links.is-open {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
    padding: 6px 8px;
    margin-top: 8px;
    margin-bottom: 6px;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    font-size: 15px;
    padding: 8px 10px;
    text-align: center;
  }

  .nav-links a:nth-child(4) {
    grid-column: 1;
  }

  .nav-links a:nth-child(5) {
    grid-column: 2;
  }

  .nav-links a:nth-child(n + 4) {
    flex: 0 1 42%;
  }

  .topbar .btn.primary:not(.btn-whatsapp) {
    display: none;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .nav-social {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 40px;
  }

  .hero {
    padding-top: 40px;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list li {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}
