@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  background-color: black;
}

/* Variáveis CSS */
:root {
  --verde-escuro: #14424b;
  --aubergine: #77216F;
  --orange: #E94520;
  --degrade-btn: linear-gradient(#fe9611, #ff5c00);
  --color-p: #a1a1a1;
  --color-a: #868585; /* Corrigido: nome diferente de --color-p */
}

.container {
  max-width: 1440px;
  padding: 0 5%;
  margin: 0 auto;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: black;
  display: flex;
  justify-content: space-between;
  font-size: 10pt;
  align-items: center; /* Adicionado para melhor alinhamento */
  padding: 5px 55px 5px 55px;
  gap: 20px;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.6); /* deslocamento X, Y, blur, cor */
}
nav a {
  color: white;
}
/* Lista de navegação */
nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav ul li {
  position: relative;
  padding: 0 10px;
}


/* Estilo dos links */
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--orange);
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 42px;
  width: auto;
}
.contato{
  font-size: 12px;
  font-weight: 600;
  color: white;
  width: fit-content;
  height: fit-content;
  padding: 6px 25px 6px 25px;
  background: var(--orange);
  border-color: #fe9611;
  border-radius: 8px;
}

.contato:hover{
  transform: scale(1.15);
}

.social-icons i{
  color:var(--orange);  
  margin: 0 8px;
  font-size: x-large;
}

.social-icons i:hover{
  transform: scale(1.15);
  color: white;
}

.banner{
  background-image: radial-gradient(rgba( 0,0,0,0.5), rgba(0,0,0,0.5)),
  url('../img/fundo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50vh;
}

.textobanner p{
  font-family: 'Montserrat';
  padding: 100px 120px 0px 0px;
  font-size: 12pt;
  text-align: right;
  color: var(--orange);
}

.textobanner h2{
  font-size: 60pt;
  text-align: right;
  font-weight: 600;
  color: white;
  padding: 0px 120px 0px 0px;
}

.linhafina{
  text-align: right;
  font-weight: 200;
  padding: 0px 120px 0px 0px;
  color: white;
}

.containerservicos {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      
    }

    .item {
      width: 100px;
      height: 120px;
      background-color: rgb(24, 24, 24);
      border: 0.3px solid;
      border-radius: 3px;
      border-color: #333;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin-top: -15px;
      margin-bottom: -15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: sans-serif;
      transition: transform 0.3s ease;
    }

    .item:hover{
      transform: scale(1.15);
    }
   
    .item i {
      font-size: 32px;
      margin-bottom: 8px;
      color: red;
    }
    .item i:hover{
      color: var(--orange);
    }

    .item span {
      font-size: 14px;
      color: white;
    }
  
    .conteinersobre{
      display: flex;
      justify-content:center;
      align-items: center;
      background:linear-gradient(rgba(0,0,0,1.0), rgba(0,0,0,0.8)),
      url("../img/fundosobremim-scaled.jpg");
      background-size: cover;
      background-position: center;
      width: 85%;
      height: 58vh;
      margin: 30px;
      
    }

    .sobre{
      flex: 1;
      gap: 10px;
      color: white;
      font-family: 'Poppins' sans-serif;
      font-size: 10pt;
      text-align: right;
      padding: 50px 20px 50px 200px;
      width: auto;      
    }
  .sobre h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--orange); /* dourado */
  margin-bottom:5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 10px;  
}
  .foto{
    flex: 1;
    color: white;
    display: flex;    
  }
  .foto img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 8px;
}

.portfolio-section {
  text-align: center;
  padding: 60px 20px;
  background:radial-gradient(rgba(0,0,0,0.8), rgba(0,0,0,1.0)),
      url("../img/fundosobremim-scaled.jpg");
  color: white;
}

.portfolio-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--orange);
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s, background 0.3s;
}

.portfolio-link:hover {
  background-color:  var(--aubergine);
  color: white;
  transform: scale(1.05);
}

.rodape{
  background-color: rgb(19, 19, 19);
  display: flex;
  height: 15vh;
  width: auto;
  padding: 5px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
}
.rodape p{
  font-size: 10px;
  color: white;
}
   @media (max-width: 768px) {
      .conteinersobre {
    flex-direction: column;
  }
}