body{
    background-color: #0e0736;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
.topo-fixo {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: rgba(14, 7, 54, 0.65); /* translúcido */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari */

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.secao-1{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background-image: url("../img/fundo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.secao-1::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 7, 54, 0.8); /* 50% */
    z-index: 1;
}
.secao-1 > *{
    position: relative;
    z-index: 2;
}
/*MENU*/
/* HEADER */
.header {
    width: 100%;
    padding: 30px 60px;
    z-index: 100;
}
/* MENU */
.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}
/* LINKS */
.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
/* EFEITO UNDERLINE */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #38b6ff;
    transition: width 0.3s;
}
.menu a:hover::after {
    width: 100%;
}
.menu a:hover {
    color: #38b6ff;
}
/* parte da logo */
.marca{
    display: flex;
    gap: 18px;
    align-items: center;  
}
.imglogo{
    height: 40px;
    width: 40px;
}
.nome{
    font-size: 30px;
    color: #dddcdc;
    letter-spacing: 10px;
}
i {
  font-size: 30px;
  color:  #d7d4d4;
}
/* parte de saudacao ao user */
.title{
    display: flex;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    margin-top: 30px;
    z-index: 10;
   
    max-width: 10000px;
}
.text1{
    font-size: 120px;
    color: #ffffff;
    margin-bottom: 10px;
}
.text2{
    font-size: 120px;
    color: #38b6ff;
    margin: 0;
    letter-spacing: 2px;
}
.descricao{
    font-size: 25px;
    letter-spacing: 5px; 
    color: aliceblue;   
}
.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
/*secao dois*/
.barra{
    width: 100%;
    height: 20px;
    background-color: rgb(15, 0, 84);
}
.sobre{
    width: 100%;
    height: 600px;
    background-color: #0e0736;
    display: flex;
    align-items: center;
    gap: 80px;
}
.logosobre{
    margin-left: 200px;
}
.logodois{
    font-size:600px;
    color: aqua;
    font-weight: 900;
    margin-top: 80px;
}
.titletext{
    max-width: 600px;
    margin-top: 0px;
}
.titulosobre{
    color: #38b6ff;
    font-size: 55px;
    margin-left: 60px;
    font-family: 'Playfair Display', serif;
}
.um{
    font-size: 20px ;
    margin-top: 40px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}
.dois{
    font-size:  20px;
    color: #ffffff;
    margin-top: 30px;
    margin-left: 60px;
    font-family: 'Lato', sans-serif;
}
.tres{
    font-size: 20px;
    color: #ffffff;
    margin-top: 30px;
    font-family: 'Lato', sans-serif;
}
.portfolio {
  padding: 100px 10%;
  background-color: #0e0736;
}
.meu {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
}
.meu span {
  color: #38b6ff;
}
.portfolio-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  background-color: #140c4d;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  position: relative;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}
.card p {
  color: #cfd8ff;
  font-size: 15px;
  margin-bottom: 25px;
}
.status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}
/* Status */
.concluido .status {
  background-color: #38b6ff;
  color: #0e0736;
}
.andamento .status {
  background-color: #ffb703;
  color: #0e0736;
}
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #38b6ff;
  color: #0e0736;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #5cc8ff;
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}
.card-img {
  transition: transform 0.4s ease;
}
.card:hover .card-img {
  transform: scale(1.05);
}
.contato{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
}
/* From Uiverse.io by vinodjangid07 */ 
.cardi {
  width: fit-content;
  height: fit-content;
  background-color: rgba(238, 238, 238, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}
/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #EA4335;
  transition-duration: .3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128C7E;
  transition-duration: .3s;
}
.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}
.socialSvg {
  width: 17px;
}
.socialSvg path {
  fill: rgb(255, 255, 255);
}
.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*===============================================================
=================================================================
=================================================================
=================================================================
=================================================================
=================================================================
========================MEDIA SCREEN=============================
=================================================================
=================================================================
=================================================================
=================================================================
=================================================================
=================================================================
===============================================================*/




@media (max-width: 450px) {

  /* ===== GERAL ===== */
  body {
    overflow-x: hidden;
  }

  /* ===== TOPO / HEADER ===== */
  .topo-fixo {
    height: 70px;
    padding: 15px 20px;
    
  }

  .marca {
    position: absolute;
    right: 20px;   /* EXATOS 20px da direita */
    top: 50%;
    transform: translateY(-50%);
    padding: 0;    /* remove qualquer padding que atrapalhe */
    margin: 0;
  }
  .imglogo {
    width: 32px;
    height: 32px;
  }

  .nome {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .menu {
    gap: 18px;
    height: 10px;
  }

  .menu a {
    font-size: 17px;
    padding-left: 0px;
    white-space: nowrap;
    font-size: clamp(10px, 120px);
    overflow: hidden;
    
  }

  /* ===== HERO / SEÇÃO 1 ===== */
  .title {
    position: relative;
    left: 0;
    top: 70px;
    transform: none;
    margin-top: 180px;
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .text1,
  .text2 {
    font-size: 45px;
    line-height: 1.1;
    font-family: "Zalando Sans Expanded", sans-serif;
  }

  .descricao {
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 50px;
  }



/* From Uiverse.io by mrhyddenn */ 
.container_mouse{
  margin-top: 150px;
}

.mouse-btn {
  margin: 10px auto;
  width: 40px;
  height: 80px;
  border: 3px solid rgba(122, 122, 124, 0.918);
  border-radius: 20px;
  display: flex;
}

.mouse-scroll {
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
  border-radius: 50%;
  margin: auto;
  animation: scrolling13 1s linear infinite;
}

@keyframes scrolling13 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}




 
  /* ===== SOBRE ===== */
  .sobre {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    gap: 30px;
  }

  .logosobre {
    margin-left: 0;
  }

  .logodois {
    font-size: 220px;
    margin-top: 0;
  }

  .titletext {
    max-width: 100%;
  }

  .titulosobre {
    font-size: 32px;
    margin-left: 0;
    text-align: center;
  }

  .um,
  .dois,
  .tres {
    font-size: 15px;
    margin-left: 0;
    text-align: center;
  }

  /* ===== PORTFÓLIO ===== */
  .portfolio {
    padding: 120px 20px;
  }

  .meu {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .portfolio-cards {
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 340px;
  }

  /* ===== CONTATO ===== */
  .contato {
    margin-top: 100px;
  }

  .cardi {
    flex-wrap: wrap;
    gap: 15px;
  }

}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10002;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 0.4s;
}

/* Animação X PERFEITA */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 10000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== MENU MOBILE ===== */
.menu-mobile {
  position: fixed;
  top: 100px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: rgba(14, 7, 54, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  transition: left 0.45s ease;
  z-index: 10001;
  opacity: 0;
}

.menu-mobile a {
  color: #ffffff;
  font-size: 26px;
  text-decoration: none;
}

/* Ativo */
.menu-mobile.active {
  left: 0;
  opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 450px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

