
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
  --red:#FF0000;
  --dark:#323232;
  --medium:#5A5A5A;
  --light:#EBEBEB;
  --white:#FFFFFF;
  --black:#070707;
  --max:1380px;
}

*{box-sizing:border-box}

html{
  background:var(--black);
  color:var(--white);
  font-family:Montserrat,Arial,sans-serif;
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 88% 10%,rgba(255,0,0,.14),transparent 28rem),
    radial-gradient(circle at 8% 88%,rgba(255,0,0,.08),transparent 28rem),
    linear-gradient(180deg,#070707 0%,#111 46%,#080808 100%);
}

a{color:inherit}

.shell{min-height:100vh;display:flex;flex-direction:column}

.header{
  width:min(var(--max),calc(100% - 56px));
  margin:0 auto;
  min-height:84px;
  display:grid;
  grid-template-columns:260px 1fr auto;
  align-items:center;
  gap:28px;
}

.logo{
  width:225px;
  height:auto;
  display:block;
}

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

.nav a{
  font-family:"Bebas Neue",Impact,sans-serif;
  text-decoration:none;
  font-size:26px;
  letter-spacing:.025em;
  line-height:1;
  opacity:.95;
  transition:color .18s ease,opacity .18s ease;
}

.nav a:hover,
.nav a.active{color:var(--red);opacity:1}

.menu-cta,
.header-cta,
.cta{
  min-height:48px;
  padding:12px 22px;
  border-radius:999px;
  background:var(--red);
  color:var(--white);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:23px;
  letter-spacing:.02em;
}

.main{
  flex:1;
  width:min(var(--max),calc(100% - 56px));
  margin:0 auto;
  padding:22px 0 72px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
  color:var(--light);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.32em;
  font-weight:900;
}

.kicker:before{content:"";width:56px;height:2px;background:var(--red)}

h1,h2,h3{
  margin:0;
  font-family:"Bebas Neue",Impact,sans-serif;
  font-weight:400;
  letter-spacing:.01em;
  line-height:.86;
}

h1{font-size:clamp(68px,8.8vw,142px)}
h2{font-size:clamp(52px,6.7vw,104px)}
h3{font-size:clamp(42px,4.6vw,72px)}

.red{color:var(--red)}

.lead{
  max-width:820px;
  margin:24px 0 0;
  color:var(--light);
  font-size:clamp(17px,1.45vw,22px);
  line-height:1.55;
}

.hero,
.hero.compact,
.horarios-hero,
.class-section{
  min-height:auto;
  padding-top:0;
}

.hero-card,
.hero.compact > div,
.horarios-hero > div{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(235,235,235,.10);
  padding:34px 36px 38px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.065),rgba(255,255,255,.018)),
    radial-gradient(circle at 88% 24%,rgba(255,0,0,.16),transparent 19rem),
    rgba(50,50,50,.26);
  animation:fadeUp .45s ease both;
}

/* Hero do clube (página de horário) — aproximado ao hero do amazingym.pt:
   secção quase a ecrã inteiro, letra enorme, muito espaço à volta,
   fundo escuro com atmosfera vermelha e vinheta. */
.club-hero{
  position:relative;
  overflow:hidden;
  min-height:min(82vh,820px);
  display:flex;
  align-items:flex-end;
  border-radius:36px;
  border:1px solid rgba(235,235,235,.08);
  padding:7vw 6vw 6vw;
  margin-top:18px;
  background:
    linear-gradient(0deg,rgba(7,7,7,.92) 0%,rgba(7,7,7,.55) 55%,rgba(7,7,7,.35) 100%),
    radial-gradient(circle at 86% 12%,rgba(255,0,0,.30),transparent 34rem),
    radial-gradient(circle at 10% 100%,rgba(255,0,0,.10),transparent 30rem),
    linear-gradient(150deg,#1c0707 0%,#0c0c0c 55%,#070707 100%);
  animation:fadeUp .45s ease both;
}

.club-hero > *{position:relative;z-index:1}

.club-hero h1{
  font-size:clamp(64px,11.5vw,196px);
  line-height:.92;
  max-width:17.5ch;
}

.club-hero .kicker{margin-bottom:30px}

.hero-card .brand-mark,
.club-card .mark,
.visual-logo-bg{
  position:absolute;
  opacity:.035;
  filter:grayscale(1) brightness(2);
  pointer-events:none;
}

.hero-card .brand-mark,
.visual-logo-bg{
  right:-8%;
  bottom:-20%;
  width:min(620px,58vw);
}

.hero-slogan,
.lead--hero{
  font-family:Montserrat,Arial,sans-serif;
  font-weight:800;
  text-transform:uppercase;
  font-size:clamp(16px,1.7vw,22px);
  line-height:1.5;
  letter-spacing:.01em;
  color:var(--white);
  margin-top:clamp(28px,4vw,52px);
  max-width:680px;
}

.back{
  display:inline-flex;
  color:var(--light);
  text-decoration:none;
  font-weight:900;
  margin-bottom:24px;
  font-size:14px;
}

.club-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}

.club-tab{
  border:1px solid rgba(235,235,235,.18);
  background:rgba(235,235,235,.045);
  color:var(--white);
  border-radius:999px;
  padding:12px 18px;
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:24px;
  letter-spacing:.02em;
  text-decoration:none;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,transform .18s ease,color .18s ease;
}

.club-tab:hover{
  transform:translateY(-2px);
  border-color:rgba(255,0,0,.62);
}

.club-tab.active{
  background:var(--red);
  border-color:var(--red);
  color:var(--white);
}

.schedule-card,
.schedule-cta,
.schedule-cta--clean,
.schedule-cta--priority{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:28px;
  margin:28px 0 42px;
  padding:30px 34px;
  border-radius:28px;
  border:1px solid rgba(235,235,235,.12);
  background:
    linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.018)),
    radial-gradient(circle at 88% 22%,rgba(255,0,0,.16),transparent 14rem),
    rgba(50,50,50,.22);
  animation:fadeUp .45s ease both;
}

.schedule-card p,
.schedule-cta p{
  max-width:680px;
  margin:12px 0 0;
  color:var(--light);
  font-size:17px;
  line-height:1.5;
}

.btn{
  min-height:58px;
  padding:16px 28px;
  border-radius:999px;
  border:1px solid rgba(235,235,235,.22);
  background:transparent;
  color:var(--white);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:28px;
  letter-spacing:.02em;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.btn.primary{
  background:var(--red);
  border-color:var(--red);
  box-shadow:0 18px 54px rgba(255,0,0,.17);
}

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

.section-head,
.split-title{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:28px;
  margin:38px 0 22px;
}

.section-head p,
.split-title p{
  max-width:520px;
  margin:0;
  color:var(--light);
  line-height:1.55;
  font-size:16px;
}

.class-grid,
.class-grid--modalidades{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.class-card,
.class-card--compact{
  min-height:136px;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(235,235,235,.105);
  background:
    linear-gradient(160deg,rgba(255,255,255,.065),rgba(255,255,255,.02)),
    radial-gradient(circle at 86% 14%,rgba(255,0,0,.10),transparent 7rem),
    rgba(50,50,50,.24);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
  animation:fadeUp .45s ease both;
}

.class-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,0,0,.64);
  background:
    linear-gradient(160deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),
    radial-gradient(circle at 86% 14%,rgba(255,0,0,.18),transparent 8rem),
    rgba(50,50,50,.30);
}

.class-card strong{
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:33px;
  line-height:.92;
  font-weight:400;
}

.class-card span{
  color:var(--light);
  font-size:13px;
  line-height:1.45;
}

.club-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:28px;
}

.club-card{
  min-height:260px;
  border-radius:28px;
  padding:26px;
  color:var(--white);
  text-decoration:none;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid rgba(235,235,235,.12);
  background:
    linear-gradient(160deg,rgba(255,255,255,.065),rgba(255,255,255,.018)),
    radial-gradient(circle at 86% 18%,rgba(255,0,0,.13),transparent 11rem),
    rgba(50,50,50,.24);
  transition:transform .18s ease,border-color .18s ease;
}

.club-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,0,0,.64);
}

.club-card .mark{
  right:-32%;
  bottom:-18%;
  width:95%;
}

.club-card > *:not(.mark){position:relative;z-index:1}

.label{
  color:var(--light);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-weight:900;
}

.club-name{
  margin-top:14px;
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:clamp(52px,4.2vw,76px);
  line-height:.84;
}

.linkish{
  color:var(--red);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.08em;
  font-size:14px;
}

.footer{
  width:min(var(--max),calc(100% - 56px));
  margin:0 auto;
  padding:30px 0 38px;
  border-top:1px solid rgba(235,235,235,.13);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:rgba(235,235,235,.66);
  font-size:13px;
}

.app-hero,
.hero:not(.compact){
  min-height:calc(100vh - 150px);
  display:grid;
  grid-template-columns:1fr .8fr;
  align-items:center;
  gap:64px;
}

.visual,
.hero-visual{
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.015)),
    radial-gradient(circle at 76% 18%,rgba(255,0,0,.22),transparent 14rem),
    rgba(50,50,50,.26);
  border:1px solid rgba(235,235,235,.12);
}

.visual img,
.hero-visual img{
  position:absolute;
  right:-12%;
  bottom:-10%;
  width:80%;
  opacity:.045;
  filter:grayscale(1) brightness(2);
}

.visual-copy{
  position:absolute;
  left:34px;
  right:34px;
  bottom:34px;
}

.visual-copy small{
  display:block;
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  margin-bottom:10px;
}

.visual-copy strong{
  font-family:"Bebas Neue",Impact,sans-serif;
  font-size:clamp(48px,4.8vw,80px);
  line-height:.86;
  font-weight:400;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:1100px){
  .header{
    min-height:auto;
    padding:24px 0 14px;
    grid-template-columns:1fr;
  }
  .logo{width:210px}
  .nav{justify-content:flex-start;flex-wrap:wrap}
  .menu-cta,.header-cta{display:none}
  .schedule-card,.schedule-cta{grid-template-columns:1fr}
  .class-grid,.class-grid--modalidades{grid-template-columns:repeat(3,1fr)}
  .club-grid{grid-template-columns:repeat(2,1fr)}
  .app-hero,.hero:not(.compact){grid-template-columns:1fr}
}

@media(max-width:680px){
  .header,.main,.footer{width:min(100% - 30px,var(--max))}
  .logo{width:176px}
  .nav{gap:18px}
  .nav a{font-size:22px}
  .main{padding-top:18px}
  .kicker{letter-spacing:.16em;font-size:11px}
  .kicker:before{width:42px}
  .hero-card,
  .hero.compact > div,
  .horarios-hero > div{
    padding:28px 22px;
    border-radius:26px;
  }
  .club-hero{
    min-height:auto;
    padding:40px 22px 32px;
    border-radius:26px;
  }
  .club-hero h1{font-size:clamp(44px,15vw,72px)}
  .club-hero .kicker{margin-bottom:18px}
  .hero-slogan,.lead--hero{font-size:15px;margin-top:22px}
  .club-tabs{gap:8px}
  .club-tab{font-size:20px;padding:10px 13px}
  .schedule-card,.schedule-cta{padding:26px 22px;margin-top:22px}
  .schedule-card .btn,.schedule-cta .btn{width:100%}
  .section-head,.split-title{display:block}
  .section-head p,.split-title p{margin-top:12px}
  .class-grid,.class-grid--modalidades,.club-grid{grid-template-columns:1fr}
  .class-card{min-height:112px}
  .club-card{min-height:190px}
  .footer{display:block}
  .footer span{display:block;margin:8px 0}
}
