*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#06182d;
  color:white;
}

header{
  position:fixed;
  width:100%;
  top:0;
  background:rgba(0,0,0,.4);
  backdrop-filter:blur(10px);
  padding:20px 8%;
  z-index:999;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */

.logo{

  display:flex;

  align-items:center;

  gap:18px;

}


.brand-name span{

  font-weight:800;

  letter-spacing:-2px;

}

/* LOGO HEADER */

.logo{

  display:flex;

  align-items:center;

  justify-content:flex-start;

  min-width:420px;

}

.logo-header{

  width:420px;

  height:auto;

  display:block;

}

/* EFEITO HOVER */

.logo-header:hover{

  transform:scale(1.03);

}


/* SUBTITULO */

.logo-text p{

  margin-top:8px;

  font-size:.78rem;

  letter-spacing:7px;

  color:#d8e6ff;

  font-weight:600;

}

.nav-links{
  display:flex;
  gap:25px;
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

.btn{

  background:linear-gradient(
    135deg,
    #ff8a00,
    #ff6a00
  );

  color:white;

  padding:14px 24px;

  border-radius:14px;

  text-decoration:none;

  font-weight:600;

  transition:.3s;

  box-shadow:0 8px 20px rgba(255,138,0,.25);

}

.whatsapp-btn{

  background:linear-gradient(
    135deg,
    #25d366,
    #18b45b
  );

  box-shadow:0 8px 20px rgba(37,211,102,.25);

}

.btn:hover{

  transform:translateY(-3px);

  box-shadow:0 12px 28px rgba(37,211,102,.4);

}

.hero{

  min-height:100vh;

  display:grid;

  grid-template-columns:1.2fr 1fr;

  align-items:center;

  padding:180px 8% 120px;

  gap:40px;

}

.hero-text h1{
  font-size:4rem;
}

.hero-text span{
  color:#ff8a00;
}

.hero-text p{
  margin:25px 0;
  font-size:1.1rem;
  line-height:1.8;
}

.hero-image{
  display:flex;
  justify-content:center;
  align-items:center;
  flex:1;
}

.hero-image img{

  width:100%;

  max-width:900px;

  height:auto;

  display:block;

  transform:scale(1.8);

  animation:float 4s ease-in-out infinite;

}

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:3rem;
}

.section-title span{
  color:#ff8a00;
}

.services-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.service-card{
  background:#0d2746;
  padding:35px;
  border-radius:30px;
  transition:.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-icon{
  font-size:4rem;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:20px;
}

.service-card p{
  line-height:1.8;
}

.service-image{
  width:100%;
  border-radius:22px;
  margin-top:25px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.gallery-grid img{
  width:100%;
  border-radius:24px;
}

.social-container{
  max-width:700px;
  margin:auto;
}

.social-links{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.social-link{
  padding:22px;
  border-radius:20px;
  text-align:center;
  text-decoration:none;
  color:white;
  font-weight:600;
}

.whatsapp{
  background:#18b45b;
}

.instagram{
  background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}

footer{
  padding:40px;
  text-align:center;
}

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

@media(max-width:980px){

  .hero{

    grid-template-columns:1fr;

    text-align:center;

    padding-top:160px;

  }

  .hero-image{

    margin-top:40px;

  }

  .hero-image img{

    max-width:420px;

    transform:scale(1.25);

  }

  .hero-text h1{

    font-size:2.5rem;

  }



  .nav-links{

    display:none;

  }
  
  .logo{

	  min-width:auto;

	}

	.logo{

    min-width:auto;

	}


	.logo-text span{

	  font-size:1.6rem;

	}
	
	.brand-name{

	  align-items:center;

	}

	.morada,
	.maker{

	  font-size:2rem;

	}

	.threeD{

	  font-size:2.2rem;

	}


}