:root{
  --bg:#0b0b0c;
  --surface:#0f1113;
  --muted:#a6a6a6;
  --text:#eaeaea;
  --accent:#7c4dff; /* tom de destaque roxo */
  --matrix-color: #7c4dff; /* cor do efeito matrix */
  --matrix-intensity: 1; /* 0 a 1 para densidade/intensidade */
  --matrix-speed: 0.35; /* multiplicador de velocidade (0.1 a 2) */
  --matrix-alpha: 0.45; /* opacidade dos dígitos (0.1 a 1) */
  --radius:10px;
}
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html,body{
  height:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:#000;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Canvas Matrix em containers (hero, footer) */
.matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .matrix-canvas { 
    display: none !important; 
  }
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 1rem;
  width:100%;
}

/* Responsividade de imagens */
img{
  max-width:100%;
  height:auto;
  display:block;
}

/* garantir conteúdo acima do background */
main, footer.site-footer{position:relative;z-index:10}

/* imagens das miniaturas: cobrir área */
.project-media .thumb{width:100%;height:100%;display:block}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion:reduce){
  /* nothing special */
}

/* Smooth scroll */
html{
  scroll-behavior:smooth;
}

/* Header */
.site-header{
  position:fixed !important;
  left:0;
  right:0;
  top:0;
  z-index:100;
  backdrop-filter:blur(12px);
  background:rgba(11,11,12,0.95);
  border-bottom:1px solid rgba(124,77,255,0.2);
  overflow:hidden;
  box-shadow:0 2px 20px rgba(0,0,0,0.3);
  transition:transform 0.4s ease-out, background 0.3s ease, border-bottom-color 0.3s ease, box-shadow 0.3s ease;
  transform:translateY(0);
  will-change:transform;
}
.site-header.scrolled{
  background:rgba(11,11,12,0.98);
  border-bottom-color:rgba(124,77,255,0.3);
  box-shadow:0 2px 30px rgba(124,77,255,0.15);
}
.site-header.hidden{
  transform:translateY(-100%) !important;
  box-shadow:none;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.65rem 0;
  position:relative;
  z-index:101;
}
.brand{
  color:var(--text);
  font-weight:600;
  text-decoration:none;
  font-size:0.95rem;
  transition:opacity 0.3s ease;
}
.brand:hover{
  opacity:0.8;
}
.brand img{
  height:42px;
  display:inline-block;
  vertical-align:middle;
}
.nav{
  display:flex;
  gap:0.35rem;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:0.45rem 0.75rem;
  border-radius:6px;
  font-weight:500;
  font-size:0.9rem;
  transition:all 0.3s ease;
  position:relative;
}
.nav a::after{
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%) scaleX(0);
  width:80%;
  height:2px;
  background:var(--accent);
  transition:transform 0.3s ease;
}
.nav a:hover{
  color:var(--text);
  background:rgba(124,77,255,0.1);
}
.nav a:hover::after{
  transform:translateX(-50%) scaleX(1);
}
.nav a.active{
  color:var(--accent);
  background:rgba(124,77,255,0.15);
}
.socials{
  display:flex;
  gap:0.4rem;
  margin-left:0.75rem;
  padding-left:0.75rem;
  border-left:1px solid rgba(255,255,255,0.1);
}
.socials a{
  color:var(--muted);
  display:inline-flex;
  padding:0.35rem;
  border-radius:5px;
  transition:all 0.3s ease;
}
.socials a svg{
  width:18px;
  height:18px;
}
.socials a:hover{
  color:var(--accent);
  background:rgba(124,77,255,0.1);
  transform:translateY(-2px);
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  color:var(--text);
  cursor:pointer;
  z-index:102;
  position:relative;
}
.hamburger{
  width:26px;
  height:2px;
  background:var(--text);
  display:block;
  position:relative;
  transition:all 0.3s ease;
}
.hamburger::after,
.hamburger::before{
  content:"";
  position:absolute;
  left:0;
  width:26px;
  height:2px;
  background:var(--text);
  transition:all 0.3s ease;
}
.hamburger::before{top:-7px}
.hamburger::after{top:7px}

/* Overlay for mobile nav */
body.nav-open::before{
  content:'';
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.7);
  z-index:90;
  backdrop-filter:blur(4px);
}

/* Hero */
.hero{
  padding-top:120px;
  padding-bottom:80px;
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse at top, rgba(124,77,255,0.08), transparent 50%);
}
.hero-content{
  text-align:center;
  max-width:900px;
  margin:0 auto;
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.hero-logo{
  margin-bottom:2.5rem;
  animation:fadeInDown 0.8s ease-out;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-logo img{
  height:200px;
  width:auto;
  filter:drop-shadow(0 8px 24px rgba(124,77,255,0.6));
  margin:0 auto;
  display:block;
}
.hero-title{
  font-size:clamp(2rem, 5vw, 3.5rem);
  margin:0 0 1rem 0;
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.02em;
  width:100%;
}
.hero .lead{
  color:var(--muted);
  font-size:clamp(1rem, 2.5vw, 1.25rem);
  max-width:60ch;
  margin:0 auto;
  line-height:1.6;
  width:100%;
}
.accent{color:var(--accent)}

@keyframes fadeInDown{
  from{
    opacity:0;
    transform:translateY(-30px) scale(0.95);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.section{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:120px 0 80px 0;
  position:relative;
}
.section::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(11,11,12,0.4);
  backdrop-filter:blur(8px);
  z-index:-1;
  pointer-events:none;
}
.section-compact{
  min-height:auto;
  padding:48px 0;
}
.section h2{
  font-size:2rem;
  margin-bottom:1.5rem;
  font-weight:700;
  color:var(--text);
  letter-spacing:-0.02em;
}

/* About section with image */
.about-content{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:3rem;
  align-items:center;
  margin-top:2rem;
}
.about-image{
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-image img{
  width:100%;
  height:auto;
  max-width:280px;
  border-radius:16px;
  filter:drop-shadow(0 8px 24px rgba(124,77,255,0.4));
  transition:transform 0.3s ease;
}
.about-image img:hover{
  transform:scale(1.02);
}
.about-text p{
  margin:0 0 1.25rem 0;
  line-height:1.8;
  font-size:1.05rem;
  color:var(--muted);
  word-wrap:break-word;
  overflow-wrap:break-word;
  hyphens:auto;
}
.about-text p:last-child{
  margin-bottom:0;
}

/* CEO section */
.ceo-content{
  display:flex;
  gap:2.5rem;
  align-items:flex-start;
  margin-top:2rem;
}
.ceo-image{
  flex-shrink:0;
}
.ceo-image img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:16px;
  border:3px solid rgba(124,77,255,0.2);
  filter:drop-shadow(0 8px 24px rgba(124,77,255,0.3));
  transition:transform 0.3s ease, border-color 0.3s ease;
}
.ceo-image img:hover{
  transform:scale(1.02);
  border-color:rgba(124,77,255,0.4);
}
.ceo-info h3{
  font-size:1.5rem;
  margin:0 0 0.5rem 0;
  color:var(--text);
  font-weight:700;
  word-wrap:break-word;
}
.ceo-info .role{
  color:var(--accent);
  font-size:1rem;
  font-weight:600;
  margin-bottom:1rem;
  display:block;
}
.ceo-info p{
  margin:0 0 1.25rem 0;
  line-height:1.8;
  font-size:1.05rem;
  color:var(--muted);
  word-wrap:break-word;
}
.ceo-info p:last-child{
  margin-bottom:0;
}
.ceo-info a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  transition:color 0.3s ease;
  word-wrap:break-word;
}
.ceo-info a:hover{
  color:rgba(124,77,255,0.8);
  text-decoration:underline;
}

/* Projects grid */
.projects-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:1.5rem}
.project-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 4px 12px rgba(2,6,23,0.4);
  border:1px solid rgba(255,255,255,0.05);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(124,77,255,0.2);
}
.project-media{height:200px;display:block;flex-shrink:0;overflow:hidden}
.project-media .thumb{width:100%;height:100%;display:block;object-fit:cover;transition:transform 0.3s ease}
.project-card:hover .project-media .thumb{transform:scale(1.05)}
.project-body{padding:1.25rem;flex:1}
.project-body h3{margin:0 0 0.5rem 0;font-size:1.15rem}
.project-body p{margin:0 0 1rem 0;color:var(--muted);font-size:0.95rem;line-height:1.6}
.project-tags{display:flex;gap:0.5rem;flex-wrap:wrap}
.tag{
  display:inline-block;
  padding:0.25rem 0.6rem;
  background:rgba(124,77,255,0.15);
  color:var(--accent);
  border-radius:4px;
  font-size:0.75rem;
  font-weight:600;
  border:1px solid rgba(124,77,255,0.3);
}
.project-actions{display:flex;gap:0.5rem;padding:1rem 1.25rem;border-top:1px solid rgba(255,255,255,0.05);margin-top:auto}
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  justify-content:center;
  padding:0.6rem 1rem;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  font-size:0.9rem;
  transition:all 0.2s ease;
}
.btn svg{flex-shrink:0}
.btn-outline{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.1);
}
.btn-outline:hover{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.2);
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border:1px solid rgba(124,77,255,0.3);
}
.btn-primary:hover{
  background:rgba(124,77,255,0.9);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(124,77,255,0.4);
}

/* Skills grid */
.skills-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:1.5rem;
  margin-top:1.5rem;
}
.skill-item{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:1.25rem;
  background:linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.05);
  transition:all 0.3s ease;
}
.skill-item:hover{
  transform:translateY(-4px);
  border-color:rgba(124,77,255,0.3);
  box-shadow:0 8px 24px rgba(124,77,255,0.15);
}
.skill-icon{
  width:48px;
  height:48px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.skill-icon svg,
.skill-icon img{
  width:100%;
  height:100%;
  display:block;
}
.skill-info h3{
  margin:0 0 0.25rem 0;
  font-size:1rem;
  color:var(--text);
}
.skill-info p{
  margin:0;
  font-size:0.85rem;
  color:var(--muted);
}

/* Contact section */
.contact-options{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:1.5rem;
  margin-top:2rem;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.contact-card{
  display:flex;
  align-items:center;
  gap:1.25rem;
  padding:1.75rem 1.5rem;
  background:linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.05);
  text-decoration:none;
  transition:all 0.3s ease;
}
.contact-card:hover{
  transform:translateY(-4px);
  border-color:rgba(124,77,255,0.3);
  box-shadow:0 8px 24px rgba(124,77,255,0.15);
  background:linear-gradient(135deg, rgba(124,77,255,0.05), rgba(124,77,255,0.02));
}
.contact-card svg{
  color:var(--accent);
  flex-shrink:0;
  transition:transform 0.3s ease;
}
.contact-card:hover svg{
  transform:scale(1.1);
}
.contact-info h3{
  margin:0 0 0.25rem 0;
  font-size:1.1rem;
  color:var(--text);
  font-weight:600;
}
.contact-info p{
  margin:0;
  font-size:0.9rem;
  color:var(--muted);
}

/* Footer */
.site-footer{
  padding:3rem 0 1.5rem 0;
  color:var(--muted);
  background:linear-gradient(180deg, rgba(11,11,12,0.8), rgba(11,11,12,0.95));
  border-top:1px solid rgba(124,77,255,0.2);
  position:relative;
  z-index:10;
}
.site-footer .footer-content,
.site-footer .footer-bottom{
  position:relative;
  z-index:1;
}
.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:2rem;
}
.footer-content{
  justify-content:center;
}
.footer-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.footer-logo{
  margin-bottom:1rem;
}
.footer-logo img{
  height:80px;
  width:auto;
  filter:drop-shadow(0 4px 12px rgba(124,77,255,0.4));
  margin:0 auto;
}
.footer-text{
  margin:0;
  font-size:0.95rem;
  color:var(--muted);
  min-height:1.5em;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.05);
  padding-top:1.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-copyright{
  margin:0;
  font-size:0.85rem;
  color:rgba(255,255,255,0.5);
  text-align:left;
}
.footer-socials{
  display:flex;
  gap:1rem;
  align-items:center;
}
.footer-socials a{
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
  transition:all 0.3s ease;
}
.footer-socials a:hover{
  color:var(--accent);
  background:rgba(124,77,255,0.1);
  border-color:rgba(124,77,255,0.3);
  transform:translateY(-3px);
}

/* Responsividade */

/* Tablets grandes e laptops pequenos */
@media (max-width:1200px){
  .container{padding:0 1.5rem}
  .about-content{grid-template-columns:260px 1fr;gap:2.5rem}
  .about-image img{max-width:260px}
  .ceo-content{gap:2.5rem}
  .ceo-image img{width:190px;height:190px}
}

/* Tablets */
@media (max-width:1000px){
  .projects-grid{grid-template-columns:1fr}
  .skills-grid{grid-template-columns:repeat(auto-fit, minmax(220px, 1fr))}
  .about-content{grid-template-columns:220px 1fr;gap:2rem}
  .about-image img{max-width:220px}
  .about-text p{font-size:1rem}
  .ceo-content{gap:2rem}
  .ceo-image img{width:170px;height:170px}
  .ceo-info h3{font-size:1.35rem}
  .ceo-info p{font-size:1rem}
  .section h2{font-size:1.75rem}
  .hero-logo img{height:180px}
  .hero-title{font-size:clamp(2rem, 5vw, 3rem)}
  .footer-logo img{height:70px}
  .footer-socials a{width:40px;height:40px}
}

/* Tablets pequenos */
@media (max-width:768px){
  .container{padding:0 1.25rem}
  .section{padding:100px 0 70px 0}
  .section h2{font-size:1.6rem;margin-bottom:1.25rem}
  .hero{padding-top:110px;padding-bottom:60px}
  .hero-logo{margin-bottom:2rem}
  .hero-logo img{height:150px;margin:0 auto}
  .about-content{grid-template-columns:1fr;gap:2rem;text-align:center}
  .about-image{order:-1}
  .about-image img{max-width:220px;margin:0 auto}
  .ceo-content{flex-direction:column;gap:2rem;text-align:center;align-items:center}
  .ceo-image img{width:180px;height:180px}
  .project-media{height:220px}
  
  .footer-content{flex-direction:column;gap:2rem}
  .footer-center{order:1}
    .footer-bottom{flex-direction:column;gap:1.5rem;text-align:center}
    .footer-copyright{text-align:center;order:2}
    .footer-socials{order:1;justify-content:center}
}
/* Mobile */
@media (max-width:600px){
  .container{padding:0 1rem}
  .header-inner{gap:0.5rem;padding:0.5rem 0}
  .brand img{height:38px}
  
  /* Menu mobile adjustments for smaller screens */
  .nav{
    width:260px;
    top:52px;
    max-height:calc(100vh - 52px);
  }
  
  /* Sections */
  .hero{
    padding-top:100px;
    padding-bottom:60px;
    min-height:auto;
  }
  .hero-logo{
    margin-bottom:2rem;
  }
  .hero-logo img{
    height:130px;
    margin:0 auto;
  }
  .hero-title{
    font-size:clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom:1rem;
  }
  .hero .lead{
    font-size:1rem;
    line-height:1.6;
  }
  
  .section{
    min-height:auto;
    padding:70px 0 50px 0;
  }
  .section h2{
    font-size:1.5rem;
    margin-bottom:1.25rem;
  }
  
  /* About */
  .about-content{
    grid-template-columns:1fr;
    gap:1.75rem;
    text-align:center;
  }
  .about-image img{
    max-width:180px;
    margin:0 auto;
  }
  .about-text p{
    font-size:0.95rem;
    line-height:1.7;
  }
  
  /* CEO */
  .ceo-content{
    flex-direction:column;
    gap:1.75rem;
    text-align:center;
    align-items:center;
  }
  .ceo-image img{
    width:150px;
    height:150px;
  }
  .ceo-info h3{
    font-size:1.35rem;
  }
  .ceo-info .role{
    font-size:0.95rem;
  }
  .ceo-info p{
    font-size:0.95rem;
    line-height:1.7;
  }
  
  /* Projects */
  .projects-grid{
    grid-template-columns:1fr;
  }
  .project-media{
    height:200px;
  }
  .project-body{
    padding:1rem;
  }
  .project-body h3{
    font-size:1.1rem;
  }
  .project-body p{
    font-size:0.9rem;
  }
  
  /* Skills */
  .skills-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .skill-item{
    padding:1rem;
  }
  .skill-icon{
    width:42px;
    height:42px;
  }
  .skill-info h3{
    font-size:0.95rem;
  }
  .skill-info p{
    font-size:0.8rem;
  }
  
  /* Contact */
  .contact-options{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .contact-card{
    padding:1.5rem 1.25rem;
  }
  .contact-card svg{
    width:28px;
    height:28px;
  }
  .contact-info h3{
    font-size:1rem;
  }
  .contact-info p{
    font-size:0.85rem;
  }
  
  /* Footer mobile */
  .footer-content{
    flex-direction:column;
    gap:1.5rem;
    margin-bottom:1.5rem;
  }
  .footer-center{order:1}
  .footer-logo img{
    height:60px;
  }
  .footer-text{font-size:0.9rem}
    .footer-bottom{
      flex-direction:column;
      gap:1.5rem;
      text-align:center;
    }
    .footer-copyright{
      text-align:center;
      font-size:0.8rem;
      order:2;
    }
  .footer-socials{
      order:1;
    justify-content:center;
    gap:0.875rem;
  }
  .footer-socials a{
    width:40px;
    height:40px;
  }
}

/* Mobile pequeno */
@media (max-width:400px){
  .container{padding:0 0.875rem}
  .hero-logo{margin-bottom:1.5rem}
  .hero-logo img{height:100px;margin:0 auto}
  .hero-title{font-size:clamp(1.35rem, 8vw, 2rem)}
  .section h2{font-size:1.35rem}
  .about-image img{max-width:150px}
  .ceo-image img{width:130px;height:130px}
  .project-media{height:180px}
  .brand img{height:40px}
}

/* Landscape mobile */
@media (max-height:500px) and (orientation:landscape){
  .hero{
    padding-top:90px;
    padding-bottom:40px;
    min-height:auto;
  }
  .hero-logo{margin-bottom:1rem}
  .hero-logo img{height:80px;margin:0 auto}
  .section{padding:60px 0 40px 0}
  .section h2{font-size:1.25rem}
  .about-content{gap:1.5rem}
  .about-image img{max-width:120px}
  .ceo-content{gap:1.5rem}
  .ceo-image img{width:100px;height:100px}
}

/* Print styles */
@media print{
  .site-header,
  .nav-toggle,
  .matrix-canvas{
    display:none;
  }
  body{
    background:#fff;
    color:#000;
  }
  .section{
    min-height:auto;
    page-break-inside:avoid;
  }
}

@media (max-width:768px){
  .nav-toggle{
    display:block !important;
    position:relative;
    z-index:10000 !important;
  }
  
  .nav{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    width:100vw !important;
    height:100vh !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:1.5rem !important;
    padding:2rem !important;
    background:#0a0a0a !important;
    backdrop-filter:blur(10px) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transition:opacity 0.3s ease, visibility 0.3s ease !important;
    z-index:9999 !important;
    overflow-y:auto !important;
  }
  
  .nav.open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:all !important;
  }
  
  .nav a{
    display:block !important;
    padding:1rem 2rem !important;
    color:#ffffff !important;
    background:transparent !important;
    text-align:center !important;
    border-radius:8px !important;
    font-size:1.25rem !important;
    font-weight:500 !important;
    min-width:200px !important;
    text-decoration:none !important;
    transition:all 0.2s ease !important;
  }
  
  .nav a:hover{
    background:rgba(124,77,255,0.3) !important;
    color:#ffffff !important;
    transform:scale(1.05) !important;
  }
  
  .nav a::after{
    display:none !important;
  }
  
  .nav .socials{
    display:flex !important;
    gap:1rem !important;
    justify-content:center !important;
    margin-top:2rem !important;
    padding-top:1.5rem !important;
    border-top:1px solid rgba(255,255,255,0.2) !important;
    border-left:none !important;
    padding-left:0 !important;
    margin-left:0 !important;
  }
  
  .nav .socials a{
    color:#ffffff !important;
    background:transparent !important;
    padding:0.5rem !important;
    min-width:auto !important;
  }
  
  .nav .socials svg{
    fill:#ffffff !important;
    width:24px !important;
    height:24px !important;
  }
  
  body.nav-open{
    overflow:hidden !important;
  }
  
  body.nav-open::before{
    display:none !important;
  }
}
