:root{
--primary:#ff6a00;
--secondary:#b55700;
--dark:#101010;
--light:#f5f5f5;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f4f4f4;
color:#111;
padding-top:70px;
overflow-x:hidden;
}

a{text-decoration:none}
img{display:block;max-width:100%}

.container{
max-width:1250px;
margin:auto;
padding:0 20px;
}

/* HEADER AJUSTADO PADRÃO HOME */
.menu{
position:fixed;
top:0;
left:0;
width:100%;
background:#000;
box-shadow:0 4px 20px rgba(0,0,0,.5);
z-index:999;
border-bottom:2px solid var(--primary);
padding:0 30px;
}

.menu-content{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1400px;
margin:0 auto;
height:70px;
gap:40px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
flex-shrink:0;
}

.logo img{
height:50px;
width:auto;
}

.menu nav{
display:flex;
gap:30px;
flex:1;
justify-content:center;
}

.menu nav a{
color:var(--primary);
font-weight:700;
font-size:15px;
text-decoration:none;
transition:.3s;
position:relative;
text-transform:uppercase;
letter-spacing:.5px;
}

.menu nav a::after{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:var(--primary);
transition:width .3s;
}

.menu nav a:hover::after{
width:100%;
}

.menu nav a:hover{
color:#fff;
}

.menu nav a.active{
color:#fff;
font-weight:900;
}

.menu-actions{
display:flex;
align-items:center;
gap:15px;
}

.btn-contato{
background:var(--primary);
color:#000;
padding:10px 24px;
border-radius:30px;
font-weight:700;
text-decoration:none;
transition:.3s;
display:inline-block;
text-transform:uppercase;
font-size:13px;
letter-spacing:.5px;
}

.btn-contato:hover{
background:#fff;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(252,110,2,.4);
}

/* Menu button (hamburger) */
.menu-btn{
width:40px;
height:40px;
border:none;
background:transparent;
display:none;
flex-direction:column;
justify-content:center;
gap:6px;
cursor:pointer;
}

.menu-btn span{
height:3px;
width:100%;
background:var(--primary);
border-radius:3px;
transition:.3s;
}

@media(max-width:1024px){
.menu-content{
gap:20px;
padding:0 20px;
}

.menu nav{
gap:20px;
}

.menu nav a{
font-size:14px;
}
}

@media(max-width:768px){
.menu{
padding:0 15px;
}

.menu-content{
height:60px;
gap:10px;
}

.logo img{
height:40px;
}

.menu nav{
position:absolute;
top:60px;
left:0;
right:0;
background:#000;
flex-direction:column;
gap:0;
width:100%;
padding:20px 0;
display:none;
border-top:2px solid var(--primary);
}

.menu nav.active{
display:flex;
}

.menu nav a{
padding:15px 20px;
border-bottom:1px solid rgba(252,110,2,.2);
text-align:left;
}

.menu nav a::after{
display:none;
}

.menu-actions{
gap:10px;
}

.btn-contato{
padding:8px 16px;
font-size:12px;
}

.menu-btn{
display:flex;
order:3;
}
}

/* HERO */
.hero{
background:
radial-gradient(circle at top right,rgba(255,106,0,.18),transparent 45%),
linear-gradient(135deg,#101010,#1b1b1b 70%,#2a1708);
padding:95px 20px 80px;
color:#fff;
position:relative;
overflow:hidden;
}

.hero:before{
content:"";
position:absolute;
inset:0;
background:
repeating-linear-gradient(
90deg,
transparent,
transparent 40px,
rgba(255,255,255,.015) 40px,
rgba(255,255,255,.015) 41px
);
}

.hero-grid{
max-width:1200px;
margin:auto;
position:relative;
z-index:2;
}

.hero-label{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:rgba(255,106,0,.15);
border:1px solid rgba(255,106,0,.35);
font-weight:800;
letter-spacing:1px;
color:#ffb27a;
margin-bottom:25px;
}

.hero-divider{
width:120px;
height:5px;
background:var(--primary);
border-radius:30px;
margin-bottom:30px;
}

.hero h1{
max-width:1000px;
font-size:clamp(52px,7vw,88px);
line-height:1;
font-weight:900;
margin-bottom:22px;
}

.hero p{
font-size:24px;
max-width:760px;
line-height:1.5;
color:#ddd;
margin-bottom:30px;
}

.hero-stats{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.filter-btn{
padding:13px 20px;
border-radius:35px;
background:#ffffff10;
border:1px solid rgba(255,255,255,.08);
font-weight:700;
cursor:pointer;
transition:.25s;
color:#fff;
}

.filter-btn:hover{
transform:translateY(-2px);
background:#ffffff18;
}

.filter-btn.active{
background:var(--primary);
border-color:var(--primary);
box-shadow:0 0 0 4px rgba(255,106,0,.18);
}

.professional-link{
display:inline-flex;
align-items:center;
color:#fff;
text-decoration:none;
}

.hero-participate{
background:var(--primary);
border-color:var(--primary);
color:#111;
}

.page{
margin-top:35px;
}

/* Manifesto do novo conceito */
.belief-block{
display:grid;
grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
gap:42px;
align-items:center;
margin-bottom:52px;
padding:clamp(30px,5vw,54px);
border-radius:30px;
background:#111;
color:#fff;
box-shadow:0 18px 50px rgba(17,17,17,.14);
}

.belief-copy>span,
.section-intro>span,
.community-invite>span,
.sidebar-eyebrow,
.highlight>span{
display:inline-block;
color:var(--primary);
font-size:12px;
font-weight:900;
letter-spacing:.08em;
}

.belief-copy h2{
margin:12px 0 16px;
color:#fff;
font-size:clamp(32px,4vw,48px);
line-height:1.08;
}

.belief-copy p{
max-width:620px;
color:#d5d5d5;
font-size:18px;
line-height:1.65;
}

.belief-pillars{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;
}

.belief-pillars div{
min-height:142px;
padding:22px;
border:1px solid rgba(255,255,255,.1);
border-radius:22px;
background:rgba(255,255,255,.055);
}

.belief-pillars strong,
.belief-pillars span{
display:block;
}

.belief-pillars strong{
margin-bottom:9px;
color:var(--primary);
font-size:20px;
}

.belief-pillars span{
color:#e2e2e2;
font-size:14px;
line-height:1.5;
}

.layout{
display:grid;
grid-template-columns:2.1fr 1fr;
gap:30px;
}

.section-title{
font-size:38px;
font-weight:900;
margin-bottom:24px;
}

.section-intro{
scroll-margin-top:100px;
}

.section-intro .section-title{
margin:8px 0 10px;
}

.feature{
background:
linear-gradient(135deg,#111,#1e1e1e 70%,#2d1707);
color:#fff;
padding:55px;
border-radius:30px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
margin-bottom:30px;
}

.kicker{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:rgba(255,106,0,.15);
border:1px solid rgba(255,106,0,.35);
color:#ffba82;
font-weight:900;
margin-bottom:25px;
}

.feature h2{
font-size:52px;
line-height:1.05;
margin-bottom:18px;
}

.feature p{
font-size:22px;
color:#ddd;
}

/* Mantém o destaque escuro mesmo com as regras globais de cards. */
body .feature{
background:linear-gradient(135deg,#111,#1e1e1e 70%,#2d1707) !important;
color:#fff !important;
border-color:rgba(255,255,255,.08) !important;
}

body .feature h2{
color:#fff !important;
}

body .feature p{
color:#ddd !important;
}

body .feature-opiniao{
min-height:520px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:flex-start;
background:
linear-gradient(90deg,rgba(5,5,5,.96) 0%,rgba(5,5,5,.82) 40%,rgba(5,5,5,.18) 72%,rgba(5,5,5,.08) 100%),
url("../img/banner-opiniao-corinthians.png") 68% center/cover no-repeat !important;
}

.feature-opiniao h2,
.feature-opiniao p{
max-width:58%;
}

.feature-link{
display:inline-flex;
margin-top:24px;
}

#opiniao-corinthians{
scroll-margin-top:100px;
}

.post{
background:#fff;
padding:30px;
border-radius:24px;
margin-bottom:24px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

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

.author-line{
display:flex;
align-items:center;
gap:14px;
margin-bottom:18px;
}

.author-line img{
width:58px;
height:58px;
border-radius:50%;
object-fit:cover;
}

.post h3{
font-size:34px;
margin-bottom:12px;
}

.meta{
font-size:14px;
color:#777;
font-weight:600;
}

.excerpt{
font-size:18px;
margin:15px 0;
}

.btn{
background:var(--primary);
color:#fff;
border:none;
padding:12px 24px;
border-radius:30px;
font-weight:800;
cursor:pointer;
}

.full-text{
display:none;
margin-top:20px;
padding-top:20px;
border-top:1px solid #eee;
}

.full-text p{
margin-bottom:14px;
}

/* A Voz do Profissional */
.professional-voice{
margin-top:48px;
padding:42px;
border:1px solid #e9e9e9;
border-radius:30px;
background:linear-gradient(145deg,#fff 0%,#fff8f2 100%);
box-shadow:0 14px 36px rgba(17,17,17,.08);
scroll-margin-top:100px;
}

.professional-voice-head{
display:grid;
grid-template-columns:minmax(0,1fr) auto;
gap:28px;
align-items:start;
}

.professional-voice-kicker,
.professional-launch-status{
display:inline-block;
color:var(--primary);
font-size:12px;
font-weight:900;
letter-spacing:.08em;
}

.professional-voice h2{
margin:10px 0 14px;
font-size:clamp(36px,5vw,54px);
line-height:1;
}

.professional-voice-head p{
max-width:720px;
color:#5f5f5f;
font-size:18px;
line-height:1.65;
}

.professional-voice-frequency{
min-width:132px;
padding:20px;
border-radius:22px;
background:#111;
color:#fff;
text-align:center;
}

.professional-voice-frequency strong,
.professional-voice-frequency span{
display:block;
}

.professional-voice-frequency strong{
color:var(--primary);
font-size:22px;
}

.professional-voice-frequency span{
margin-top:4px;
font-size:13px;
font-weight:700;
}

.professional-voice-topics{
display:flex;
flex-wrap:wrap;
gap:9px;
margin:28px 0;
}

.professional-voice-topics span{
padding:9px 13px;
border:1px solid #e6e6e6;
border-radius:999px;
background:#fff;
font-size:13px;
font-weight:800;
}

.professional-launch{
display:grid;
grid-template-columns:150px minmax(0,1fr);
gap:28px;
align-items:center;
padding:28px;
border-radius:26px;
background:#111;
color:#fff;
overflow:hidden;
}

.professional-launch-mark{
display:grid;
place-items:center;
width:150px;
height:150px;
border:1px solid rgba(255,106,0,.35);
border-radius:50%;
background:#fff;
color:#111;
box-shadow:0 0 0 10px rgba(255,106,0,.08);
}

.professional-launch-mark img{
width:72%;
height:72%;
object-fit:contain;
}

.professional-launch h3{
margin:9px 0 10px;
color:#fff;
font-size:clamp(26px,4vw,36px);
line-height:1.1;
}

.professional-launch p{
max-width:650px;
margin-bottom:20px;
color:#d8d8d8;
font-size:16px;
line-height:1.6;
}

.topic-link{
display:block;
color:inherit;
text-decoration:none;
}

.community-invite{
margin-top:30px;
padding:clamp(30px,5vw,48px);
border:1px solid #ffd8bc;
border-radius:30px;
background:linear-gradient(135deg,#fff7f0,#fff 70%);
scroll-margin-top:100px;
}

.community-invite h2{
max-width:820px;
margin:10px 0 14px;
font-size:clamp(30px,4vw,44px);
line-height:1.08;
}

.community-invite p{
max-width:760px;
color:#5f5f5f;
font-size:17px;
line-height:1.65;
}

.community-actions{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:14px;
margin-top:24px;
}

.community-secondary{
display:inline-flex;
align-items:center;
min-height:46px;
padding:0 20px;
border:1px solid #d8d8d8;
border-radius:999px;
color:#111;
font-weight:850;
text-decoration:none;
}

.sidebar-box{
background:#fff;
padding:28px;
border-radius:24px;
margin-bottom:25px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.sidebar-title{
font-size:24px;
font-weight:900;
margin-bottom:20px;
}

.author-mini{
text-align:center;
}

.sidebar-eyebrow{
margin-bottom:8px;
}

.author-mini img{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
margin:auto auto 18px;
border:4px solid var(--primary);
}

.topic{
padding:16px 0;
border-bottom:1px solid #eee;
font-weight:700;
cursor:pointer;
transition:.25s;
}

.topic:hover{
color:var(--primary);
padding-left:8px;
}

.topic:last-child{
border:none;
}

.highlight{
background:#111;
color:#fff;
padding:40px;
border-radius:25px;
}

.highlight h4{
font-size:34px;
margin-bottom:15px;
}

.highlight>span{
margin-bottom:14px;
}

.hidden-search{
display:none!important;
}

.search-note{
margin-bottom:20px;
font-weight:700;
color:#666;
}

footer{
margin-top:60px;
background:#fff;
padding:40px;
text-align:center;
font-weight:700;
}

.clear-filter{
margin-top:15px;
background:#111;
color:#fff;
border:none;
padding:11px 18px;
border-radius:30px;
cursor:pointer;
font-weight:700;
}

#backToTop{
position:fixed;
right:25px;
bottom:25px;
width:54px;
height:54px;
border:none;
border-radius:50%;
background:var(--primary);
color:#fff;
font-size:22px;
font-weight:900;
cursor:pointer;
display:none;
box-shadow:0 8px 20px rgba(0,0,0,.25);
z-index:9999;
}

#backToTop.show{
display:block;
}

@media(max-width:980px){
.menu nav{display:none}
.menu-actions{width:100%}
.search{width:100%}
.layout{grid-template-columns:1fr}
.hero h1{font-size:50px}
.hero p{font-size:20px}
.feature{padding:35px}
.feature h2{font-size:36px}
.post h3{font-size:28px}
.professional-voice{padding:30px}
.belief-block{grid-template-columns:1fr}
}

@media(max-width:520px){
.feature{padding:26px 22px !important}
.feature h2{font-size:32px;line-height:1.1}
.feature p{font-size:18px;line-height:1.55}
.feature-opiniao{min-height:560px;background-position:64% center !important}
.feature-opiniao h2,.feature-opiniao p{max-width:100%}
.feature-opiniao{background-image:linear-gradient(180deg,rgba(5,5,5,.42) 0%,rgba(5,5,5,.82) 46%,rgba(5,5,5,.98) 100%),url("../img/banner-opiniao-corinthians.png") !important}
.feature-opiniao{justify-content:flex-end}
.professional-voice{margin-top:34px;padding:24px 20px;border-radius:24px}
.professional-voice-head{grid-template-columns:1fr}
.professional-voice-frequency{display:flex;align-items:center;justify-content:center;gap:8px;min-width:0}
.professional-voice-frequency span{margin:0}
.professional-launch{grid-template-columns:1fr;padding:24px 20px}
.professional-launch-mark{width:96px;height:96px}
.belief-block{margin-bottom:36px;padding:26px 20px;border-radius:24px}
.belief-pillars{grid-template-columns:1fr}
.belief-pillars div{min-height:0}
.community-invite{padding:28px 20px;border-radius:24px}
.community-actions{align-items:stretch;flex-direction:column}
.community-actions .btn,.community-secondary{justify-content:center;width:100%}
}
