:root {
  --dark-bg: #a7a6a605;
  --purple-bg: #;
  --orange: #ff0055;
  --input-bg: #221f3a;
  --input-placeholder: #white;
  --text-light: #fff;
  --text-muted: #ccc;
}

.contact-section {
  padding: 60px 20px;

  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-section .subtitle {
  color: var(--orange);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-section .title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 50px;
  line-height: 1.2;
}

.contact-content {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-box {
  /* background-color: var(--purple-bg); */
  border-radius: 25px;
  padding: 30px 40px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  background-color: var(--orange);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-item b {
  font-weight: 700;
  font-size: 1.1rem;
}

.info-item div {
  font-size: 0.9rem;
  color: #eaeaea;
}

.contact-form {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  background-color: var(--dark-bg);
  padding: 30px 30px 40px;
  border-radius: 25px;
  min-width: 320px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  background-color: var(--input-bg);
  border: none;
  border-radius: 15px;
  padding: 14px 18px;
  color: var(--text-light);
  font-size: 1rem;
  resize: none;
  outline-offset: 2px;
  outline-color: transparent;
  transition: outline-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--input-placeholder);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: var(--orange);
}

.contact-form textarea {
  grid-column: 1 / -1;
  height: 120px;
}

.contact-form button {
    grid-column: 1 / -1;
    background-color: var(--orange);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    justify-self: start;
    margin-top: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), inset 0 -3px 0 rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button:hover {
    background-color: white;
    color: #ff0055;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3), inset 0 -4px 0 rgba(0,0,0,0.3);
}

.contact-form button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.1);
    background-color: #e55a00; /* Exemplo: escurecido manualmente se --orange for #ff6600 */
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.contact-form button:hover::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

@keyframes contactButtonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.contact-form button:focus {
    outline: none;
    animation: contactButtonPulse 1s infinite;
}

/* Responsividade */
@media (max-width: 920px) {
  .junt{
    align-items: center;
  }
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form button {
    grid-column: auto;
  }

  .contact-form button {
    justify-self: center;
  }
}

.footer {
  background-color: #1c1832;
  color: #fff;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  color: #fff;
}
.footer-logo span {
  color: #ff0055;
}
.footer-logo p a{
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

footer a{
  text-decoration: none;
    color: white;
    transition: 0.4s ease-in-out;

}
footer a:hover{
    color: #ff0055;
    transition: 0.4s ease-in-out;

}
.footer-links h3,
.footer-contact h3 {
  color: #ff0055;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact .junt{
  flex-direction: column;
  display: flex;
  gap: 20px;

}
.junt a{
  display: flex;
  gap: 4px;
  align-items: center;
}
.junt img{
  width: 30px;
}
.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}
.footer-contact i {
  margin-right: 8px;
  color: #6d3eff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}

.footer-bottom .highlight {
  color: #ff0055;
}

/* portfo------  */
.portfolio-section {
background-color: rgba(167, 166, 166, 0.021);  padding: 80px 20px;
  text-align: center;
}

.portfolio-section .subtitulo {
  font-size: 1.2rem;
  color: #c9c9ff;
  margin-bottom: 10px;
}

.portfolio-section .titulo {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 40px;
}

.filtros {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.filtro {
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s;
}

.filtro:hover,
.filtro.ativo {
  color: #ff0055;
}

.filtro.ativo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #ff0055;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.galeria img{
    cursor: pointer;
    width: 400px !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
}
.projeto {
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.projeto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px #00000050;
  transition: transform 0.3s;
}

.projeto img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .portfolio-section .titulo {
    font-size: 2rem;
  }

  .filtros {
    gap: 20px;
    flex-wrap: wrap;
  }
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 25, 0.9);
  display: none; /* escondido por padrão */
  justify-content: center;
  align-items: center;
  z-index: 999999; /* muito alto pra ficar acima de tudo */
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

#modal.show {
  display: flex;
}

/* Modal content fica igual ao seu */
.modal-content {
  background: #29244a;
  color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.modal-content .fechar {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  color: #ccc;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.modal-content img {
  max-width: 80%; /* controla a largura máxima da imagem, pode ajustar para 70%, 60% etc */
  height: auto;   /* mantém a proporção da imagem */
  border-radius: 8px;
  margin-bottom: 20px;
}
#modal-link{
    text-decoration: none;
    color: var(--orange);
}
#modal-link:hover{
    color: white;
}

.modal-content .fechar:hover {
  color: #ff0055;
}


.projeto {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.projeto img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.descricao-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c0c19d9;
  color: #ffffff;
  padding: 10px;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.projeto:hover .descricao-overlay,
.projeto:active .descricao-overlay,
.projeto.touch .descricao-overlay {
  opacity: 1;
  transform: translateY(0%);
}

.neoimg{
    width: 280px !important;
}

/* arte  */
.colaboracoes-section {
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #bebebe;
  margin-bottom: 60px;
}

.collab-bloco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.collab-bloco.invertido {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.collab-bloco.invertido .collab-texto {
  direction: ltr; /* volta o texto pro normal */
}

.collab-texto h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #ff0055;
}

.colab-periodo {
  font-size: 0.95em;
  color: #999;
  display: block;
  margin-bottom: 15px;
}

.collab-texto p {
  font-size: 1.05em;
  line-height: 1.6;
}

.collab-imagem img {
  width: 60%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin: 0 auto;
  background: linear-gradient(135deg, hsla(262, 80%, 10%, 0.89) 0%, #0b011b 100%);

}

.collab-imagem img:hover {
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 850px) {
  .collab-bloco,
  .collab-bloco.invertido {
    grid-template-columns: 1fr;
    direction: ltr !important;
    text-align: center;
  }
  .collab-bloco p, a{
    text-align: center;
  }
  .collab-texto {
    margin-bottom: 30px;
  }

  .collab-imagem img {
    max-width: 100%;
  }
}


.faq-section {
  padding: 80px 20px;
  background-color: rgba(167, 166, 166, 0.021);

}

.faq-section .section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 10px;
}

.faq-section .section-subtitle {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 40px;
  border-left: 4px solid #ff0055;
  background: linear-gradient(135deg, hsla(263, 74%, 15%, 0.199) 0%, transparent 100%);

  padding-left: 20px;
}

.faq-pergunta {
  font-size: 1.4em;
  margin-bottom: 8px;
}

.faq-resposta {
  font-size: 1.05em;
  line-height: 1.6;
}

/* WebKit */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000; 
}

::-webkit-scrollbar-thumb {
  background-color: #ff0055; 
  border-radius: 10px;
  border: 3px solid #0b011b;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #e6004d;
}

