/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primaria: #07c44fcc;
  --secundaria: #20633A;
  --escuro: #1D3325;
  --maisescuro: #0a0f1c;
  --claro: #e2e8f0;
  --vidro: rgba(255, 255, 255, 0.1);
}



body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: var(--escuro);
  color: var(--claro);

  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)),
    url('../assets/img/background.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* Fundo e Partículas */
.particulas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 0% 15%, var(--primaria) 0%, transparent 20%),
    radial-gradient(circle at 95% 105%, var(--secundaria) 0%, transparent 20%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.1;
}

.imagem-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: center;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)),
    url('./assets/img/background.jpg');
  background-blend-mode: overlay;
}


/* Navegação */
.navegacao {
  width: 40vw;
  min-width: 300px;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-radius: 0 0 20px 20px;
  background: rgba(24, 22, 22, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-width: 0.2px;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}


/* MOSTRAR DROPDOWN NO HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding-left: 2rem;
}
.menu {
  justify-content: center;
  display: flex;
  list-style: none;
  gap: 4rem;
}

.menu-link {
  text-decoration: none;
  color: var(--claro);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.menu-link::after {
  content: '';
  height: 2px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(144,238,144), var(--vidro));
  transition: width 0.5s ease;
}

.menu-link:hover::after {
  width: 100%;
}

/* Cabeçalho */
.cabecalho {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
}

.foto-perfil {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--vidro);
  object-fit: cover;
  box-shadow: 12px 10px 7px 3px rgba(0, 0, 0, 0.72);
  animation: flutuar 3s ease-in-out infinite;
}

h1 {
  font-size: 2.5rem;
  color: rgba(144, 238, 144);
  margin-top: 1rem;
  font-weight: bold;
  text-shadow: #0a0f1c 2px 2px 4px rgba(0, 0, 0, 0.7);
}

h4 {
  font-size: 1.2rem;
  color: var(--claro);
  margin-top: 10px;
  font-weight: 400;
}

/* Animação */
@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.instagram {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 17px;
  color: #E1306C; /* cor do Instagram */
  text-decoration: none;
  transition: color 0.3s;
}

.instagram:hover {
  color: #ff5da2; /* cor ao passar o mouse */
}

.contato-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-top: 8px;
  color: #ccc;
}

.contato-link {
  color: #00ff99;
  text-decoration: none;
}

.contato-link:hover {
  text-decoration: underline;
}

.icone {
  fill: #00ff99;
  flex-shrink: 0;
}
/* Sobre */
.sobre {
  padding: 2rem 1rem;
  margin-top: -30px;
}
  .texto-resumido {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* número de linhas visíveis inicialmente */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
  }

  .texto-expandido {
    -webkit-line-clamp: unset;
  }

  .botao-toggle {
    margin-top: 10px;
    background: none;
    border: none;
    color: #00ff99;
    font-size: 14px;
    cursor: pointer;
  }

  .botao-toggle:hover {
    text-decoration: underline;
  }

.sobre-titulo {
  font-size: 3rem;
  color: var(--claro);
  text-align: center;
  margin: 40px 0;
  text-shadow: 2px 2px 4px #0a0f1c;
}

.sobre-caixa {
  padding: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-paragrafo {
  font-size: 1.1rem;
  color: var(--claro);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  width: 100%;
  hyphens: auto;
  word-spacing: 0.05em;
}
.sobre-paragrafo2 {
  display: inline-block; /* Faz o fundo se ajustar ao tamanho do conteúdo */
  font-size: 1.0rem; /* Menor que 1.1rem */
  padding: 1.2rem 2rem; /* Mais respiro em volta do texto */
  max-width: fit-content; /* Garante que não ocupe a largura toda */
  text-align: center;
  
  /* Seu estilo original abaixo */
  color: var(--claro);
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(197, 240, 5, 0.979), rgba(130, 201, 16, 0.658) 0.30%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px rgba(255,255,255,0.2);
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.container {
  display: flex;
  justify-content: center; /* centraliza na horizontal */
  align-items: center;     /* centraliza na vertical */
}


/* Efeito de luz passando - elemento pseudo */
.sobre-paragrafo2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: light-sweep 3s infinite;
  pointer-events: none; /* Para não interferir com cliques */
}

/* Animação da luz passando */
@keyframes light-sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}
.sobre-paragrafo2 strong {
  background: linear-gradient(to right, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.sobre-paragrafo2:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.068), rgba(155, 100, 255, 0.15));
  backdrop-filter: blur(25px);
  transform: translateY(-5px) scale(1.02);
}

/* Variação com cor mais chamativa (opcional) */
.sobre-paragrafo2.colorido {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0), 
    rgb(255, 255, 255)
  );
  border-color: rgba(74, 144, 226, 0.3);
}

.sobre-paragrafo2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Para telas menores - responsividade */
@media (max-width: 768px) {
  .sobre-paragrafo2 {
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
  }
}

.sobre-paragrafo:last-child {
  margin-bottom: 0;
}

/* Para telas menores */
@media (max-width: 768px) {
  .sobre-titulo {
    font-size: 2.5rem;
  }
  
  .sobre-caixa {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .sobre-paragrafo {
    font-size: 1rem;
    text-align: left;
  }
}

/* Projetos */
.Projetos {
  padding: 3rem 2rem;
}

.Projetos-Titulo {
  font-size: 2.5rem;
  color: var(--claro);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px #0a0f1c;
}

.projetos-caixa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  max-height: auto;
}

.projetos-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  max-height: 700px;
}

.projetos-card:hover,
.projetos-card2:hover {
  box-shadow: 0 10px 20px rgba(246, 255, 246, 0.349);
  transform: translateY(-10px) scale(1.05);
}

.projetos-card2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  max-height: 700px;
  
}

.projetos-card:hover,
.projetos-card1:hover {
  box-shadow: 0 10px 20px rgba(246, 255, 246, 0.349);
  transform: translateY(-10px) scale(1.05);
}
.projetos-card1{
    background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  max-height: 900px;
  width: 50%;

}

.Projetos-imagem {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: block;
}

/* Corrija o sombreamento dos vídeos para igualar ao das imagens */
.Projetos-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  object-fit: cover;
  background-color: #000;
  display: block;
  border: 1px solid var(--vidro);
  box-shadow: none;
  transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
  
}
.projetos-video1{
  width: 100%;
  max-height: 700px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  object-fit: cover;
  background-color: #000;
  display: block;
  border: 1px solid var(--vidro);
  box-shadow: none;
  transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
  
}
/* Moldura do vídeo com sombra igual à imagem */
.custom-video-player {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 0;
  /* Garante que a moldura envolva o vídeo */
  overflow: hidden;
}

.info-projetos {
  margin-top: 1rem;
  margin-bottom: 5px;
}

.paragrafo-projetos {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
  margin-top: 10px;
}

.caixa-textos-projetos {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  color: white;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
}

/* Contato */
.Contato {
  padding: 6rem 2rem;
  text-align: center;
}

.Contato-Titulo {
  font-size: 2.5rem;
  color: var(--claro);
  text-align: center;
  margin-bottom: 30px;
}

.contato-paragrafo {
  font-size: 1.2rem;
  color: var(--claro);
  text-align: center;
  margin-top: 1rem;
}

/* Formulário */
.formulario-contato {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
}

.grupo-formulario {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  outline: none;
}

.input-nome,
.mensagem,
.mensagem textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--vidro);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--claro);
  font-size: 1rem;
  outline: none;
}

.mensagem textarea {
  height: 200px;
}
.input-nome:hover,
.mensagem:hover {
  border-color: var(--primaria);
  background-color: rgba(255, 255, 255, 0.1);
}

.botao-form {
  background: linear-gradient(45deg, var(--primaria), var(--secundaria));
  border: none;
  color: var(--claro);
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.botao-form:hover {
  background: linear-gradient(45deg, #7c3aed, rgba(11, 5, 36, 0.466));
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

/* Projetos com Vídeo */
/* Projetos com Vídeo */
.projetos-caixa1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.projetos-caixa2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* sempre 2 colunas */
  gap: 20px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  margin-top: -4rem;
}

.projetos-card1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 1rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--vidro);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.projetos-card2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 1rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--vidro);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.projetos-caixa3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* sempre 2 colunas */
  gap: 20px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  margin-top: -4rem;
}



.Projetos-video2 {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  background-color: #000;
  display: block;
  border: 1px solid var(--vidro);
  box-shadow: none;
  transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
}
.Projetos-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  object-fit: cover;
  background-color: #000;
  display: block;
  border: 1px solid var(--vidro);
  box-shadow: none;
  transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
}

.Projetos-video:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 255, 128, 0.3);
}

.info-projetos1 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--claro);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.info-projetos1 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--claro);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.paragrafo-projetos1 {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
  margin-top: 10px;
}

.paragrafo-projetos1 {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
  margin-top: 10px;
  width: 100%;;
}
.caixa-textos-projetos1 {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  color: white;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Custom Video Player */
.custom-video-player {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.video-controls {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.7rem;
  justify-content: center;
}

.play-pause.vidro {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,255,128,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}
.play-pause.vidro::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #39ff14;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
  transition: opacity 0.2s;
}
.play-pause.vidro.paused::before {
  content: '';
  display: block;
  width: 18px;
  height: 24px;
  background: none;
  border: none;
  box-shadow: none;
  margin-left: 0;
  position: absolute;
  left: 15px;
  top: 12px;
  /* Pause icon: two bars */
  background: none;
}
.play-pause.vidro.paused::before,
.play-pause.vidro.paused::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 24px;
  background: #39ff14;
  border-radius: 2px;
  top: 12px;
}
.play-pause.vidro.paused::before {
  left: 13px;
}
.play-pause.vidro.paused::after {
  left: 27px;
}
.play-pause.vidro:hover {
  background: rgba(57,255,20,0.18);
  box-shadow: 0 0 16px #39ff14, 0 2px 8px rgba(0,255,128,0.18);
}

/* Center Play Button */
.center-play.vidro {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px 0 rgba(255,255,255,0.10), 0 0 0 2px rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), background 0.2s;
  outline: none;
}
.center-play.vidro::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 36px solid rgba(255,255,255,0.7);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-left: 8px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.18));
  opacity: 0.85;
  transition: filter 0.2s;
}
.center-play.vidro:hover {
  background: rgba(57,255,20,0.28);
}
.center-play.vidro.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

/* Progress Bar - Sabre de Luz (com cor e suave) */
.progress-bar-container {
  flex: 1;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  min-width: 120px;
  max-width: 400px;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  /* Remova toda sombra da barra de fundo */
  box-shadow: none;
  transition: background 0.3s cubic-bezier(.4,0,.2,1);
}

.progress-bar-neon {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #baffc9 0%, #07c44f 100%);
  /* Neon só na barra de progresso, sem sombra para frente */
  box-shadow: 0 0 16px 4px #baffc9, 0 0 32px 8px #07c44f;
  border-radius: 6px 0 0 6px;
  transition: width 0.01s linear, box-shadow 0.18s;
  opacity: 0.92;
  border: none;
}

/* Remove default video controls */
.Projetos-video::-webkit-media-controls {
  display: none !important;
}
.Projetos-video::-webkit-media-controls-enclosure {
  display: none !important;
}
.Projetos-video::-webkit-media-controls-panel {
  display: none !important;
}
.Projetos-video::-webkit-media-controls-play-button {
  display: none !important;
}
.Projetos-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.Projetos-video {
  outline: none;
}



 .spotify-player1 {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            width: 400px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            color: #fff;
            font-family: 'Arial', sans-serif;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: visible;
        }

        .spotify-player1:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 10px rgba(74, 104, 80, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Estilo quando minimizado */
        .spotify-player1.minimized1 {
            width: 60px;
            height: 60px;
            padding: 0.5rem;
        }

        .spotify-player1.minimized1 .info1,
        .spotify-player1.minimized1 .controls1 {
            display: none;
        }

        .spotify-player1.minimized1 .cover1 {
            width: 50px;
            height: 50px;
            margin: 0 auto;
        }

        /* Botão de Minimizar */
        .minimize-btn1 {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .minimize-btn1:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .cover1 {
            width: 150px;
            height: 130px;
            border-radius: 10px;
            object-fit: cover;
        }

        .info1 {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .title1 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: bold;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        }

        .artist1 {
            margin: 0;
            font-size: 0.9rem;
            color: #ccc;
            font-family: 'Times New Roman', Times, serif;
        }

        .controls1 {
            display: flex;
            gap: 0.5rem;
        }

        .play-button1 {
            background: #dd0808cc;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 225px;
        }

        .pause-button1 {
            background: #000000cc;
            opacity: 0.6;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 225px;
        }

        .play-button1:hover,
        .pause-button1:hover {
            background: #16be57cc;
            transform: scale(1.05);
            opacity: 1;
        }

        /* Barra de progresso */
        input[type="range"].progress1 {
            width: 100%;
            appearance: none;
            height: 3px;
            background: #ffffff30;
            border-radius: 3px;
            outline: none;
            margin-top: 0.4rem;
        }

        input[type="range"].progress1::-webkit-slider-thumb {
            appearance: none;
            width: 12px;
            height: 12px;
            background: #ffffff;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 4px #000000;
        }

        input[type="range"].progress1::-moz-range-thumb {
            width: 12px;
            height: 12px;
            background: #ffffff;
            border-radius: 50%;
            cursor: pointer;
            border: none;
            box-shadow: 0 0 4px #000000;
        }


    .video-card {
  position: relative;
  width: 350px; /* tamanho do card */
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video-thumbnail {
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  pointer-events: none; /* não bloqueia o clique */
}

.rodape {
  text-align: center;
  padding: 20px;
  background-color: #000; /* ou o que estiver usando */
  color: #ccc;
  font-size: 14px;
  width: 100%;
}

.email-info {
  margin-top: 4px;
  font-size: 17px;
  color: #ccc;
}

.email-link {
  color: #00ff99;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
.empresa-secao {
  margin-top: 100px; /* AUMENTADO - mais espaço antes */
  margin-bottom: 80px; /* AUMENTADO */
  padding-top: 60px; /* espaço interno no topo */
  text-align: center;
  position: relative;
}

/* Linha divisória acima do título (efeito quebra de página) */
.empresa-secao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.empresa-titulo {
  font-size: 3rem; /* AUMENTADO de 2rem para 3rem */
  font-weight: bold;
  color: #fff;
  margin-top: 100px;
  margin-bottom: 100px; /* AUMENTADO */
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 2px; /* espaçamento entre letras */
  text-transform: uppercase; /* todas maiúsculas (opcional) */
}

.empresa-titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #00ff88;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px #00ff88; /* brilho na barra */
}

.empresa-titulo:hover::after {
  width: 20%; /* AUMENTADO de 15% */
}
.Youtube {
  margin-top: px; /* espaço antes da seção */
  margin-bottom: 200px;
  padding-top: 60px;
  text-align: center;
  position: relative;
}

/* Linha divisória acima do título */
.Youtube::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  
}

.Youtube-Titulo {
  font-size: 3rem; /* AUMENTADO */
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px; /* AUMENTADO */
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase; /* opcional */
  margin-top: 100px;
}

.Youtube-Titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* tamanho inicial maior */
  height: 4px;
  background: #00ff88;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px #00ff88; /* brilho */
}

.Youtube-Titulo:hover::after {
  width: 20%; /* AUMENTADO */
}

.baners-caixa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 3rem;
  min-height: 100vh; /* ocupa toda altura da tela */
}

.baners-titulo {
  font-size: 3rem; /* AUMENTADO */
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px; /* AUMENTADO */
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase; /* opcional */
  margin-top: 100px;
}

.baners-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  padding: 1rem;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
  width: 100%;
  max-width: 700px; /* largura máxima */
}

.baners-card:hover {
  box-shadow: 0 10px 20px rgba(246, 255, 246, 0.349);
  transform: translateY(-10px) scale(1.05);
}

.baners-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.info-baners {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.paragrafo-baners {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Linha divisória acima do título */
.baners-titulo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  margin-top: -100px;
}

.baners-titulo {
  font-size: 3rem; /* AUMENTADO */
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px; /* AUMENTADO */
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase; /* opcional */
  margin-top: 100px;
}

.baners-titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* tamanho inicial maior */
  height: 4px;
  background: #00ff88;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px #00ff88; /* brilho */
}

.baners-titulo:hover::after {
  width: 20%; /* AUMENTADO */
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3); /* ADICIONE */
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 500px; /* ou ajuste para o tamanho que quiser */
  display: flex; /* ADICIONE */
  align-items: center; /* ADICIONE */
  justify-content: center; /* ADICIONE */
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain; /* MUDE DE cover PARA contain */
  opacity: 0;
  transition: opacity 0.5s ease;
  top: 0; /* ADICIONE */
  left: 0; /* ADICIONE */
}

.carousel-img.active {
  opacity: 1;
  z-index: 1; /* ADICIONE */
}

/* Botões de seta */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 136, 0.8); /* AUMENTEI OPACIDADE */
  color: white;
  border: none;
  font-size: 1.5rem; /* DIMINUÍ */
  padding: 0.8rem; /* DIMINUÍ */
  cursor: pointer;
  z-index: 100; /* AUMENTEI MUITO */
  border-radius: 50%;
  width: 45px; /* DIMINUÍ */
  height: 45px; /* DIMINUÍ */
  transition: all 0.3s ease;
  display: flex; /* ADICIONE */
  align-items: center; /* ADICIONE */
  justify-content: center; /* ADICIONE */
}

.carousel-btn:hover {
  background: rgba(0, 255, 136, 1);
  transform: translateY(-50%) scale(1.15);
}

.carousel-btn.prev {
  left: 10px; /* DIMINUÍ */
}

.carousel-btn.next {
  right: 10px; /* DIMINUÍ */
}

/* Indicadores (bolinhas) */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100; /* AUMENTEI */
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #00ff88;
  width: 30px;
  border-radius: 6px;
}