:root {
   --bg: #060606;
   --bg-soft: #101010;
   --panel: rgba(18, 18, 18, 0.82);
   --panel-strong: #171717;
   --panel-alt: #1d1d1d;
   --text: #f5f2ea;
   --muted: #b8b1a3;
   --gold: #d7b35a;
   --gold-soft: #f1d98c;
   --line: rgba(255, 255, 255, 0.09);
   --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
   --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.5);
   --radius: 24px;
   --radius-lg: 32px;
}

* {
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   margin: 0;
   color: var(--text);
   background:
      radial-gradient(circle at top, rgba(215, 179, 90, 0.14), transparent 32%),
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 22%),
      linear-gradient(180deg, #050505 0%, #0b0b0b 38%, #080808 100%);
   font-family: "Segoe UI", Arial, sans-serif;
   line-height: 1.5;
   text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
}

body::before {
   content: "";
   position: fixed;
   inset: 0;
   pointer-events: none;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
   background-size: 72px 72px;
   mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 95%);
   opacity: 0.32;
}

a {
   color: inherit;
}

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

button,
a {
   -webkit-tap-highlight-color: transparent;
}

button {
   font: inherit;
}

.container {
   width: min(1120px, calc(100% - 1.5rem));
   margin: 0 auto;
}

.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

.site-header {
   position: sticky;
   top: 0;
   z-index: 60;
   transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
   background: rgba(6, 6, 6, 0.94);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
   backdrop-filter: blur(16px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   min-height: 4.6rem;
   position: relative;
}

.brand {
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   text-decoration: none;
   font-weight: 800;
   letter-spacing: 0.03em;
   text-transform: uppercase;
}

.brand__logo {
   width: 48px;
   height: 48px;
   object-fit: contain;
   border-radius: 16px;
   background: rgba(255, 255, 255, 0.04);
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 22px rgba(215, 179, 90, 0.16);
   padding: 6px;
}

.brand__text {
   font-size: 0.95rem;
}

.site-nav {
   display: flex;
   align-items: center;
   gap: 0.25rem;
}

.site-nav a {
   text-decoration: none;
   padding: 0.85rem 1rem;
   border-radius: 999px;
   color: var(--muted);
   transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
   color: var(--text);
   background: rgba(255, 255, 255, 0.06);
   transform: translateY(-1px);
}

.nav-toggle {
   display: none;
   width: 3rem;
   height: 3rem;
   border: 1px solid var(--line);
   background: rgba(255, 255, 255, 0.04);
   border-radius: 16px;
   padding: 0.65rem;
   cursor: pointer;
   box-shadow: var(--shadow);
}

.nav-toggle span {
   display: block;
   height: 2px;
   background: var(--text);
   border-radius: 999px;
   margin: 5px 0;
   transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
   position: relative;
   min-height: calc(100svh - 4.6rem);
   display: flex;
   align-items: stretch;
   overflow: hidden;
}

.hero__bg,
.hero__overlay {
   position: absolute;
   inset: 0;
}

.hero__bg {
   background-image: url("../img/home_page2.jpg");
   background-position: center;
   background-size: cover;
   transform: scale(1.05);
   filter: saturate(1.02) contrast(1.05);
}

.hero__overlay {
   background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(4, 4, 4, 0.82) 38%, rgba(4, 4, 4, 0.3) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero__content {
   position: relative;
   z-index: 1;
   padding: clamp(4rem, 10vw, 8rem) 0 4rem;
   display: grid;
   gap: 1.4rem;
   align-content: center;
   max-width: 760px;
}

.eyebrow,
.section__label {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.76rem;
   font-weight: 800;
   color: var(--gold-soft);
}

.hero__logo {
   width: min(150px, 42vw);
   border-radius: 30px;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 34px rgba(215, 179, 90, 0.14);
}

.hero h1,
.section__title,
.plan-card h3,
.schedule-card h3 {
   margin: 0;
   font-family: "Arial Black", Impact, sans-serif;
   letter-spacing: 0.03em;
}

.hero h1 {
   font-size: clamp(2.8rem, 10vw, 6.4rem);
   line-height: 0.92;
   text-transform: uppercase;
   max-width: 11ch;
   text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero p,
.section__text,
.plan-card li,
.contact-chip strong,
.footer__brand p,
.schedule td span {
   color: var(--muted);
}

.hero p {
   margin: 0;
   max-width: 44rem;
   font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero__actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.9rem;
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 3.25rem;
   padding: 0.85rem 1.2rem;
   border-radius: 999px;
   text-decoration: none;
   font-weight: 800;
   border: 1px solid transparent;
   transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
   color: #0d0d0d;
   background: linear-gradient(135deg, var(--gold) 0%, #f5d97d 100%);
   box-shadow: 0 16px 30px rgba(215, 179, 90, 0.25);
}

.btn--primary:hover {
   box-shadow: 0 18px 38px rgba(215, 179, 90, 0.34);
}

.btn--ghost {
   color: var(--text);
   background: rgba(255, 255, 255, 0.05);
   border-color: var(--line);
}

.hero__stats {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 0.85rem;
   margin-top: 0.45rem;
}

.stat,
.intro-band,
.schedule,
.plan-card,
.about__media,
.about__content,
.contact__info,
.contact__map,
.gallery-item,
.site-footer {
   border: 1px solid var(--line);
   background: var(--panel);
   box-shadow: var(--shadow);
   backdrop-filter: blur(12px);
}

.stat {
   border-radius: 20px;
   padding: 1rem;
}

.stat strong {
   display: block;
   font-size: 1.08rem;
   color: var(--text);
   margin-bottom: 0.35rem;
}

.stat span {
   color: var(--muted);
   font-size: 0.94rem;
}

.section {
   padding: clamp(4.25rem, 8vw, 7rem) 0;
   position: relative;
}

.section__header,
.about__content,
.contact__info {
   display: grid;
   gap: 1rem;
}

.section__header {
   max-width: 780px;
   margin-bottom: 1.75rem;
}

.section__title {
   font-size: clamp(2rem, 4vw, 3.5rem);
   text-transform: uppercase;
   line-height: 1;
}

.section__text {
   margin: 0;
   line-height: 1.7;
}

.intro-band {
   border-radius: var(--radius-lg);
   padding: clamp(1.2rem, 3vw, 2rem);
   display: grid;
   gap: 1rem;
}

.grid {
   display: grid;
   gap: 1rem;
}

[hidden] {
   display: none !important;
}

.modalities {
   grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
   position: relative;
   overflow: hidden;
   border-radius: var(--radius-lg);
   min-height: 460px;
   transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
   transform: translateY(-6px);
   border-color: rgba(215, 179, 90, 0.28);
   box-shadow: var(--shadow-strong);
}

.card__media {
   position: relative;
   width: 100%;
   height: 100%;
}

.card__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1);
   transition: transform 0.45s ease, filter 0.45s ease;
}

.card:hover .card__media img {
   transform: scale(1.06);
   filter: saturate(1.05);
}

.card__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0.95) 100%);
}

.card__body {
   position: absolute;
   inset: auto 0 0;
   padding: 1.25rem;
   display: grid;
   gap: 0.55rem;
}

.card__icon {
   width: 46px;
   height: 46px;
   border-radius: 16px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 800;
   color: #111;
   background: linear-gradient(135deg, var(--gold) 0%, #f5d97d 100%);
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 28px rgba(215, 179, 90, 0.18);
}

.card__title {
   margin: 0;
   font-size: 1.5rem;
}

.card__text {
   margin: 0;
   color: rgba(255, 255, 255, 0.8);
}

.schedule {
   border-radius: var(--radius-lg);
   padding: 1.2rem;
}

.schedule__desktop {
   overflow-x: auto;
}

.schedule table {
   width: 100%;
   border-collapse: collapse;
   min-width: 820px;
}

.schedule th,
.schedule td {
   padding: 1rem 0.9rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   text-align: left;
}

.schedule thead th {
   color: var(--gold-soft);
   text-transform: uppercase;
   letter-spacing: 0.14em;
   font-size: 0.76rem;
}

.schedule tbody tr:nth-child(even) {
   background: rgba(255, 255, 255, 0.02);
}

.schedule td,
.schedule th {
   vertical-align: top;
}

.schedule td span {
   display: block;
   font-size: 0.84rem;
}

.schedule__mobile {
   display: none;
   gap: 1rem;
   grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.schedule-card {
   border-radius: 22px;
   padding: 1rem;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-card h3 {
   font-size: 1.25rem;
   margin-bottom: 0.6rem;
}

.schedule-card ul,
.plan-card ul {
   margin: 0;
   padding-left: 1.1rem;
}

.schedule-card li,
.plan-card li {
   margin-bottom: 0.45rem;
}

.plans {
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   align-items: stretch;
}

.plan-card {
   border-radius: var(--radius-lg);
   padding: 1.5rem;
   display: grid;
   gap: 1rem;
   position: relative;
   overflow: hidden;
}

.plan-card > * {
   position: relative;
   z-index: 1;
}

.plan-card::after {
   content: "";
   position: absolute;
   inset: auto -18% -34% auto;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(215, 179, 90, 0.24), transparent 70%);
   pointer-events: none;
}

.plan-card__label {
   display: inline-flex;
   width: fit-content;
   padding: 0.45rem 0.8rem;
   border-radius: 999px;
   background: rgba(215, 179, 90, 0.12);
   color: var(--gold-soft);
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.72rem;
}

.plan-card__label--elite {
   background: rgba(255, 215, 120, 0.12);
   color: #ffe39a;
   border-color: rgba(255, 215, 120, 0.22);
}

.plan-card__badge {
   position: absolute;
   top: 1.25rem;
   right: 1.25rem;
   display: inline-flex;
   align-items: center;
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   background: linear-gradient(135deg, #ffe8a6 0%, #d7b35a 100%);
   color: #111;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.68rem;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 24px rgba(215, 179, 90, 0.22);
}

.plan-card__badge--deal {
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 18px rgba(215, 179, 90, 0.16);
   opacity: 0.95;
}

.plan-card h3 {
   font-size: 1.8rem;
}

.plan-card__price {
   font-family: "Arial Black", Impact, sans-serif;
   font-size: clamp(2rem, 4vw, 3rem);
   color: var(--text);
}

.plan-card__price span {
   display: block;
   font-family: "Segoe UI", Arial, sans-serif;
   font-size: 0.9rem;
   color: var(--muted);
   font-weight: 600;
   margin-top: 0.2rem;
}

.plan-card__highlight {
   margin: -0.35rem 0 0;
   color: var(--gold-soft);
   font-weight: 800;
   letter-spacing: 0.02em;
}

.plan-price {
   display: grid;
   gap: 0.3rem;
}

.plan-price__main {
   display: inline-flex;
   align-items: flex-end;
   gap: 0.45rem;
}

.plan-price__currency {
   font-weight: 900;
   letter-spacing: 0.02em;
   color: var(--muted);
   font-size: 1.1rem;
   transform: translateY(-0.35rem);
}

.plan-price__value {
   font-family: "Arial Black", Impact, sans-serif;
   font-size: clamp(2.6rem, 5vw, 3.7rem);
   line-height: 1;
   color: var(--text);
}

.plan-price__period {
   font-size: 0.95rem;
   color: var(--muted);
   font-weight: 700;
}

.plan-price__meta {
   font-size: 0.92rem;
   color: rgba(184, 177, 163, 0.92);
   font-weight: 650;
   line-height: 1.35;
}

.plan-price__total {
   color: var(--muted);
   font-weight: 800;
}

.plan-price--elite .plan-price__currency,
.plan-price--elite .plan-price__period,
.plan-price--elite .plan-price__meta {
   color: rgba(241, 217, 140, 0.92);
}

.plan-price--elite .plan-price__total {
   color: rgba(241, 217, 140, 0.86);
}

.plan-card__pills {
   display: flex;
   flex-wrap: wrap;
   gap: 0.45rem;
   margin-top: -0.15rem;
}

.plan-pill {
   display: inline-flex;
   align-items: center;
   padding: 0.4rem 0.7rem;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, 0.08);
   background: rgba(255, 255, 255, 0.035);
   color: var(--muted);
   font-weight: 800;
   letter-spacing: 0.02em;
   font-size: 0.78rem;
}

.plan-pill--gold {
   background: rgba(215, 179, 90, 0.14);
   border-color: rgba(215, 179, 90, 0.22);
   color: var(--gold-soft);
}

.plan-card--featured {
   border-color: rgba(215, 179, 90, 0.34);
   box-shadow: 0 0 0 1px rgba(215, 179, 90, 0.24), 0 34px 80px rgba(215, 179, 90, 0.22), 0 0 60px rgba(215, 179, 90, 0.16), var(--shadow-strong);
   transform: translateY(-8px) scale(1.04);
}

.plan-card--discipline {
   border-color: rgba(215, 179, 90, 0.18);
   box-shadow: 0 0 0 1px rgba(215, 179, 90, 0.08), 0 18px 44px rgba(0, 0, 0, 0.4);
   background:
      linear-gradient(180deg, rgba(215, 179, 90, 0.035), rgba(10, 10, 10, 0.94)),
      var(--panel);
}

.plan-card--discipline::after {
   background: radial-gradient(circle, rgba(215, 179, 90, 0.22), transparent 70%);
}

.plan-card--featured::after {
   background: radial-gradient(circle, rgba(215, 179, 90, 0.34), transparent 70%);
}

.plan-card--featured:hover,
.plan-card--elite:hover {
   transform: translateY(-8px) scale(1.03);
}

.plan-card--elite {
   border-color: rgba(215, 179, 90, 0.42);
   background:
      linear-gradient(180deg, rgba(255, 228, 160, 0.03), rgba(10, 10, 10, 0.94)),
      var(--panel);
   box-shadow: 0 0 0 1px rgba(215, 179, 90, 0.18), 0 22px 54px rgba(0, 0, 0, 0.45);
}

.plan-card--elite::after {
   background: radial-gradient(circle, rgba(255, 228, 160, 0.28), transparent 70%);
}

.plan-card--couple-elite {
   background:
      linear-gradient(180deg, rgba(255, 228, 160, 0.045), rgba(10, 10, 10, 0.95)),
      var(--panel);
}

.plans-advanced__toggle {
   display: flex;
   justify-content: center;
   margin-top: 1.35rem;
}

.plans-toggle {
   width: min(420px, 100%);
}

.plans--advanced {
   margin-top: 1.1rem;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card--advanced {
   padding: 1.25rem;
}

.plan-card--advanced h3 {
   font-size: 1.6rem;
}

.section__footer {
   margin-top: 1.5rem;
   display: flex;
   justify-content: center;
}

@media (min-width: 960px) {
   .plans {
      grid-template-columns: repeat(3, minmax(0, 1fr));
   }

   .plan-card--featured {
      grid-column: 2;
      grid-row: 1;
   }

   .plan-card--discipline {
      grid-column: 2;
      grid-row: 2;
   }

   .plans--advanced {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
}

.about__grid,
.contact__grid {
   display: grid;
   gap: 1rem;
   grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about__media,
.contact__map {
   border-radius: var(--radius-lg);
   overflow: hidden;
}

.about__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   min-height: 460px;
}

.about__content,
.contact__info {
   border-radius: var(--radius-lg);
   padding: clamp(1.2rem, 3vw, 2rem);
}

.stats-grid {
   display: grid;
   gap: 0.85rem;
   grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-stat {
   border-radius: 18px;
   padding: 1rem;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat strong {
   display: block;
   font-size: 1.55rem;
   color: var(--gold-soft);
   margin-bottom: 0.25rem;
}

.gallery-grid {
   display: grid;
   gap: 0.9rem;
   grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
   position: relative;
   display: block;
   width: 100%;
   padding: 0;
   border: 0;
   border-radius: 22px;
   overflow: hidden;
   aspect-ratio: 1 / 1;
   cursor: pointer;
}

.gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35));
   opacity: 0;
   transition: opacity 0.3s ease;
}

.gallery-item:hover img {
   transform: scale(1.07);
   filter: saturate(1.03);
}

.gallery-item:hover::after {
   opacity: 1;
}

.contact__info,
.contact__map {
   min-height: 100%;
}

.contact__map iframe {
   width: 100%;
   height: 100%;
   min-height: 520px;
   border: 0;
}

.contact-list {
   display: grid;
   gap: 0.9rem;
}

.contact-chip {
   display: grid;
   gap: 0.2rem;
   padding: 1rem 1.1rem;
   border-radius: 18px;
   text-decoration: none;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.06);
   transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.contact-chip:hover {
   transform: translateY(-2px);
   border-color: rgba(215, 179, 90, 0.22);
   background: rgba(255, 255, 255, 0.06);
}

.contact-chip span {
   color: var(--gold-soft);
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.72rem;
   font-weight: 800;
}

.contact__cta {
   width: fit-content;
}

.site-footer {
   border-width: 1px 0 0;
   background: rgba(8, 8, 8, 0.96);
   margin-top: 1rem;
}

.footer__inner {
   display: grid;
   gap: 1.2rem;
   grid-template-columns: 1.25fr 1fr 1fr;
   padding: 2rem 0 1.5rem;
}

.footer__brand {
   display: flex;
   gap: 0.9rem;
   align-items: center;
}

.footer__brand img {
   width: 64px;
   height: 64px;
   object-fit: contain;
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.04);
   padding: 0.4rem;
}

.footer__brand strong {
   display: block;
   font-size: 1.05rem;
   margin-bottom: 0.2rem;
}

.footer__links,
.footer__social {
   display: grid;
   gap: 0.5rem;
   align-content: start;
}

.footer__links a,
.footer__social a,
.footer__bottom a {
   color: var(--muted);
   text-decoration: none;
   width: fit-content;
}

.footer__links a:hover,
.footer__social a:hover,
.footer__bottom a:hover {
   color: var(--gold-soft);
}

.footer__bottom {
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   padding: 0 0 1.5rem;
   color: var(--muted);
   border-top: 1px solid rgba(255, 255, 255, 0.06);
   padding-top: 1rem;
}

.floating-whatsapp {
   position: fixed;
   right: 1rem;
   bottom: 1rem;
   z-index: 70;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.95rem 1.1rem;
   border-radius: 999px;
   text-decoration: none;
   font-weight: 800;
   color: #111;
   background: linear-gradient(135deg, #ffe394 0%, #d7b35a 100%);
   box-shadow: 0 16px 34px rgba(215, 179, 90, 0.32);
}

.floating-whatsapp:hover {
   transform: translateY(-2px);
}

.page-hero {
   position: relative;
   overflow: hidden;
   padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.page-hero__panel {
   position: relative;
   overflow: hidden;
   border-radius: var(--radius-lg);
   border: 1px solid var(--line);
   background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.6), rgba(8, 8, 8, 0.92)),
      url("../img/francis1.jpg") center/cover;
   box-shadow: var(--shadow-strong);
}

.page-hero__panel::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.35) 100%),
      radial-gradient(circle at top right, rgba(215, 179, 90, 0.22), transparent 28%);
}

.page-hero__content {
   position: relative;
   z-index: 1;
   padding: clamp(2rem, 5vw, 4rem);
   display: grid;
   gap: 1rem;
   max-width: 48rem;
}

.page-hero__title {
   margin: 0;
   font-family: "Arial Black", Impact, sans-serif;
   font-size: clamp(2.2rem, 6vw, 4.6rem);
   line-height: 0.95;
   text-transform: uppercase;
}

.page-hero__text {
   margin: 0;
   max-width: 34rem;
   color: var(--muted);
   font-size: 1.04rem;
}

.page-hero__chips {
   display: flex;
   flex-wrap: wrap;
   gap: 0.65rem;
}

.page-chip {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   padding: 0.65rem 0.95rem;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.08);
   color: var(--text);
   text-decoration: none;
   font-weight: 700;
}

.teachers-toolbar {
   display: grid;
   gap: 0.9rem;
   margin-bottom: 1.3rem;
}

.teacher-filters {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
}

.filter-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 2.8rem;
   padding: 0.7rem 1rem;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   background: rgba(255, 255, 255, 0.04);
   color: var(--text);
   cursor: pointer;
   font-weight: 800;
   transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
   transform: translateY(-2px);
   color: #111;
   background: linear-gradient(135deg, var(--gold) 0%, #f5d97d 100%);
   border-color: rgba(215, 179, 90, 0.6);
}

.teacher-grid {
   display: grid;
   gap: 1rem;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.teacher-card {
   overflow: hidden;
   border-radius: var(--radius-lg);
   border: 1px solid var(--line);
   background: var(--panel);
   box-shadow: var(--shadow);
   transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.teacher-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-strong);
}

.teacher-card.is-hidden {
   opacity: 0;
   transform: translateY(18px) scale(0.98);
   filter: saturate(0.8);
   pointer-events: none;
}

.teacher-card[hidden] {
   display: none;
}

.teacher-card__media {
   position: relative;
   aspect-ratio: 4 / 3;
   overflow: hidden;
}

.teacher-card__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease;
}

.teacher-card:hover .teacher-card__media img {
   transform: scale(1.05);
}

.teacher-card__media::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.68) 100%);
}

.teacher-card__body {
   position: relative;
   padding: 1.15rem 1.15rem 1.25rem;
   display: grid;
   gap: 0.85rem;
}

.teacher-card__top {
   display: grid;
   gap: 0.5rem;
}

.teacher-card__name {
   margin: 0;
   font-size: 1.55rem;
   line-height: 1.1;
}

.teacher-card__specialty {
   margin: 0;
   color: var(--gold-soft);
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: 0.74rem;
}

.teacher-card__summary {
   margin: 0;
   color: var(--text);
   font-weight: 700;
}

.teacher-card__bio {
   margin: 0;
   color: var(--muted);
   line-height: 1.72;
}

.teacher-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
}

.teacher-badge {
   display: inline-flex;
   align-items: center;
   padding: 0.42rem 0.72rem;
   border-radius: 999px;
   background: rgba(215, 179, 90, 0.12);
   border: 1px solid rgba(215, 179, 90, 0.18);
   color: var(--gold-soft);
   font-weight: 800;
   font-size: 0.74rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
}

.teacher-card__actions {
   display: flex;
   justify-content: flex-start;
}

.teacher-card__link {
   min-height: 2.85rem;
   padding-inline: 1rem;
}

.teachers-empty {
   display: none;
   padding: 1rem 1.1rem;
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   color: var(--muted);
}

.teachers-empty.is-visible {
   display: block;
}

.gallery-modal {
   position: fixed;
   inset: 0;
   z-index: 90;
   display: grid;
   place-items: center;
   padding: 1rem;
}

.gallery-modal[hidden] {
   display: none;
}

.gallery-modal__backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.82);
   backdrop-filter: blur(8px);
}

.gallery-modal__dialog {
   position: relative;
   z-index: 1;
   width: min(940px, 100%);
   max-height: min(86vh, 900px);
   border-radius: 28px;
   overflow: hidden;
   background: #080808;
   border: 1px solid rgba(255, 255, 255, 0.08);
   box-shadow: var(--shadow-strong);
}

.gallery-modal__dialog img {
   width: 100%;
   height: 100%;
   max-height: 86vh;
   object-fit: contain;
   background: #080808;
}

.gallery-modal__close {
   position: absolute;
   top: 0.85rem;
   right: 0.85rem;
   z-index: 2;
   width: 2.8rem;
   height: 2.8rem;
   border: 0;
   border-radius: 999px;
   color: var(--text);
   background: rgba(10, 10, 10, 0.65);
   cursor: pointer;
   font-size: 1.6rem;
   line-height: 1;
}

[data-reveal] {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
   opacity: 1;
   transform: translateY(0);
}

@media (max-width: 980px) {
   .site-nav {
      position: absolute;
      left: 1rem;
      right: 1rem;
      top: calc(100% + 0.75rem);
      display: grid;
      gap: 0.25rem;
      padding: 0.8rem;
      border-radius: 24px;
      background: rgba(8, 8, 8, 0.97);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-strong);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity 0.25s ease, transform 0.25s ease;
   }

   .site-nav.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
   }

   .nav-toggle {
      display: inline-block;
   }

   .hero__stats,
   .modalities,
   .plans,
   .gallery-grid,
   .stats-grid,
   .footer__inner,
   .about__grid,
   .contact__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .about__media img,
   .contact__map iframe {
      min-height: 360px;
   }
}

@media (max-width: 700px) {
   .hero {
      min-height: auto;
   }

   .hero__content {
      padding: 4.2rem 0 3.8rem;
   }

   .hero__stats,
   .modalities,
   .plans,
   .gallery-grid,
   .stats-grid,
   .footer__inner,
   .about__grid,
   .contact__grid {
      grid-template-columns: 1fr;
   }

   .hero h1 {
      max-width: 100%;
   }

   .brand__text {
      display: none;
   }

   .card {
      min-height: 390px;
   }

   .schedule__desktop {
      display: none;
   }

   .schedule__mobile {
      display: grid;
   }

   .footer__bottom {
      flex-direction: column;
   }

   .floating-whatsapp {
      right: 0.8rem;
      bottom: 0.8rem;
   }

   .page-hero__content {
      padding: 1.4rem;
   }

   .teacher-filters {
      gap: 0.55rem;
   }

   .filter-btn {
      width: 100%;
   }
}

@media (prefers-reduced-motion: reduce) {
   html {
      scroll-behavior: auto;
   }

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