/* === Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html,body { height: 100%; }
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}


/* Splash keyframes */
@keyframes splashFadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes splashFadeOut { from { opacity: 1 } to { opacity: 0 } }

/* === Navbar (Glass Effect) === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 70px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transform: translateY(-50px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(.2,.9,.3,1), opacity 0.9s;
}

.logo img {
  height: 300px;
  width: auto;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border-radius: 8px;
  filter: drop-shadow(0 0 0 rgba(241, 138, 3, 0.9));
}

/* hover logo: aumenta + contorno Rosa */
.logo img:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px rgba(235, 150, 3, 0.7));
}

/* nav links */
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  text-decoration: none; color: #fff; font-weight: 500;
  padding: 8px 18px; border-radius: 30px; border: 1px solid transparent;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: all 0.25s ease;
}
.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(250, 106, 4, 0.2);
  transform: translateY(-2px);
}

/* menu toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: #fff; border-radius: 2px; transition: 0.25s; }

/* mobile menu */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(12px);
    width: 240px;
    height: calc(100vh - 70px);
    padding: 40px 20px;
    border-left: 1px solid rgba(255,255,255,0.12);
    transition: right 0.35s ease;
  }
  .nav-links.active { right: 0; }
  .menu-toggle { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 2.0s cubic-bezier(.2,.9,.3,1), opacity 0.9s;
}

.hero-content {
  text-align: center; 
  color: #fff; 
  max-width:700px;
  padding: 40px 30px; 
  border-radius: 24px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 20px rgba(250, 119, 4, 0.2);
  background: radial-gradient(700px 250px at 50% 20%, rgba(255,122,36,0.2), transparent 65%);
}

/* hero text */
.hero-content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #d0d0d0; }

.btn-cta {
  display: inline-block; 
  padding: 12px 30px; 
  background: linear-gradient(90deg,#ec955b,#ff7a24);
  color:#0a0a0a; 
  font-weight:600; 
  border-radius:12px; 
  text-decoration:none; 
  transition: all .25s;
}
.btn-cta:hover { 
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(248, 149, 0, 0.2); 
}

/* === SEÇÕES SOBRE / SERVIÇOS / CONTATO (resumo) === */
/* === SEÇÃO SOBRE === */
.sobre {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background: transparent;
  color: #fff;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: none;
  width: 100%;
  background: radial-gradient(700px 250px at 30% 20%, rgba(255,122,36,0.2), transparent 65%);
  
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 80px;
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.05);
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ff7a24;
  letter-spacing: -0.5px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sobre-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e1e1e1;
  margin-bottom: 20px;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sobre-midia {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-midia img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(223, 122, 0, 0.9);
  transition: 0.4s ease;
}

.sobre-midia img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(246, 125, 3, 0.25);
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
    padding: 40px 30px;
  }

  .sobre-midia img {
    max-width: 100%;
  }

  .sobre-texto h2 {
    text-align: center;
  }

  .sobre-texto p {
    text-align: center;
  }
}

/* === SEÇÃO SERVIÇOS === */
.servicos {
  padding: 120px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.servicos-container h2 {
  font-size: 2rem;
  color: #ff7a24;
  margin-bottom: 15px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.servicos-container p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #e1e1e1;
}

.servicos-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.servico-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 20px;
  padding: 30px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card h3 {
  color: #ff7a24;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.servico-card p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.5;
}

.servico:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.4);
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
}

.servico-card {
  position: relative;
  overflow: hidden;
}

.servico-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.servico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1.1);
}

.servico-card:hover .servico-img {
  opacity: 0.30; /* intensidade da imagem */
  transform: scale(1);
}

.servico-card h3,
.servico-card p {
  position: relative;
  z-index: 2;
}

/* === Responsividade === */
@media (max-width: 992px) {
  .servicos-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .servicos-cards {
    flex-direction: column;
    align-items: center;
  }
}


/* === SEÇÃO CONTATO === */
.contato {
  padding: 120px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contato-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contato-container h2 {
  font-size: 2rem;
  color: #ff7a24;
  margin-bottom: 15px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.contato-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #e1e1e1;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato input,
.contato textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
  resize: none;
}

.contato input::placeholder,
.contato textarea::placeholder {
  color: #d0d0d0;
}

.contato textarea {
  height: 120px;
}

.contato button.btn-cta {
  width: 100%;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-container {
    padding: 0 20px;
  }
}
 
.footer {
  position: relative;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  z-index: 10;
  flex-direction: column;
  gap: 10px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer p {
  font-size: 0.95rem;
  color: #ccc;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.05);
  color: #ff7a24;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.social-link:hover .social-icon {
  filter: drop-shadow(0 0 6px #ff7a24);
  transform: scale(1.15);
}

/* Navbar sempre visível na Galeria */
.navbar-galeria {
  opacity: 1 !important;
  transform: translateY(0) !important;
  justify-content: center;
}

/* Navbar sempre visível no Porfólio */
.navbar-portfolio {
  opacity: 1 !important;
  transform: translateY(0) !important;
  justify-content: center;
}

/* ==//PORTFÓLIO//==*/

.portfolio-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  max-width:700px;
  padding: 40px 30px; 
  border-radius: 24px;
  background: rgba(255,255,255,0.06); 
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 20px rgba(0,224,255,0.03);
}

.portfolio-container h1{
  font-size: 2rem;
  color: #ff7a24;
  margin-bottom: 15px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

}
.sobre-stormpix{
  padding: 120px 0 80px;
  text-align: center;  
}

.sobre-stormpix h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.sobre-stormpix p {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
  line-height: 1.6;
}

/* Equipe */
.equipe {
  padding: 80px 0;
}

.equipe h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}
.grid-equipe {
   display: flex;
   justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
}

.card-equipe {
    width: 40%;
    max-width: 450px;
    text-decoration: none;
    color: white;
}

.card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

/* Imagem */
.card-inner img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Overlay centralizado */
.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover correto */
.card-inner:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.card-inner:hover .overlay {
    opacity: 1;
}

/* == JEAN PORTFÓLIO == */
/* ===== Base (não mexe na sua navbar) ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b0b0f;
  color: #f2f2f2;
}

/* ===== HERO ===== */
.jp-hero{
  position: relative;
  min-height: 1vh;           /* era 5vh (isso quebra tudo) */
  padding: 10px 0 10px;       /* espaço pra navbar fixa */
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.jp-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(900px 400px at 70% 40%, rgba(255,122,36,0.16), transparent 65%),
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.65) 100%);
}

/* CONTEÚDO (texto por cima) */
.jp-hero-inner{
  position: relative;
  z-index: 3;
  width: min(1000px, 92%);
  margin: 0 auto;
  min-height: calc(80vh - 200px); /* garante altura útil (navbar + padding) */
  display: flex;
  align-items: center;
}

.jp-hero-text h1{
  font-size: clamp(36px, 4.3vw, 64px);
  letter-spacing: -0.02em;
  max-width: 700px;
}
.jp-role{
  margin-top: 10px;
  letter-spacing: .22em;
  font-size: 13px;
  opacity: .85;
  color: #ff7a24;
  font-weight: 700;
}
.jp-tagline{
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
  opacity: .85;
  max-width: 52ch;
}
.jp-tagline strong{
  color: #ff7a24;
}

.jp-hero-actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
}

.jp-btn-primary{
  background: #ff7a24;
  color: #0b0b0f;
  border-color: rgba(255,122,36,0.45);
}
.jp-btn-primary:hover{ filter: brightness(1.05); }

.jp-btn-ghost{
  background: rgba(255,255,255,0.04);
  color: #fff;
}

/* FUNDO (imagem) */
.jp-hero-media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.jp-hero-photo{
  width: 100%;
  height: 100%;
}

.jp-hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}


/* ===== APP ===== */
.jp-app{
  width: min(1600px, 96%);
  margin: 0 auto;
  padding: 50px 0 80px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 40px;
}

/* ===== Timeline ===== */
.jp-timeline{
  position: sticky;
  top: 140px;
  height: calc(100vh - 160px);
}

.jp-rail{
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
}
.jp-rail-fill{
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 0%;
  background: rgba(255,122,36,0.95);
  border-radius: 2px;
  transition: height .25s ease;
}

.jp-years{
  position: relative;
  display: grid;
  gap: 22px;
  padding-top: 6px;
}

.jp-year{
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;

  display: grid;
  grid-template-columns: 18px auto;
  gap: 12px;
  align-items: center;

  color: rgba(255,255,255,0.70);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: left;
}

.jp-year::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(11,11,15,0.9);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
  transition: .2s ease;
}

.jp-year.is-active{
  color: #ff7a24;
}
.jp-year.is-active::before{
  border-color: rgba(255,122,36,0.85);
  background: #ff7a24;
  box-shadow: 0 0 0 5px rgba(255,122,36,0.12);
}
@media (max-width: 980px){
  .jp-app{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 60px;
  }
}
/* ===== Feed ===== */
.jp-feed{
  border-top: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 26px 60px;
}
@media (max-width: 768px){
  .jp-feed{
    padding: 20px 16px;
  }
}
/* Transição do conteúdo (troca por ano) */
.jp-swap{
  transition: opacity .22s ease, transform .22s ease;
}
.jp-swap.is-fading{
  opacity: 0;
  transform: translateY(8px);
}

/* Header do ano */
.jp-year-header{
 position: relative;
  padding: 22px;
  padding-right: min(46%, 560px); /* reserva espaço para a capa */
  min-height: 260px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
@media (max-width: 768px){
  .jp-year-header{
    padding-right: 22px;
  }
}
.jp-year-header::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 250px at 30% 20%, rgba(255,122,36,0.10), transparent 65%);
  pointer-events: none;
}

.jp-year-big{
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

.jp-year-meta h2{
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.jp-year-meta p{
  margin-top: 10px;
  opacity: .80;
  line-height: 1.6;
  max-width: 70ch;
}

.jp-year-cover{
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42%;
  max-width: 520px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  opacity: .95;
}

/* Panels */
.jp-panel{
  margin-top: 22px;
  padding: 50px;
  border-radius: 18px;
  background: rgba(67, 62, 57, 0.1);
  border: 1px solid rgba(255,255,255,0.10);
}

.jp-panel-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.jp-panel-head h3{
  letter-spacing: .20em;
  font-size: 12px;
  opacity: .9;
}
.jp-accent-line{
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255,122,36,0.75), rgba(255,255,255,0.12));
}

/* Highlights grid */
.jp-highlights{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: auto;
}

.jp-hcard{
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.jp-hcard .jp-ico{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,122,36,0.12);
  border: 1px solid rgba(255,122,36,0.28);
  margin-bottom: 10px;
}
.jp-hcard strong{
  display: block;
  font-size: 14px;
}
.jp-hcard span{
  display: block;
  margin-top: 6px;
  opacity: .78;
  font-size: 13px;
  line-height: 1.45;
}

/* Works grid */
.jp-works{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: auto;
}

.jp-work{
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.jp-hcard,
.jp-work{
  height: 100%;
}

.jp-work-thumb{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.jp-work-body{
  padding: 14px;
}
.jp-work-body strong{
  display: block;
}
.jp-work-body span{
  display: block;
  margin-top: 6px;
  opacity: .75;
  font-size: 13px;
}

/* CTA */
.jp-cta{
  margin-top: 26px;
  padding: 60px 22px;
  border-radius: 18px;
  text-align: center;
  background: radial-gradient(700px 240px at 50% 30%, rgba(255,122,36,0.12), transparent 65%);
  border: 1px solid rgba(255,255,255,0.10);
}

.jp-cta h2{
  font-size: 26px;
  letter-spacing: -0.01em;
}

.jp-social{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.jp-social a{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: rgba(255,255,255,0.85);
}

/* Responsive */

@media (max-width: 980px){
  .jp-hero-inner{ grid-template-columns: 1fr; }
  .jp-hero-media{ justify-content: flex-start; }
  .jp-year-cover{ position: static; width: 100%; margin-top: 14px; }

  .jp-app{ grid-template-columns: 1fr; }
  .jp-timeline{ display: contents; }
  .jp-highlights{ grid-template-columns: 1fr; }
  .jp-works{ grid-template-columns: 1fr; }
  
}
@media (max-width: 768px){
  .jp-year-big{
    font-size: 32px;
  }
  .jp-panel{
    padding: 24px;
  }
  .jp-panel{
    padding: 24px;
  }
   .jp-hero-inner{
    min-height: 300px;
    padding: 40px 0;
  }

  .jp-hero-text h1{
    font-size: 32px;
  }

  .jp-tagline{
    font-size: 16px;
  }

  .jp-tab-btn{
    width: 100%;
    text-align: center;
  }
  .jp-modal-dialog{
    width: calc(100% - 16px);
    margin: 8px auto;
  }
}

/* == SOBRE/FORMAÇÃO/TRAJETÓRIA ==*/
.jp-tabs {
  margin-top: 60px;
}

.jp-tabs-menu {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.jp-tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.jp-tab-btn.active {
  color: #ff7a24;
  border-bottom: 2px solid #ff7a24;
}

.jp-tabs-content {
  margin-top: 26px;
  padding: 60px 22px;
  border-radius: 18px;
  background: radial-gradient(700px 240px at 50% 30%, rgba(255,122,36,0.12), transparent 65%);
  border: 1px solid rgba(255,255,255,0.10);
}

#sobre {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 18px;
}
#formacao {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 18px;
}
.jp-tab-panel {
  display: none;
  line-height: 1.6;
  max-width: 1200px;
  text-align: center;
}


.jp-tab-panel.active {
  display: block;
}
#trajetoria{
  width: 100%;
  text-align: left;
}

#trajetoria .jp-app{
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* CERTIFICADOS*/
.jp-certificados {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cert-card {
  cursor: pointer;
  background: #111;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.cert-card:hover {
  transform: scale(1.05);
  border-color: #ffa600;
}

.cert-card img {
  width: 100%;
  border-radius: 8px;
}

.cert-card p {
  margin-top: 10px;
  font-size: 14px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
/* == FUNÇÃO MODAL == */
.jp-work{
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.jp-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.jp-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.jp-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(5px);
}

.jp-modal-dialog{
  position: relative;
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: auto;
  z-index: 2;
}

.jp-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.jp-modal-content{
  padding: 18px;
}

.jp-modal-media{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.jp-modal-video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.jp-modal-image{
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 78vh;
}

.jp-modal-image img{
  max-width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
}

.jp-modal-info{
  padding-top: 14px;
}

.jp-modal-info h3{
  font-size: 22px;
  margin-bottom: 6px;
}

.jp-modal-info p{
  opacity: .75;
}