/* ══════════════════════════════════
   TIAGO GRILA — TEMA WORDPRESS
   Pintas Digital © 2026
══════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --grey: #888;
  --text: #e0e0e0;
  --bg-section: #141414;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito Sans',sans-serif; background:var(--black); color:var(--white); overflow-x:hidden; line-height:1.7; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--dark); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:2px; }

/* ── TIPOGRAFIA ── */
h1, h2, h3 { font-family:'Bebas Neue', sans-serif; letter-spacing:0.04em; line-height:1.1; }
h1 { font-size:clamp(3rem, 8vw, 7rem); }
h2 { font-size:clamp(2rem, 5vw, 4rem); }
h3 { font-size:clamp(1.4rem, 3vw, 2rem); }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1.2rem 5vw;
  display:flex; align-items:center; justify-content:space-between;
  transition:var(--transition);
}
nav.scrolled {
  background:rgba(10,10,10,0.95);
  backdrop-filter:blur(16px);
  padding:0.8rem 5vw;
  border-bottom:1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family:'Bebas Neue',sans-serif; font-size:1.8rem; letter-spacing:0.1em;
  color:var(--white);
}
.nav-logo span { color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:2.5rem; }
.nav-links a {
  font-size:0.82rem; font-weight:600; letter-spacing:0.12em;
  text-transform:uppercase; color:rgba(255,255,255,0.65);
  transition:color 0.2s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--gold); transition:width 0.3s;
}
.nav-links a:hover { color:#fff; }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:var(--gold) !important; color:var(--black) !important;
  padding:0.55rem 1.4rem; border-radius:0.3rem;
  font-weight:700 !important; font-size:0.82rem !important;
  letter-spacing:0.1em !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--gold-light) !important; transform:translateY(-2px); }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; z-index:1001; padding:4px;
}
.hamburger span { display:block; width:26px; height:2px; background:#fff; border-radius:2px; transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display:none; position:fixed; inset:0; z-index:999;
  background:var(--black); flex-direction:column;
  align-items:center; justify-content:center; gap:2.5rem;
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; letter-spacing:0.08em; transition:color 0.2s; }
.mobile-nav a:hover { color:var(--gold); }
.mobile-nav .m-cta {
  background:var(--gold); color:var(--black);
  padding:0.8rem 2.5rem; border-radius:0.3rem;
  font-size:1rem; font-weight:700; font-family:'Nunito Sans',sans-serif;
  letter-spacing:0.1em; text-transform:uppercase;
}

/* ── HERO ── */
.hero {
  position:relative; width:100%; height:100vh;
  min-height:600px; overflow:hidden;
  display:flex; align-items:center; justify-content:flex-start;
  padding:0 5vw;
}
.hero-bg {
  position:absolute; inset:0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
}
.hero-bg::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.hero-content {
  position:relative; z-index:2;
  max-width:700px;
}
.hero-badge {
  display:inline-block;
  background:rgba(201,168,76,0.15);
  border:1px solid rgba(201,168,76,0.4);
  color:var(--gold);
  font-size:0.78rem; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; padding:0.45rem 1.1rem;
  border-radius:2rem; margin-bottom:1.5rem;
}
.hero-content h1 { color:var(--white); margin-bottom:1.2rem; }
.hero-content h1 em { color:var(--gold); font-style:normal; }
.hero-content p {
  font-size:1.15rem; color:rgba(255,255,255,0.7);
  max-width:520px; margin-bottom:2.5rem; font-weight:300;
}
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-gold {
  background:var(--gold); color:var(--black);
  padding:0.9rem 2.2rem; border-radius:0.3rem;
  font-weight:700; font-size:0.9rem; letter-spacing:0.1em;
  text-transform:uppercase; transition:var(--transition);
}
.btn-gold:hover { background:var(--gold-light); transform:translateY(-3px); }
.btn-outline {
  border:2px solid rgba(255,255,255,0.3); color:var(--white);
  padding:0.9rem 2.2rem; border-radius:0.3rem;
  font-weight:600; font-size:0.9rem; letter-spacing:0.1em;
  text-transform:uppercase; transition:var(--transition);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }

.hero-scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); z-index:2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── NÚMEROS ── */
.numbers-strip {
  background:var(--gold);
  display:grid; grid-template-columns:repeat(4,1fr);
  padding:2.5rem 5vw;
}
.number-item { text-align:center; }
.number-item .num {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2rem,4vw,3.5rem);
  color:var(--black); line-height:1;
}
.number-item .lbl {
  font-size:0.78rem; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:rgba(0,0,0,0.65); margin-top:0.3rem;
}

/* ── SOBRE ── */
.sobre-section {
  padding:8rem 5vw;
  background:var(--bg-section);
}
.sobre-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
}
.sobre-label {
  font-size:0.78rem; font-weight:700; letter-spacing:0.25em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1rem;
}
.sobre-inner h2 { color:var(--white); margin-bottom:1.5rem; }
.sobre-inner p { color:rgba(255,255,255,0.65); margin-bottom:1rem; font-size:1rem; }
.sobre-img-wrap {
  position:relative;
}
.sobre-img-wrap img {
  width:100%; border-radius:0.5rem;
  filter:grayscale(20%) contrast(1.05);
}
.sobre-img-wrap::before {
  content:'';
  position:absolute; top:-1rem; left:-1rem;
  width:60%; height:60%;
  border-top:3px solid var(--gold);
  border-left:3px solid var(--gold);
  border-radius:0.3rem;
  z-index:0;
}
.sobre-img-wrap::after {
  content:'';
  position:absolute; bottom:-1rem; right:-1rem;
  width:60%; height:60%;
  border-bottom:3px solid var(--gold);
  border-right:3px solid var(--gold);
  border-radius:0.3rem;
}

/* ── VALORES / PILARES ── */
.pilares-section {
  padding:8rem 5vw;
  background:var(--black);
}
.section-header { text-align:center; max-width:600px; margin:0 auto 4rem; }
.section-label {
  font-size:0.78rem; font-weight:700; letter-spacing:0.25em;
  text-transform:uppercase; color:var(--gold); margin-bottom:0.8rem;
}
.section-header h2 { color:var(--white); }
.pilares-grid {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:2rem;
}
.pilar-card {
  background:var(--bg-section);
  border:1px solid rgba(201,168,76,0.1);
  border-radius:0.5rem; padding:2.5rem 2rem;
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.pilar-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; background:var(--gold);
  transform:scaleX(0); transition:transform 0.4s;
}
.pilar-card:hover { border-color:rgba(201,168,76,0.35); transform:translateY(-6px); }
.pilar-card:hover::before { transform:scaleX(1); }
.pilar-icon { font-size:2.5rem; margin-bottom:1.2rem; }
.pilar-card h3 { color:var(--white); margin-bottom:0.8rem; font-size:1.4rem; }
.pilar-card p { color:rgba(255,255,255,0.55); font-size:0.92rem; }

/* ── TRAJETÓRIA / TIMELINE ── */
.trajetoria-section {
  padding:8rem 5vw;
  background:var(--bg-section);
}
.timeline {
  max-width:800px; margin:0 auto;
  position:relative;
}
.timeline::before {
  content:''; position:absolute; left:20px; top:0; bottom:0;
  width:2px; background:rgba(201,168,76,0.25);
}
.timeline-item {
  position:relative; padding:0 0 3rem 4rem;
}
.timeline-dot {
  position:absolute; left:12px; top:4px;
  width:18px; height:18px; border-radius:50%;
  background:var(--gold); border:3px solid var(--black);
  box-shadow:0 0 0 3px rgba(201,168,76,0.3);
}
.timeline-period {
  font-size:0.75rem; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--gold); margin-bottom:0.5rem;
}
.timeline-item h3 { color:var(--white); font-size:1.5rem; margin-bottom:0.6rem; }
.timeline-item p { color:rgba(255,255,255,0.6); font-size:0.95rem; }

/* ── REDES SOCIAIS ── */
.redes-section {
  padding:8rem 5vw;
  background:var(--black);
}
.redes-grid {
  max-width:900px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
}
.rede-card {
  background:var(--bg-section);
  border:1px solid rgba(201,168,76,0.1);
  border-radius:0.5rem; padding:2rem;
  text-align:center; transition:var(--transition);
}
.rede-card:hover { border-color:var(--gold); transform:translateY(-4px); }
.rede-card .rede-icon { font-size:2.2rem; margin-bottom:0.8rem; }
.rede-card .rede-nome { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:var(--white); letter-spacing:0.05em; }
.rede-card .rede-handle { font-size:0.82rem; color:var(--gold); margin:0.3rem 0 1rem; }
.rede-card .rede-seg { font-size:0.8rem; color:rgba(255,255,255,0.45); letter-spacing:0.1em; text-transform:uppercase; }
.rede-card .rede-num { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:var(--gold); }

/* ── CTA ── */
.cta-section {
  padding:8rem 5vw;
  background:var(--gold);
  text-align:center;
}
.cta-section h2 { color:var(--black); margin-bottom:1rem; }
.cta-section p { color:rgba(0,0,0,0.65); font-size:1.1rem; max-width:500px; margin:0 auto 2.5rem; }
.btn-dark {
  background:var(--black); color:var(--gold);
  padding:1rem 2.5rem; border-radius:0.3rem;
  font-weight:700; font-size:0.9rem; letter-spacing:0.12em;
  text-transform:uppercase; transition:var(--transition);
  display:inline-block;
}
.btn-dark:hover { background:#222; transform:translateY(-3px); }

/* ── FOOTER ── */
footer {
  background:var(--dark); padding:3rem 5vw;
  border-top:1px solid rgba(201,168,76,0.1);
}
.footer-inner {
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1.5rem;
}
.footer-logo { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; letter-spacing:0.1em; }
.footer-logo span { color:var(--gold); }
.footer-links { display:flex; gap:2rem; }
.footer-links a { font-size:0.82rem; color:rgba(255,255,255,0.45); transition:color 0.2s; letter-spacing:0.08em; }
.footer-links a:hover { color:var(--gold); }
.footer-copy { font-size:0.78rem; color:rgba(255,255,255,0.3); }
.footer-credit { font-size:0.75rem; color:rgba(255,255,255,0.25); }
.footer-credit a { color:rgba(201,168,76,0.5); }
.footer-credit a:hover { color:var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .numbers-strip { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
  .sobre-inner { grid-template-columns:1fr; gap:3rem; }
  .pilares-grid { grid-template-columns:1fr; }
  .redes-grid { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
}
@media (max-width:600px) {
  .numbers-strip { grid-template-columns:repeat(2,1fr); }
  .hero-btns { flex-direction:column; }
}

/* ── HERO INNER (layout com logo) ── */
.hero-inner {
  position:relative; z-index:2;
  width:100%; max-width:1200px;
  display:flex; align-items:center; justify-content:space-between;
  gap:3rem;
}
.hero-content {
  max-width:580px;
  position:static;
}
.hero-logo {
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hero-logo-img {
  width:clamp(220px, 28vw, 380px);
  height:auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.25));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-12px); }
}

/* ── SOBRE IMG (foto real do Tiago) ── */
.sobre-img-wrap {
  position:relative;
}
.sobre-img-wrap img {
  width:100%;
  border-radius:0.5rem;
  object-fit:cover;
  object-position:center top;
  aspect-ratio:3/4;
  filter:contrast(1.05) brightness(1.02);
  position:relative; z-index:1;
}
.sobre-img-wrap::before {
  content:'';
  position:absolute; top:-1rem; left:-1rem;
  width:60%; height:60%;
  border-top:3px solid var(--gold);
  border-left:3px solid var(--gold);
  border-radius:0.3rem;
  z-index:0;
}
.sobre-img-wrap::after {
  content:'';
  position:absolute; bottom:-1rem; right:-1rem;
  width:60%; height:60%;
  border-bottom:3px solid var(--gold);
  border-right:3px solid var(--gold);
  border-radius:0.3rem;
  z-index:0;
}

/* ── RESPONSIVE HERO LOGO ── */
@media (max-width:900px) {
  .hero-inner {
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding-top:6rem;
  }
  .hero-logo { order:-1; }
  .hero-logo-img { width:clamp(150px,50vw,220px); }
  .hero-content { max-width:100%; }
  .hero-content p { max-width:100%; }
}

/* ── ÍCONES REDES SOCIAIS (imagens reais) ── */
.rede-icon-img {
  width:64px; height:64px;
  object-fit:cover;
  border-radius:16px;
  margin:0 auto;
  display:block;
  transition:transform 0.3s ease;
}
.rede-card:hover .rede-icon-img {
  transform:scale(1.1);
}

/* ── RODAPÉ — LEGAL & SOCIAL ── */
.footer-social {
  display:flex; gap:0.75rem; align-items:center; justify-content:center;
  margin:0.5rem 0;
}
.footer-social-icon img {
  width:36px; height:36px;
  object-fit:cover; border-radius:8px;
  opacity:0.7; transition:opacity 0.2s, transform 0.2s;
}
.footer-social-icon:hover img { opacity:1; transform:scale(1.1); }

.footer-legal {
  display:flex; gap:0.75rem; align-items:center;
  justify-content:center; flex-wrap:wrap;
  margin:0.4rem 0;
}
.footer-legal a {
  font-size:0.78rem; font-weight:600;
  color:rgba(255,255,255,0.45);
  letter-spacing:0.08em; text-transform:uppercase;
  transition:color 0.2s;
}
.footer-legal a:hover { color:var(--gold); }
.footer-legal-sep { color:rgba(255,255,255,0.2); font-size:0.7rem; }

/* ── PÁGINAS LEGAIS ── */
.legal-page {
  background:var(--black);
  min-height:100vh;
  padding:8rem 5vw 5rem;
}
.legal-inner {
  max-width:820px; margin:0 auto;
}
.legal-header {
  margin-bottom:3rem;
  border-bottom:1px solid rgba(201,168,76,0.2);
  padding-bottom:2rem;
}
.legal-back {
  display:inline-block;
  font-size:0.82rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.5rem;
  transition:opacity 0.2s;
}
.legal-back:hover { opacity:0.7; }
.legal-header h1 {
  font-size:clamp(1.6rem,3vw,2.4rem);
  color:var(--white); line-height:1.1;
  margin-bottom:0.75rem;
}
.legal-header h1 em { color:var(--gold); font-style:normal; }
.legal-updated {
  font-size:0.82rem; color:rgba(255,255,255,0.35);
  letter-spacing:0.08em; text-transform:uppercase;
}
.legal-content h2 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.6rem; color:var(--gold);
  letter-spacing:0.08em; margin:2.5rem 0 0.8rem;
}
.legal-content p {
  color:rgba(255,255,255,0.65);
  font-size:0.97rem; line-height:1.8;
  margin-bottom:0.75rem;
}
.legal-content ul {
  list-style:disc; padding-left:1.5rem;
  margin-bottom:1rem;
}
.legal-content ul li {
  color:rgba(255,255,255,0.6);
  font-size:0.95rem; line-height:1.8;
  margin-bottom:0.3rem;
}
.legal-content a { color:var(--gold); }
.legal-content a:hover { text-decoration:underline; }
.legal-content strong { color:rgba(255,255,255,0.85); }
