    :root {
      --cor-primaria: #fff;
      --cor-secundaria: #000;
      --cor-ciano: #00BFFF;
      --cor-magenta: #FF00FF;
      --cor-amarelo-escuro: #FFB300;
      --cor-titulo: #EC268F;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: var(--cor-secundaria);
      color: var(--cor-primaria);
      overflow-x: hidden;
    }
    
    html {
  scroll-behavior: smooth;
}


header {
  width: 100%;
  height: 300px;
  background-image: url('imgs/capasite.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  width: 190px;
}


@media (max-width: 768px) {
  header {
    height: 200px;
  }

  header img {
    width: 152px; /* 20% menor que 190px */
  }
}


@keyframes sombraDinamica {
  0% {
    filter: drop-shadow(6px -6px 3px rgba(0, 0, 0, 0.9));
  }
  25% {
    filter: drop-shadow(3px -8px 4px rgba(0, 0, 0, 0.8));
  }
  50% {
    filter: drop-shadow(-6px -6px 3px rgba(0, 0, 0, 0.85));
  }
  75% {
    filter: drop-shadow(-4px 6px 4px rgba(0, 0, 0, 0.8));
  }
  100% {
    filter: drop-shadow(6px 6px 3px rgba(0, 0, 0, 0.9));
  }
}







nav.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--cor-ciano), var(--cor-magenta), var(--cor-amarelo-escuro));
  background-size: 150% 150%;
  animation: gradientShift 12s linear infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--cor-primaria);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s, color 0.3s, background 0.3s;
}

.nav-links a:hover {
  color: var(--cor-secundaria);
  background: rgba(255,255,255,0.15);
  transform: scale(1.08);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.6em;
  color: var(--cor-primaria);
  cursor: pointer;
  display: none;
  transition: transform 0.3s;
}
.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Mobile */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--cor-ciano), var(--cor-magenta), var(--cor-amarelo-escuro));
    padding: 25px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2em;
    justify-content: center;
  }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  33%  { background-position: 50% 50%; }
  66%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 850px) {
  .texto-logotipo {
    display: none;
  }
}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 40px auto;
      background-color: #111;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      animation: fadeIn 1.5s ease-out;
    }

    h2, h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: var(--cor-titulo);
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    h2::after, h3::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--cor-amarelo-escuro), var(--cor-magenta));
      margin: 10px auto 0;
      border-radius: 2px;
    }

.sobre-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* aumenta o espaço entre imagens e texto */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sobre-conteudo > div:first-child,
.sobre-conteudo > div:last-child {
  flex: 0 0 200px; /* Fixamos largura consistente */
  margin: 0 20px; /* Espaçamento menor e uniforme */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza a imagem e o nome */
}

.imagem-lateral {
  width: 200px; /* Tamanho fixo */
  height: 200px; /* Altura igual */
  object-fit: cover; /* Corta e mantém a proporção sem distorcer */
  border-radius: 20px; /* Cantos arredondados */
  box-shadow: 0 4px 12px rgba(0,0,0,0.5); /* (opcional) profundidade */
}

.sobre-texto {
    max-width: 500px; /* ou 600px, se quiser um pouco maior */
    padding: 0 10px; /* Reduz ainda mais as laterais */
    text-align: center;
}

.nome {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1em;
  color: var(--cor-primaria);
  text-align: center;
}

/* Opcional: ajusta alinhamento em telas pequenas */
@media (max-width: 600px) {
  .sobre-conteudo {
    flex-direction: column;
  }
}


    .portfolio-item {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .portfolio-item img {
      width: 300px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
      transition: transform 0.3s;
    }

    .portfolio-item img:hover {
      transform: scale(1.05);
    }

h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 100;
  color: var(--cor-primaria);
  margin: 50px 0 10px;
}

    .portfolio-texto {
      flex: 1;
      max-width: 600px;
      font-size: 1.1em;
      line-height: 1.6;
      animation: slideUp 1s ease-out;
    }
    
    .portfolio-texto {
      flex: 1;
      max-width: 600px;
      font-size: 1.1em;
      line-height: 1.6;
      animation: slideUp 1s ease-out;
    }


footer {
  background: linear-gradient(90deg, var(--cor-ciano), var(--cor-magenta), var(--cor-amarelo-escuro));
  color: var(--cor-primaria);
  text-align: center;
  padding: 20px;
}

    footer .social-icon {
      width: 30px;
      height: 30px;
      margin: 10px;
      vertical-align: middle;
      transition: transform 0.3s;
    }

    footer .social-icon:hover {
      transform: scale(1.2);
    }

    form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
      background-color: #222;
      color: var(--cor-primaria);
      border: 1px solid #444;
      padding: 10px;
      border-radius: 8px;
      transition: box-shadow 0.3s;
    }

    input:focus, textarea:focus {
      border-color: var(--cor-magenta);
      box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }

button {
  background: linear-gradient(90deg, var(--cor-ciano), var(--cor-magenta), var(--cor-amarelo-escuro));
  color: var(--cor-primaria);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s, background 0.3s;
}

    button:hover {
      background: var(--cor-ciano);
      transform: scale(1.05);
    }

.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.btn-social {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: slideInRight 0.6s ease-out forwards;
}

.btn-social:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}


.btn-social.instagram {
  bottom: 100px; /* Sobe o Instagram, mais afastado do WhatsApp */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-social.facebook {
  bottom: 170px; /* Mantém espaçamento proporcional acima do Instagram */
  background-color: #3b5998;
}

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    
       .depoimentos {
  position: relative;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.depoimento {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.depoimento.ativo {
  opacity: 1;
  position: relative;
}

.depoimento img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #fff;
}

.depoimento .texto {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.depoimento .nome {
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 5px;
}

