/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /* NOVO: Gradient espelhado com roxo escuro */
  background: linear-gradient(180deg, #1a0b45 0%, #412f74 50%, #450b38 100%);
  background-size: cover;
  background-attachment: fixed; /* opcional: dá efeito parallax */
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.navbar nav a:hover {
  color: #082e1f;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0; /* 🔸 Remove todo o espaço interno */
  margin: 0; /* 🔸 Garante que não haja margem externa */
  min-height: 100vh;
  text-align: left;
  background: url(/portifolio//img-portifolio/back.png) no-repeat center
    center/cover;
}

/* Texto */
.texto {
  flex: 1 1 400px;
  z-index: 2;
  left: 10rem;
  position: relative;
  top: 3.2rem;
}

.texto p {
  font-size: 18px;
  margin-bottom: 10px;
}

.texto h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.texto h1 .nome {
  color: #00ff99;
}

.texto h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 20px;
  color: #ffffff;
}



#h2desk-mobile {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  left: 5%; /* menos fixo que 14rem */
}

.caixinhatexto {
  flex: 1 1 400px;
  z-index: 2;
  left: 10rem;
  position: relative;
  top: 3.2rem;
}

.caixinhatexto p {
  font-size: 18px;
  margin-bottom: 10px;
}

.caixinhatexto h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.caixinhatexto h1 .nome {
  color: #00ff99;
}

.caixinhatexto h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 20px;
  color: #ffffff;
}

/* Botão */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00ff99;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #00cc77;
}

/* ===== redes-sociais===== */
/* ===== redes-sociais ===== */
.icones {
  margin-top: 1.5rem; /* espaço embaixo do botão */
  display: flex;
  gap: 25px;
}

.icones img {
  width: 40px;
  transition: transform 0.3s ease;
}

.icones img:hover {
  transform: scale(1.2);
}

.icones img {
  width: 40px;
  transition: transform 0.3s ease;
}

.icones img:hover {
  transform: scale(1.2);
}

/* ===== FOTO ===== */
.foto img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.3);
}

.modelos {
  height: 45rem;
  padding: 4rem 2rem;
  display: flex;
  background-color: #1a0033;
  flex-direction: column;
  gap: 4rem;
}

/* Cada bloco */
.modelos .bloco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.foto-container {
  position: relative;
  display: inline-block;
}

.foto-glow {
  width: 380px;
  max-width: 90%;
  border-radius: 20px 5px 20px 5px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  right: 4rem;
}

/* 🔹 Corrigir espaçamento e fundo da seção "Sobre" */
#sobre {
  background: transparent; /* mantém o fundo igual ao da página */
  color: #fff; /* texto visível em fundo escuro */
  padding: 60px 20px; /* reduz o espaço */
  text-align: center;
}

#sobre h2 {
  font-size: 2em;
  color: #00c3ff;
  margin-bottom: 15px;
}

#sobre p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
}

/* 🔹 Ajustar outras seções para manter padrão */
#projetos,
#depoimentos {
  background: transparent;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#projetos h2,
#depoimentos h2 {
  color: #00c3ff;
  margin-bottom: 15px;
}

/* Pseudo-elemento animado para o gradiente */
.foto-container::before {
  content: "";
  position: absolute;
  top: -5px; /* começa um pouco acima */
  left: -5px; /* começa um pouco à esquerda */
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 25px;
  z-index: 0;
  filter: blur(30px);
  animation: glow 5s linear infinite;
  pointer-events: none; /* garante que não atrapalhe o clique na imagem */
}

/* animação do gradiente */
@keyframes glow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* hover opcional */
.foto-container:hover .foto-glow {
  transform: scale(1.05);
}

/* Imagem responsiva */
.imagem {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem img {
  transition: transform 0.4s ease;
}

.imagem img:hover {
  transform: scale(1.1); /* aumenta 10% */
}

.modelos .bloco img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 25rem;
  margin-bottom: 5rem;
}

/* Texto */
.modelos .bloco .texto {
  flex: 1;
}

/* Inverter ordem na terceira div */
.modelos .bloco3 {
  flex-direction: row-reverse;
}

/* ===== CARROSSEL BLOCO3 ===== */
.bloco3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0d0d0d, #2a004f, #1a0033);
  border-radius: 0px;
  padding: 30px;
  width: 100%;
  margin: 0px auto;
  gap: 30px;
  color: white;
  position: relative;
  height: 45rem;
}

/* Caixa do carrossel */
.caixinha-carrossel-box {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.carrosselBox {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slideBox {
  min-width: 100%;
  display: none;
}

.slideBox.ativo {
  display: block;
}

.slideBox img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* 🔘 Bolinhas de navegação */
.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.ativo {
  background-color: #333;
}

/* Botões de navegação */
.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: 0.3s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer {
  background: linear-gradient(180deg, #1b0a3a, #2d1663 60%, #3d1a78);
  color: #e0e0ff;
  padding: 80px 10% 40px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer h2 {
  color: #c8a9ff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer p {
  color: #d0cdfa;
  line-height: 1.8;
  max-width: 480px;
}

/* ==== Links ==== */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #cfcff8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer ul li a {
  color: #cfcff8;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

/* ==== Social ==== */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none; /* remove o sublinhado */
  color: #b8b4f3; /* cor dos ícones */
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #fff; /* muda a cor no hover */
  transform: scale(1.1); /* leve aumento no hover */
}

.social-icons a:focus {
  outline: none; /* remove a borda azul ao clicar */
}

/* ==== Disponibilidade ==== */
.availability {
  background: rgba(0, 255, 120, 0.1);
  color: #1cf87a;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 120, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-top: 20px;
}

.availability .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff70;
}

/* ==== Linha divisória ==== */
.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 50px 0 20px;
}

/* ==== Rodapé inferior ==== */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #a8a8cc;
}

/* ==== Responsivo ==== */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer ul li {
    justify-content: center;
  }
  .availability {
    justify-content: center;
  }
}

.profile h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.profile span {
  font-size: 14px;
  color: #ccc;
}

.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* círculo gradiente girando */
.avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 5px; /* espessura da borda */
  background: conic-gradient(
    from 0deg,
    #7aa8ffcc,
    #8b7bbdcc,
    #8a75ffcc,
    #a178d6cc
  );
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 5px), #000 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rotate 3s linear infinite;
  z-index: 0;
}

.avatar img {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1; /* garante que fique acima da borda */
}

/* ===== Cartoes digitais ===== */
.cards-eventos {
  text-align: center;
  padding: 60px 20px;
  height: 45rem;
  background: radial-gradient(circle at top left, #2e0066, #0f0124);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.cards-eventos h2 {
  font-size: 2rem;
  color: #cfcaff;
}

.cards-eventos p {
  color: #c1baf7;
  margin-bottom: 20px;
}

.botoes-categorias {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.botoes-categorias button {
  background: #2b005c;
  border: 1px solid #7b47ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.botoes-categorias button:hover,
.botoes-categorias button.ativo {
  background: linear-gradient(90deg, #7b47ff, #ff00cc);
  box-shadow: 0 0 15px #9b5eff;
}

.conteudo-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.card-evento {
  width: 300px;
  padding: 20px;
  border: 2px 2px 4px 2px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(123, 71, 255, 0.4),
    rgba(255, 0, 204, 0.2)
  );
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  transition: all 0.5s ease;
  animation: fadeIn 0.6s ease;
}

.card-evento img {
  width: 15rem;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 17rem;
}

.card-evento h3 {
  margin-bottom: 10px;
  color: #fff;
}

.card-evento ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.card-evento li {
  margin: 5px 0;
  color: #ddd;
}

.btn-convidar {
  background: #ff00cc;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-convidar:hover {
  background: #c200a7;
}

.caracteristicas {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  text-align: left;
}

.caracteristicas h4 {
  color: #cfcaff;
  margin-bottom: 15px;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
}

.caracteristicas li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.cor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.roxa {
  background: #b84aff;
}
.azul {
  background: #4ab8ff;
}
.rosa {
  background: #ff4ae0;
}
.verde {
  background: #4aff9b;
}

.botoes-secundarios {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.botoes-secundarios button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.botoes-secundarios button:hover {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CARDS ===== */
.portfolioShowcase-card {
  position: relative;
  flex: 0 0 auto; /* garante que todos fiquem em linha */
  width: 280px; /* menor que antes, sobra espaço nas laterais */
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: end;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolioShowcase-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ===== IMAGEM DENTRO DO CARD ===== */
.portfolioShowcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Gradiente escuro sobre a imagem */
.portfolioShowcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

/* ===== INFORMAÇÕES ===== */
.portfolioShowcase-info {
  position: relative;
  z-index: 3;
  padding: 20px;
  text-align: left;
  color: #fff;
}

.portfolioShowcase-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.portfolioShowcase-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 12px;
}

/* ===== BOTÃO ===== */
.portfolioShowcase-btnVer {
  display: inline-block;
  padding: 10px 18px;
  background: #00bfff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.portfolioShowcase-btnVer:hover {
  background: #0080ff;
}

/* ===== SETAS ===== */
.portfolioShowcase-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem; /* aumenta a visibilidade */
  cursor: pointer;
  transition: 0.3s;
  z-index: 10; /* maior que o z-index dos cards */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all; /* garante que clique funcione */
}

.portfolioShowcase-prev {
  left: 10px; /* distância da borda da tela */
}

.portfolioShowcase-next {
  right: 10px; /* distância da borda da tela */
}

.portfolioShowcase-btn:hover {
  color: #00bfff;
}

/* ===================== MEDIA QUERIES ===================== */

/* --- Tablet --- */
@media (max-width: 768px) {
  .navbar nav {
    gap: 15px;
  }

  .texto h1 {
    font-size: 2.2rem;
  }

  .foto-glow {
    width: 200px;
    height: 200px;
  }
}

/* --- MOBILE (atualizado) --- */
@media (max-width: 480px) {
  body .hero {
    background-image: url("img-portifolio/back.png") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll !important;
    min-height: 100vh;
  }

  /* 🔹 Layout lado a lado */
  .hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
    padding: 60px 5%;
  }

  .texto {
    flex: 1;
    max-width: 50%;
    position: relative;
    top: 0;
    z-index: 2;
    left: 0;
  }

  .texto h1 {
    font-size: 1.6rem;
  }

  .texto p {
    font-size: 0.95rem;
  }

  .foto-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .foto-glow {
        width: 160px;
        height: auto;
        left: 1rem;
    }

  /* --- Navbar no mobile --- */
  .navbar nav {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    left: 1.5rem;
    position: relative;
  }

  .navbar .logo {
    display: none;
  }

  /* --- Botões --- */
  .botoes-categorias {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  .botoes-categorias button {
    background: #2b005c;
    border: 1px solid #7b47ff;
    color: #fff;
    padding: 13px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
  }

  /* --- Cards --- */
  .cards-eventos {
    text-align: center;
    padding: 60px 20px;
    height: 61rem;
    object-fit: cover;
    background: radial-gradient(circle at top left, #2e0066, #0f0124);
    color: #fff;
    font-family: "Poppins", sans-serif;
  }
}