* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  --cor-header: #141414;
  --cor-letra: #f5f5f5;
  --detalhes-transparent: #141414c0;
  --detalhe: #6ab0ff;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  /* Mudado de 100dvw para 100% */
  max-width: 100%;
  /* Garante que nada passe do limite da tela */
  background-color: #080808;
  overflow-x: hidden;
  /* Evita o surgimento de barras horizontais */
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.bolha1 {
  position: absolute;
  top: 100px;
  left: 20%;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 0px 0px 20px 10px rgb(37, 108, 241);
  width: 5px;
  height: 5px;
  animation: moverBolha1 8s linear infinite;
}

.bolha2 {
  position: absolute;
  top: 100px;
  left: 40%;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 0px 0px 20px 10px white;
  width: 5px;
  height: 5px;
  animation: moverBolha2 15s linear infinite;
}

.bolha3 {
  position: absolute;
  top: 100px;
  left: 60%;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 0px 0px 20px 10px rgb(37, 108, 241);
  width: 5px;
  height: 5px;
  animation: moverBolha3 23s linear infinite;
}

.bolha4 {
  position: absolute;
  top: 100px;
  left: 80%;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 0px 0px 20px 10px white;
  width: 5px;
  height: 5px;
  animation: moverBolha4 31s linear infinite;
}

@keyframes moverBolha1 {
  0% {
    transform: translateY(600px);
  }

  70% {
    transform: translateY(200px);
    opacity: 0.5;
  }

  100% {
    opacity: 0.1;
  }
}

@keyframes moverBolha2 {
  0% {
    transform: translateY(600px);
  }

  50% {
    transform: translateY(200px);
    opacity: 0.1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes moverBolha3 {
  0% {
    transform: translateY(600px);
  }

  70% {
    transform: translateY(200px);
    opacity: 0.1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes moverBolha4 {
  0% {
    transform: translateY(600px);
  }

  50% {
    transform: translateY(200px);
    opacity: 0.1;
  }

  100% {
    opacity: 0;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1s ease;
}

.preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.preloader_first {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--detalhe);

  text-shadow: 0 0 20px var(--detalhe);

  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
}

.preloader_second {
  display: flex;
  justify-content: center;
  align-items: center;
}

#mensagemPreloader {
  display: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0;
  /* animation: fadeIn .8s ease forwards; */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  padding-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.imgFundo,
video {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: -2;
}

.imgFundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.5);
}

header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8dvh;
  z-index: 2;
}

.menu {
  background-color: var(--cor-header);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(87, 87, 87);
  width: 97%;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
}

header ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  list-style: none;
  gap: 20px;
  width: 50%;
}

header ul li a {
  text-decoration: none;
  color: var(--cor-letra);
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

header ul li a:hover {
  color: rgb(65, 170, 255);
}

#logo {
  display: flex;
  justify-content: flex-start;
  font-size: 15px;
  font-weight: 500;
  width: 50%;
}

#logo a {
  text-decoration: none;
  color: var(--cor-letra);
}

.apresentacao {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  align-items: center;
  color: var(--cor-letra);
  width: 100%;
  height: 100dvh;
  gap: 20px;
}

.fotoApresentacao {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.021);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.fotoApresentacao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.linksApresentacao ul {
  width: 15dvw;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: center;
  gap: 20px;
}

.linksApresentacao ul i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  font-size: 26px;
  color: var(--cor-letra);
  transition: all 0.2s ease-in-out;
}

.linksApresentacao ul i:hover {
  color: var(--detalhe);
  text-shadow: 0px 0px 50px;
  transform: scale(1.1);
}

.textoApresentacao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40%;
  font-size: 16pt;
}

.textoApresentacao h2 {
  font-size: 30pt;
  margin: 0;

  overflow: hidden;
  border-right: 0.15em solid var(--detalhe);
  white-space: nowrap;
  margin: 0 auto;

  width: 0;
  animation:
    typing 5s steps(30, end) forwards,
    blink-caret 0.75s step-end infinite;
}

.textoApresentacao span {
  color: var(--detalhe);
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 85%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--detalhe);
  }
}

.textoApresentacao p {
  line-height: 1.5;
}

nav {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

nav .btn {
  text-decoration: none;
  background-color: var(--cor-header);
  color: var(--cor-letra);
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid rgb(87, 87, 87);
  text-shadow: 0px 0px 5px rgb(148, 204, 250);
  transition: all 0.3s ease-in-out;
}

nav .btn:hover {
  background: linear-gradient(
    to right,
    #030c35,
    rgb(2, 51, 107),
    rgb(2, 51, 107),
    #030c35
  );
  text-shadow: 0px 0px 5px rgb(65, 170, 255);
  opacity: 0.5;
  transform: scale(1.05);
}

#projetos,
#habilidades,
#certificados,
#contato,
#sobre {
  padding: 50px 50px;
  border-radius: 10px;
  width: 100%;
  min-height: 100dvh;
}

.container-skill-ferramentas {
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}

h2 {
  color: var(--cor-letra);
  margin-top: 20px;
  margin-bottom: 20px;
}

.projetos-container,
.habilidades-container,
.certificados-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  gap: 27px;
}

#overview {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Escureci um pouco mais para dar destaque */
  display: none;
  /* Ativar com 'flex' via JavaScript */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Garantir que fique acima de tudo */
}

#modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 450px;
  max-width: 90%;
  height: 85%;
  max-height: 650px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--cor-letra, #ffffff);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  overflow: hidden;
}

.fechar i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: var(--cor-letra, #ffffff);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  z-index: 10;
  /* Fica acima da imagem */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Sombra para não sumir em imagens claras */
}

.fechar i:hover {
  transform: scale(1.2);
  color: #ef4444;
  /* Vermelho suave ao passar o mouse */
}

.imagem {
  width: 100%;
  height: 45%;
  /* Ocupa 45% do espaço vertical */
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faz a imagem cobrir o espaço sem distorcer */
  transition: transform 0.4s ease;
}

#modal:hover .imagem img {
  transform: scale(1.03);
  /* Efeito sutil de zoom no card */
}

.descricao {
  padding: 24px;
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Distribui os textos, badges e o botão */
  color: var(--cor-letra, #ffffff);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.descricao h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.descricao p {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  overflow-y: auto;
  /* Permite scroll se a descrição for muito longa */
  padding-right: 4px;
}

.descricao p::-webkit-scrollbar {
  width: 4px;
}

.descricao p::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.tecnologias {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tecnologias li {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.descricao .btn {
  display: block;
  text-align: center;
  background-color: #ffffff;
  color: #111827;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  margin-top: auto;
}

.descricao .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.descricao .btn:active {
  transform: translateY(0);
}

.projeto {
  position: relative;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.854),
    rgba(255, 255, 255, 0.068)
  );
  width: 23.5%;
  height: 50dvh;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgb(54, 54, 54);
  color: rgba(255, 255, 255, 0.789);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.projeto:hover {
  transform: translateY(-6px);
  border-color: var(--detalhe);
}

.projeto img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.projeto img:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.projeto h3 {
  color: var(--cor-letra);
}

.projeto ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.projeto ul li {
  background-color: rgba(255, 255, 255, 0.042);
  list-style: none;
  color: rgba(255, 255, 255, 0.789);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10pt;
}

.botoes {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.botoes a {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 50%;
  color: rgba(255, 255, 255, 0.789);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10pt;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.botoes a:hover {
  box-shadow: 0px 0px 3px var(--cor-letra);
  text-shadow: 0px 0px 3px var(--cor-letra);
}

/* ----------- Habilidades ------------ */
#habilidades {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4rem 2rem;
}

#habilidades h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hab-divider {
  border: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  margin: 0.25rem 0 2rem;
}

.hab-categoria {
  margin-bottom: 2rem;
}

.hab-categoria-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ab0ff;
  margin-bottom: 0.75rem;
}

.hab-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hab-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  backdrop-filter: blur(6px);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.hab-card:hover {
  border-color: rgba(100, 170, 255, 0.45);
  background: rgba(100, 170, 255, 0.07);
}

.hab-nome {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f0f0f0;
}

.hab-badge {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
}

.badge-av {
  background: rgba(100, 200, 130, 0.12);
  color: #7de0a0;
  border: 0.5px solid rgba(100, 200, 130, 0.3);
}

.badge-int {
  background: rgba(100, 160, 255, 0.1);
  color: #88bbff;
  border: 0.5px solid rgba(100, 160, 255, 0.25);
}

/* ----------- Certificados ------------ */

.certificados-container {
  flex-wrap: wrap;
}

.certificado {
  width: 15rem;
  height: 10rem;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(49, 49, 49);
  backdrop-filter: blur(4px);
  color: var(--cor-letra);
}

.cursoCertificado {
  font-size: 13pt;
  font-weight: 500;
  text-align: center;
}

.infos_instituicao {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 10pt;
  color: rgb(164, 164, 164);
}

.certificado a {
  color: var(--cor-letra);
  transition: all 0.4s ease;
}

.certificado a:hover {
  transform: scale(1.08);
  text-shadow: 0px 0px 10px rgb(44, 83, 255);
}
.alterarTexto {
  padding: 12px 20px;
  margin-bottom: 20px;

  background: transparent;
  border: 1px solid var(--cor-letra);

  color: var(--cor-letra);
  font-size: 15px;
  font-weight: 500;

  border-radius: 8px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.alterarTexto:hover {
  background: var(--cor-letra);
  color: var(--bg);
}

.alterarTexto:active {
  transform: scale(0.97);
}

#sobre {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.texto1 {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#sobre h2 {
  margin-bottom: 20px;
}

.curriculo {
  display: flex;
  flex-direction: column;
}
.curriculo a {
  margin-top: 20px;
  padding: 5px 20px;
  background: transparent;
  border: 1px solid var(--cor-letra);
  color: var(--cor-letra);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.curriculo img {
  height: 68dvh;
}

#sobre p {
  font-size: 18px;
  color: var(--cor-letra);
  line-height: 1.8;
}

.about-box {
  width: 100%;

  background: var(--card);

  backdrop-filter: blur(10px);

  border: 1px solid var(--borda);

  border-radius: 16px;

  padding: 2rem;

  transition: all 0.3s ease;
}

.about-box:hover {
  transform: translateY(-3px);
  border-color: var(--detalhe);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#contato {
  width: 100%;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.titulo-contato {
  font-size: 42px;
  color: var(--cor-letra);
  font-weight: 700;
}

.contato-containers {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contato-container1,
.contato-container2 {
  flex: 1;
  padding: 40px;
  border-radius: 20px;

  background: rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

  color: var(--cor-letra);

  transition: 0.3s;
}

.contato-container1:hover,
.contato-container2:hover {
  transform: translateY(-5px);
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contato-info h3 {
  font-size: 36px;
}

.descricao-contato {
  color: rgb(180, 180, 180);
  line-height: 1.6;
  max-width: 500px;
}

.email {
  font-size: 18px;
}

.email span {
  font-weight: bold;
  color: white;
}

.social-links {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  list-style: none;
}

.social-links a {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 28px;

  transition: 0.3s;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);

  background: rgba(255, 255, 255, 0.12);

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.contato-container2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contato-container2 h2 {
  font-size: 36px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;

  padding: 16px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.03);

  color: white;

  outline: none;

  transition: 0.3s;

  font-size: 16px;
}

#contact-form textarea {
  min-height: 180px;
  resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: white;

  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#contact-form button {
  padding: 16px;

  border: none;

  border-radius: 12px;

  background: white;

  color: black;

  font-size: 16px;
  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

#contact-form button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .textoApresentacao {
    width: 40%;
    font-size: 15pt;
    font-weight: 300;
    text-shadow: 0px 0px 5px rgb(33, 117, 196);
  }

  .textoApresentacao h2 {
    display: flex;
    flex-direction: column;
    font-size: 20pt;
    border-right: 0.15em solid var(--detalhe);
  }

  .contato-containers {
    flex-direction: column;
  }

  .titulo-contato {
    font-size: 32px;
  }

  .contato-container1,
  .contato-container2 {
    padding: 30px;
  }

  .contato-container2 h2,
  .contato-info h3 {
    font-size: 28px;
  }

  .projetos-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .projeto {
    width: 47%;
    height: 45dvh;
  }
}

@media (max-width: 700px) {
  .menu {
    width: 95%;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #logo {
    display: none;
  }

  header ul {
    justify-content: center;
    list-style: none;
    gap: 20px;
    width: 50%;
  }

  .textoApresentacao {
    width: 70%;
    text-align: start;
  }

  .textoApresentacao h2 {
    text-align: center;
  }

  nav {
    width: 70%;
    justify-content: space-between;
  }

  nav .btn {
    padding: 10px 10px;
  }

  .projetos-container {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .projeto {
    width: 100dvw;
    height: 45dvh;
  }

  .botoes a {
    height: 5dvh;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    gap: 10px;
  }

  .container-skill-ferramentas {
    width: 100%;
  }

  .habilidades-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .skill {
    width: 40dvw;
    height: 8dvh;
    text-align: center;
  }

  .certificados-container {
    justify-content: space-between;
    gap: 5px;
  }

  #certificados {
    min-height: 50dvh;
  }

  .certificado {
    width: 10rem;
    height: 10rem;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(49, 49, 49);
    backdrop-filter: blur(4px);
    color: var(--cor-letra);
  }

  .certificado a {
    font-size: 12px;
  }

  .texto2 {
    display: none;
  }

  #sobre p {
    font-size: 18px;
    max-width: 400px;
    color: var(--cor-letra);
    line-height: 1.6;
  }

  .verTextoIngles {
    display: block;
  }

  .contato-containers {
    flex-direction: column;
  }

  .contato-container1,
  .contato-container2 {
    width: 100%;
    padding: 20px;
    gap: 20px;
    height: 100%;
    font-size: 20px;
    color: var(--cor-letra);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(68, 68, 68, 0.678);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.897);
    border-radius: 5px;
  }

  .contato-container1 ul {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 30px;
    margin-top: 20px;
  }

  .contato-container1 p {
    font-size: 22px;
    font-weight: 600;
  }

  .contato-container1 span {
    display: none;
  }

  .contato-container1 ul a {
    font-size: 35px;
  }
}
