@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&display=swap');:root {  
  --red: #C1121F;  
  --white: #FFFFFF;  
  --black: #000000;  
  --bg: #050505;  
  --panel: #0B0B0B;  
  --panel-2: #111111;  
  --line: rgba(255, 255, 255, 0.10);  
  --line-strong: rgba(255, 255, 255, 0.18);  
  --text-soft: #CFCFCF;  
  --text-muted: #9F9F9F;  
  --radius-xl: 28px;  
  --radius-lg: 20px;  
  --radius-md: 14px;  
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);  
  --max: 1360px;  
}  

p {

    font-size: 20px;
}

.membership-section,
.modalidades-section{
    padding:50px 30px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:var(--red);
    text-transform:uppercase;
    letter-spacing:3px;
}

.section-title h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:4rem;
    margin-top:10px;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.plan-card{
    background:rgba(255,255,255,.02);
    border:1px solid var(--line);
    border-radius:24px;
    padding:30px;
    position:relative;
}

.featured{
    border:2px solid var(--red);
    transform:scale(1.05);
}

.plan-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:var(--red);
    padding:8px 16px;
    border-radius:50px;
    font-size:.8rem;
    font-weight:bold;
}

.plan-header h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:2.5rem;
}

.plan-price{
    color:var(--red);
    font-size:3rem;
    font-weight:bold;
    margin:20px 0;
}

.plan-card ul{
    list-style:none;
}

.plan-card li{
    margin-bottom:12px;
}

.btn-plan{
    width:100%;
    margin-top:20px;
    background:var(--red);
    border:none;
    color:white;
    padding:14px;
    border-radius:14px;
    cursor:pointer;
}

.modalidades-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.mod-card{
    background:rgba(255,255,255,.02);
    border:1px solid var(--line);
    border-radius:24px;
    padding:30px;
    text-align:center;
}

.mod-card i{
    color:var(--red);
    font-size:2.5rem;
    margin-bottom:15px;
}

.mod-card h4{
    font-family:'Bebas Neue',sans-serif;
    font-size:2rem;
    margin-bottom:10px;
}

@media(max-width:900px){

    .plans-grid{
        grid-template-columns:1fr;
    }

    .modalidades-grid{
        grid-template-columns:1fr 1fr;
    }

    .featured{
        transform:none;
    }
}
body.light {
--white-fixed: #ffffff;
--bg: #f4f4f4;
--white: #111111;
--black: #ffffff;
--panel: #ffffff;
--panel-2: #f0f0f0;
--line: rgba(0,0,0,0.602);         /* mais escuro */
--line-strong: rgba(0,0,0,0.769);  /* bem visível */
--text-soft: #333333;
--text-muted: #666666;

background: #f4f4f4;
color: #111;
}

/* Navbar */
body.light .navbar {
background: #ffffff;
}

/* Caixa principal */
body.light .shell {
background: #ffffff;
}

/* Login */
body.light .login-card {
background: #ffffff;
border: 1px solid rgba(0,0,0,0.1);
}

/* Inputs */
body.light .field input,
body.light .field select {
background: #ffffff;
color: #000;
border: 1px solid rgba(0,0,0,0.15);
}

/* Cards */
body.light .card,
body.light .section-card {
background: #ffffff;
}

/* Texto secundário */
body.light p,
body.light span {
color: #444;
}

/* Botão secundário */
body.light .btn-secondary {
border: 1px solid rgba(0,0,0,0.2);
color: #000;
}

/* Footer */
body.light .footer {
background: #ffffff;
}

.themeToggle{
--h: 38px;
--w: 66px;
--pad: 4px;
position: relative;
width: var(--w);
height: var(--h);
border-radius: 999px;
border: 1px solid var(--border);
background: rgba(255,255,255,.06);
box-shadow: 0 14px 34px rgba(0,0,0,.35);
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: space-between;
padding: 0 12px;
user-select: none;
flex: 0 0 auto;
}

.themeToggle i{  
  font-size: 14px;  
  color: rgba(255,255,255,.75);  
  z-index: 2;  
}  

body.light .themeToggle i{ color: rgba(0,0,0,.55); }  

.themeToggle input{  
  position:absolute;  
  inset:0;  
  opacity:0;  
  cursor:pointer;  
}  
.themeToggle .knob{  
  position:absolute;  
  top: var(--pad);  
  left: var(--pad);  
  width: calc(var(--h) - (var(--pad) * 2));  
  height: calc(var(--h) - (var(--pad) * 2));  
  border-radius: 999px;  
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08));  
  border: 1px solid rgba(255,255,255,.12);  
  box-shadow: 0 12px 26px rgba(0,0,0,.45);  
  transition: transform .22s ease;  
}  

.themeToggle input:checked ~ .knob{  
  transform: translateX(calc(var(--w) - var(--h) + 23px));
}  

.themeToggle:hover{  
  background: rgba(255,255,255,.08);  
}

html {
box-sizing: border-box;
scroll-behavior: smooth;
width: 100%;
overflow-x: hidden;
}

*, *::before, *::after {
box-sizing: inherit;
}

body {
min-height: 100vh;
margin: 0;
font-family: 'Montserrat', Arial, sans-serif;
color: var(--white);
background:
linear-gradient(180deg, rgba(193,18,31,0.08), transparent 14%),
repeating-linear-gradient(
90deg,
rgba(255,255,255,0.012) 0,
rgba(255,255,255,0.012) 2px,
transparent 2px,
transparent 42px
),
linear-gradient(180deg, #070707 0%, #000000 100%);
padding: 24px 12px;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
height: 47px;
width: auto;
object-fit: contain;
opacity: .85;
}

.page {
max-width: var(--max);
margin: 0 auto;
}

.top-line,
.bottom-line {
height: 10px;
background: var(--red);
border-radius: 999px;
}

.top-line {
margin-bottom: 18px;
}

.bottom-line {
margin-top: 18px;
}

.shell {
background: linear-gradient(180deg, rgba(10,10,10,0.97), rgba(4,4,4,0.99));
border: 1px solid var(--line);
border-radius: 30px;
overflow: hidden;
box-shadow: var(--shadow);
}

.navbar {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
padding: 18px 28px;
border-bottom: 1px solid var(--line);
background: rgba(0,0,0,0.84);
flex-wrap: wrap;
}

.brand {
display: flex;
align-items: center;
gap: 14px;
}

.logo-box {
  width: auto; /* deixa flexível */
  max-width: 400px; /* ajusta conforme a logo */
  height: 108px; /* mantém altura padrão */
  border-radius: 16px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}


.logo-box img {
  height: 120px; /* altura da logo dentro da caixa */
  width: auto; /* mantém proporção */
  object-fit: contain;
}

.brand-text small {
  display: block;
  color: var(--text-muted);
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.brand-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.brand-text small {
  margin: 0 !important;
  line-height: -4 !important;
}

.brand-text h1 {
  line-height: 1 !important;
  margin: 0 !important;
}

.menu {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.menu a {
padding: 10px 15px;
border-radius: 999px;
border: 1px solid transparent;
font-size: 0.95rem;
transition: 0.2s ease;
}

.menu a:hover,
.menu a:focus {
background: rgba(255,255,255,0.03);
border-color: var(--line-strong);
outline: none;
}

.menu .highlight {
background: var(--red);
border-color: var(--red);
font-weight: 700;
}

.hero {
display: grid;
grid-template-columns: 1.08fr 0.92fr;
min-height: 770px;
}

.hero-left {
padding: 42px 38px;
border-right: 1px solid var(--line);
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 30px;
background-image: url('Acade3.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 15px;
position: relative;
}

.hero-left::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.45);
z-index: 0;
}

.hero-left > div {
position: relative;
z-index: 1;
}

/* Título principal */
.hero-left h2 {
color: #fff !important;
}

.hero-left h2,
.eyebrow,
.menu .highlight,
.stat b,
.stat span {
color: #fff !important;
}

/* "Matricule-se" */
.menu .highlight {
color: #fff !important;
}

/* Números e textos dos stats */
.stat b,
.stat span {
color: #fff !important;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.98rem;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--white-fixed);
margin-bottom: 130px;
}

.footer {
padding: 22px 28px 26px;
border-top: 1px solid var(--line);
color: var(--text-muted);
font-size: 0.9rem;
text-align: center;
background: rgba(0,0,0,0.45);

display: flex;
align-items: center;
justify-content: center;
gap: 1px;
flex-wrap: nowrap;
}

.eyebrow::before {
content: "";
width: 38px;
height: 3px;
border-radius: 999px;
background: var(--red);
text-shadow: 0 2px 6px rgba(0,0,0,0.7);
box-shadow: 0 0 6px rgba(193,18,31,0.7);
}

.hero-left h2 {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(3.3rem, 7vw, 6.5rem);
line-height: 0.92;
letter-spacing: 0.03em;
max-width: 9ch;
font-weight: 400;
margin-bottom: 16px;
}

.hero-left h2 .red {
color: #fd0013f2;
}

.hero-left p {
color: var(--text-soft);
max-width: 62ch;
font-size: 1rem;
line-height: 1.75;
}

.cards {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
margin-top: 28px;
}

.card {
background: rgba(255,255,255,0.02);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 18px;
}

.card strong {
display: block;
margin-bottom: 8px;
font-size: 1rem;
}

.card span {
color: var(--text-soft);
font-size: 0.92rem;
line-height: 1.55;
}

.highlight-box {
border: 1px solid rgba(193,18,31,0.35);
background: rgba(193,18,31,0.08);
border-radius: 22px;
padding: 20px;
}

.highlight-box h3 {
font-family: 'Bebas Neue', sans-serif;
font-weight: 400;
font-size: 1.9rem;
letter-spacing: 0.04em;
margin-bottom: 8px;
}

.highlight-box p {
color: var(--text-soft);
font-size: 0.94rem;
line-height: 1.65;
max-width: 62ch;
}

.stats {
display: flex;
gap: 14px;
flex-wrap: wrap;
}

.stat {
min-width: 150px;
padding: 16px 18px;
border-radius: 18px;
border: 3px solid var(--line);
background: #b61e1e;
}

.stat b {
display: block;
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
font-weight: 400;
letter-spacing: 0.04em;
line-height: 1;
margin-bottom: 6px;
}

.stat span {
color: var(--text-soft);
font-size: 0.88rem;
}

.hero-right {
padding: 38px;
display: flex;
align-items: center;
justify-content: center;
}

.login-card {
width: 100%;
max-width: 470px;
background: linear-gradient(180deg, #111111 0%, #070707 100%);
border: 1px solid var(--line-strong);
border-radius: 28px;
overflow: hidden;
}

.login-card .red-bar {
height: 8px;
background: var(--red);
}

.login-content {
padding: 30px;
}

.login-badge {
display: inline-block;
padding: 8px 12px;
border-radius: 999px;
border: 1px solid rgba(193,18,31,0.30);
background: rgba(193,18,31,0.12);
font-size: 0.82rem;
margin-bottom: 16px;
}

.login-content h3 {
font-family: 'Bebas Neue', sans-serif;
font-size: 3rem;
line-height: 0.92;
letter-spacing: 0.04em;
font-weight: 400;
margin-bottom: 5px;
}

.login-content p {
color: var(--text-soft);
line-height: 1.65;
font-size: 0.96rem;
margin-bottom: 18px;
}

form {
display: grid;
gap: 25px;
}

.field {
display: flex;
flex-direction: column;
gap: 8px;
}

.field label {
font-size: 0.93rem;
font-weight: 600;
color: var(--white);
}

.field input,
.field select {
width: 100%;
background: var(--panel);
color: var(--white);
border: 1px solid var(--line);
border-radius: var(--radius-md);
padding: 15px 16px;
font: inherit;
outline: none;
transition: 0.2s ease;
}

.field input::placeholder {
color: #8B8B8B;
}

.field input:focus,
.field select:focus {
border-color: var(--red);
box-shadow: 0 0 0 4px rgba(193,18,31,0.14);
}

.inline-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
margin-top: -2px;
}

.check {
display: inline-flex;
align-items: center;
gap: 9px;
color: var(--text-soft);
font-size: 0.9rem;
}

.check input {
accent-color: var(--red);
width: 16px;
height: 16px;
}

.forgot {
color: var(--white);
font-size: 0.9rem;
border-bottom: 1px solid rgba(255,255,255,0.22);
}

.buttons {
display: grid;
gap: 12px;
margin-top: 6px;
}

.btn {
width: 100%;
border: 0;
border-radius: 14px;
padding: 15px 18px;
font: inherit;
font-weight: 700;
cursor: pointer;
transition: 0.2s ease;
}

.btn-primary {
background: var(--red);
color: #ffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
filter: brightness(1.05);
outline: none;
}

.btn-secondary {
background: transparent;
color: var(--white);
border: 1px solid var(--line-strong);
}

.btn-secondary:hover,
.btn-secondary:focus {
background: rgba(255,255,255,0.03);
outline: none;
}

.role-list {
margin-top: 22px;
padding-top: 20px;
border-top: 1px solid var(--line);
display: grid;
gap: 10px;
}

.role-list span {
color: var(--text-soft);
font-size: 0.92rem;
}

.role-tags {
display: flex;
gap: 10px;
flex-wrap: wrap;
}

.formHint{
font-size: 13px;
letter-spacing: .4px;
text-transform: none;
color: var(--muted);
margin-top: 2px;
font-weight: 600;
margin-bottom: 20px;
}

.formHint .asterisk{  
  color: #ff5e5e;  
  font-weight: 800;  
  margin-right: 4px;  
}

.asterisk {
color: #ff5e5e;
font-weight: 700;
font-size: 16px;
position: relative;
top: 4px;
text-shadow: 0 0 4px rgba(255,94,94,0.6);
}

.role-tags b {
font-size: 0.84rem;
padding: 9px 12px;
border-radius: 999px;
background: rgba(255,255,255,0.03);
border: 1px solid var(--line);
font-weight: 600;
}

.sections {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin-top: 24px;
}

.section-card {
border: 1px solid var(--line);
border-radius: 24px;
padding: 22px;
background: linear-gradient(180deg, rgba(14,14,14,0.94), rgba(8,8,8,0.96));
}

.section-card .mini-bar {
width: 66px;
height: 6px;
border-radius: 999px;
background: var(--red);
margin-bottom: -25px;
}

.section-card h4 {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
line-height: 0.95;
font-weight: 400;
letter-spacing: 0.04em;
margin-bottom: 10px;
}

.section-card p {
color: var(--text-soft);
font-size: 0.94rem;
line-height: 1.65;
margin-bottom: 10px;
}

.section-card a {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--white);
font-weight: 700;
}

.section-card a::after {
content: "→";
color: var(--red);
}

@media (max-width: 1080px) {
.hero {
grid-template-columns: 1fr;
}

.hero-left {
border-right: 0;
border-bottom: 1px solid var(--line);
}

.sections {
grid-template-columns: 1fr;
}
}

@media (max-width: 720px) {
.hero-left {
border-right: 0;
border-bottom: 1px solid var(--line);
padding: 20px; /* por exemplo */
}
}

.navbar,
.hero-left,
.hero-right,
.footer {
padding-left: 18px;
padding-right: 18px;
}

.login-content {
padding: 20px;
}

.cards {
grid-template-columns: 1fr;
}

.menu {
width: 100%;
}

.menu a {
flex: 1 1 auto;
text-align: center;
}


.login-content h3,
.section-card h4 {
font-size: 2.35rem;
}

/* ==========================
   HISTÓRIA
========================== */

.history-section{
    padding:90px 40px;
}

.history-content{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

.history-tag{
    color:var(--red);
    font-size:1.35rem;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.history-text h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(3.5rem,6vw,5.5rem);
    line-height:.9;
    margin:20px 0 30px;
}

.history-text .red{
    color:var(--red);
}

.history-text p{
    color:var(--text-soft);
    line-height:1.9;
    margin-bottom:20px;
}

/* Cards laterais */

.history-highlight{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.history-card{
    padding:30px;
    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );

    border:1px solid var(--line);

    position:relative;
}

.history-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--red);
}

.history-card span{
    color:var(--red);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:3px;
}

.history-card h3{
    margin-top:15px;

    font-family:'Bebas Neue',sans-serif;

    font-size:2rem;

    line-height:1.1;
}

/* Responsivo */

@media(max-width:900px){

    .history-content{
        grid-template-columns:1fr;
    }

    .history-section{
        padding:70px 25px;
    }

}

.history-values{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

.history-values span{
    padding:8px 14px;
    border-radius:999px;

    background:
    rgba(193,18,31,.12);

    border:
    1px solid rgba(193,18,31,.35);

    color:#fff;

    font-size:.85rem;
    font-weight:600;
}

/* ===================================
   PROJECT ALPHA
   ERGONOMIA E ACESSIBILIDADE
=================================== */

.invest-alpha-section{
    max-width:1200px;
    margin:auto;
    padding:100px 40px;
}

.invest-alpha-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.invest-alpha-tag{
    display:block;

    color:#C1121F;

    font-size:.85rem;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:20px;
}

.invest-alpha-header h2{
    font-family:'Bebas Neue',sans-serif;

    font-size:clamp(3.5rem,7vw,6rem);

    line-height:.9;

    margin-bottom:25px;
}

.invest-alpha-header h2 span{
    color:#C1121F;
}

.invest-alpha-header p{
    color:var(--text-soft);

    line-height:1.9;

    max-width:700px;
    margin:auto;
}

/* CARDS */

.alpha-grid-report{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-bottom:50px;
}

.alpha-focus-card{
    padding:30px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.alpha-focus-card:hover{
    transform:translateY(-4px);

    border-color:
    rgba(193,18,31,.4);
}

.alpha-focus-card h3{
    font-family:'Bebas Neue',sans-serif;

    font-size:2rem;

    margin-bottom:15px;
}

.alpha-focus-card p{
    color:var(--text-soft);

    line-height:1.8;
}

/* TABELA */

.alpha-access-panel{
    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);
}

.alpha-access-panel table{
    width:100%;

    border-collapse:collapse;
}

.alpha-access-panel thead{
    background:#C1121F;
}

.alpha-access-panel th{
    text-align:left;

    padding:18px 22px;

    color:white;

    font-size:.85rem;

    letter-spacing:2px;

    text-transform:uppercase;
}

.alpha-access-panel td{
    padding:18px 22px;

    border-bottom:
    1px solid rgba(255,255,255,.06);

    color:#c9c9c9;
}

.alpha-access-panel tbody tr{
    background:
    rgba(255,255,255,.02);
}

.alpha-access-panel tbody tr:hover{
    background:
    rgba(193,18,31,.08);
}

/* RESPONSIVO */

@media(max-width:768px){

    .invest-alpha-section{
        padding:70px 20px;
    }

    .alpha-access-panel{
        overflow-x:auto;
    }

    .alpha-access-panel table{
        min-width:700px;
    }

}