*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background:
    linear-gradient(
      180deg,
      #0b0b0f 0%,
      #0e0e16 50%,
      #0b0b0f 100%
    );
    color: #eaeaea;
    font-family: "Courrier New", monospace;
    line-height: 1.6;
    padding-top: 80px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../assets/img/noise.png");
  opacity: 0.09;

  pointer-events: none;
  z-index: -1;
}

.header {
    background: linear-gradient(
        rgba(11, 11, 15, 0.6),
        rgba(11, 11, 15, 0.85)
    ),
    url(../assets/img/bannervini.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;

    min-height: 80vh;
    display: flex;
    align-items: center;
}
.home{
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 1100px;
    margin: 0 auto;
    gap: 150px;
    padding: 80px 20px;
}
.home-txt{
    max-width: 600px;
}
.home-img img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    transform: translateX(50px) translateY(-20px);

    border-radius: 50%;
    box-shadow: 0 0 40px rgba(128, 0, 255, 0.6);
}
header h1 {
    font-size: 2.5rem;
    color: #b366ff;
}
header p {
    margin: 10px 0 20px;
    font-size: 1.1rem;
}
.home a{
    display: inline-block;
    padding: 12px 24px;
    background-color: #7a00cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
.home a:hover{
    background-color: #9a33ff;
}
main section{
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.servicos-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.servico-card{
    background: rgba(11, 11, 11, 0.6);
    border-radius: 16px;
    padding: 40px 30px;

    text-align: center;

    transition: transform 0.3s, box-shadow 0.3s;
}
.servico-icon{
    font-size: 3rem;
    color: #b366ff;
    margin-bottom: 20px;
}
.servico-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(128, 0, 255, 0.25);
}
article{
    background-color: #12001f;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}
.jogos{
    padding: 100px 20px;
}
.jogos-banner{
    display: block;
    background: 
        linear-gradient(
            rgba(11, 11, 15, 0.7),
            rgba(11, 11, 15, 0.9)
        ),
        url(../assets/img/perfilitch.png);

        background-size: cover;
        background-position: center;

        border-radius: 20px;
        text-decoration: none;
        color: #eaeaea;

        padding: 80px 20px;

        transition: transform 0.3s, box-shadow 0.3s;
}
.jogos-content{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.jogos-content h2{
    font-size: 2.2rem;
    color: #b366ff;
    margin-bottom: 20px;
}
.jogos-content p{
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}
.jogos-cta{
    display: inline-block;
    padding: 14px 28px;
    background-color: #fa5c5c; /*cor itch.io*/
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}
.jogos-banner:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
footer{
    text-align: center;
    padding: 30px;
    background-color: #0b0b0f;
    font-size: 0.9rem;
    opacity: 0.7;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background-color: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(6px);

    padding: 15px 30px;
    z-index: 1000;
}
.menu-links{
    list-style: none;
    display: flex;
    gap: 20px;
}
.menu-links a{
    color: #eaeaea;
    text-decoration: none;
    font-size: 0.95rem;
}
.menu-links a:hover{
    color: #b366ff;
}
.WhatsApp-float{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 55px;
    height: 55px;

    background-color: #9a33ff;
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.2rem;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;

    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.WhatsApp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(128, 0, 255, 0.25);
}
.projetos-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.projeto-card{
    position: relative;
    height: 260px;

    background-size: cover;
    background-position: center;

    border-radius: 16px;
    text-decoration: none;
    color: #fff;

    overflow: hidden;
    transition: transform 0.3s;
}
.projeto-card:nth-child(1){
    background-image: url(../assets/img/lpcostura.png);
}
.projeto-card:nth-child(2){
    background-image: url(../assets/img/pfsaraconnor.png);
}
.projeto-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.8)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;
}
.projeto-card:hover{
    transform: translateY(-6px);
}
.projeto-card:hover .projeto-overlay{
    background: linear-gradient(
        rgba(128, 0, 255, 0.25),
        rgba(0, 0, 0, 0.9)
    );
}
.logo{
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;
    font-weight: bold;
    font-size: 1.7rem;

    transition: box-shadow 0.3s;
}
.logo i{
    color: #b366ff;
}
.logo-bg{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    

    opacity: 0.35;
    z-index: 0;

    transform: scale(0.6);

    pointer-events: none;
}
.logo-txt{
    position: relative;
    z-index: 1;    
}
.contato{
    padding: 120px 20px;
    background: linear-gradient(
        135deg,
        rgba(128, 0, 255, 0.15),
        rgba(0, 0, 0, 0.9)
    );
}
.contato-box{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);

    padding: 60px 40px;
    border-radius: 24px;
}
.contato-box h2{
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}
.contato-box p{
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}
.contato-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #b366ff;
    color: #fff;

    padding: 16px 36px;
    border-radius: 50px;

    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;

    transition: transform 0.3s, box-shadow 0.3s;
}
.contato-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(128, 0, 255, 0.25);
}
.contato-box::before{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #b366ff;
    margin: 0 auto 30px;
    border-radius: 10px;
}
/* ESCONDE CHECKBOX */
#menu-toggle {
  display: none;
}

/* ÍCONE HAMBURGUER */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #b366ff;
  border-radius: 5px;
}

@media (max-width: 768px) {

  /* HEADER / HOME */
  .home {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }

  .home-img img {
    width: 260px;
    height: 260px;
    transform: none;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  /* MENU */
  .menu {
    padding: 12px 20px;
  }

  .menu-links {
    gap: 12px;
  }

  .menu-links a {
    font-size: 0.85rem;
  }

  /* SEÇÕES */
  main section {
    padding: 60px 20px;
  }

  /* SERVIÇOS */
  .servico-card {
    padding: 30px 20px;
  }

  /* PROJETOS */
  .projeto-card {
    height: 200px;
  }

  /* JOGOS */
  .jogos-banner {
    padding: 60px 20px;
  }

  .jogos-content h2 {
    font-size: 1.8rem;
  }

  /* CONTATO */
  .contato-box {
    padding: 40px 20px;
  }

  .contato-box h2 {
    font-size: 1.8rem;
  }

  /* WHATSAPP FLOAT */
  .WhatsApp-float {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }
  .menu-icon {
  display: flex;
}

/* menu fechado */
.menu-links {
  position: absolute;
  top: 100%;
  right: 0;

  background: rgba(11, 11, 15, 0.98);
  width: 100%;

  flex-direction: column;
  align-items: center;

  padding: 20px 0;
  gap: 20px;

  transform: translateY(-200%);
  transition: transform 0.3s ease;
}

/* menu aberto */
#menu-toggle:checked ~ .menu-links {
  transform: translateY(0);
}

}
