@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #9D4EDD;
  --secondary-color: #7B2CBF;
  --accent-color: #240046;
  --royal-blue: #3A0CA3;
  --indigo: #4361EE;
  --pink-accent: #F72585;
  --light-purple: #C77DFF;
  --background-color: #10002B;
  --background-color2: #b79fe275;
  --text-color: #FFFFFF;
  --text-dark: #0F0326;
  --card-bg: rgba(123, 44, 191, 0.15);
  --card-border: #9D4EDD;
  --card-hover-border: #F72585;
  --heading-color: #FFFFFF;
  --subheading-color: #C77DFF;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-color) 100%);
  background-image: url(coding-background-9izlympnd0ovmpli.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

/* Futuristic Glassmorphism BG */
.cv-futuristic-bg {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--background-color2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-futuristic-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CARD MODULAR */
.cv-card {
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(219, 0, 181, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--card-border);
  padding: 32px 36px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border 0.3s;
}

.cv-card:not(.cv-card-footer):hover {
  box-shadow: 0 12px 40px 0 #DB00B544, 0 1.5px 8px 0 #667ce044;
  border: 1.5px solid var(--card-hover-border);
}

/* PROFILE CARD */
.cv-card-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--background-color2) 100%);
  border-left: 5px solid var(--secondary-color);
}

.cv-card-profile__img {
  flex-shrink: 0;
}

.cv-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 2px 16px #DB00B555;
  background: var(--accent-color);
}

.cv-card-profile__info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cv-card-profile__info h2 {
  font-size: 1.2rem;
  color: var(--subheading-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px #667ce044;
}

.cv-header__summary {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.cv-header__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.cv-contact {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, transform 0.2s;
  background: #667ce044;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #667ce044;
}

.cv-contact:hover {
  background: #667ce088;
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

/* SKILLS CARD */
.cv-card-skills h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.cv-skills__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-skill-ellipse img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.cv-skills__list span {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

/* SOFT SKILLS CARD */
.cv-card-softskills h3 {
  color: #4c2445;
  font-size: 1.18rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cv-softskills__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  font-size: 1rem;
}

.cv-softskills__list li {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text-color);
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.2);
}

.cv-softskills__list li:hover, .cv-timeline-content:hover {
  background: #667ce044;
  border-color: var(--primary-color);
  box-shadow: 0 3px 12px #667ce0c2;
  cursor: default;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* TIMELINE FUTURISTA */
.cv-card-timeline h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.cv-timeline-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px #DB00B544;
  border: 2.5px solid var(--background-color2);
  z-index: 2;
  animation: pulseDot 1.5s infinite alternate;
}

.cv-timeline-futuristic {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.cv-timeline-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.cv-timeline-block h4 {
  color: var(--subheading-color);
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.cv-timeline-list {
  list-style: none;
  position: relative;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 2.5px solid var(--primary-color);
}

.cv-timeline-list li {
  position: relative;
  margin-bottom: 28px;
  min-height: 48px;
  animation: fadeInUp 0.7s cubic-bezier(.39, .575, .56, 1) both;
}

.cv-timeline-content {
  font-size: 0.9rem;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text-color);
  border-radius: 20px;
  padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.3);
}

.cv-timeline-year {
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-right: 8px;
  background: #667ce044;
  padding: 3px 12px;
  border-radius: 6px;
  display: inline-block;
}

.cv-skills__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  list-style: none;
  padding: 0;
}

.cv-skills__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  min-width: 160px;
}

.cv-skills__list li:hover {
  background: #667ce044;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px #667ce0c2;
  transform: translateY(-3px);
}

.cv-skill-ellipse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--text-color);
  margin-right: 6px;
}

.cv-skill-ellipse i {
  color: #fff;
  font-size: 1.4rem;
}

.cv-skills__list span {
  font-weight: 600;
  color: var(--text-color);
}

@keyframes identifier {
  0% {
    box-shadow: 0 0 0 0 #667ce044;
  }

  100% {
    box-shadow: 0 0 16px 8px #667ce022;
  }

}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 #667ce044;
  }

  100% {
    box-shadow: 0 0 16px 8px #667ce022;
  }
}

/* PROJETOS CARD */
.cv-card-projects h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.cv-project {
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #1A1A2E;
  transition: all 0.3s ease;
}

.cv-project p {
  font-size: 0.98rem;
  color: #283157;
  line-height: 1.6;
}

.cv-project h4 {
  margin-bottom: 8px;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1.1rem;
}

.cv-project:hover {
  background: rgba(255, 255, 255, 1);
  border-left: 4px solid var(--secondary-color);
  transform: translateX(5px);
  box-shadow: 0 4px 16px #667ce0b6;
}

.cv-github-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

/* FOOTER CARD */
.cv-card-footer {
  background: var(--card-bg);
  border-top: 2px solid var(--secondary-color);
  text-align: center;
  margin-top: 12px;
  box-shadow: 0 1px 8px #DB00B522;
}

.cv-card-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}

.cv-card-footer nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 1px 4px #14D9CE22;
}

.cv-card-footer nav a:hover {
  color: #ffffff;
  text-shadow: 0 2px 8px #DB00B544;
}

.cv-footer__quote {
  color: var(--text-color);
  font-style: italic;
  font-size: 1.01rem;
  margin-top: 8px;
}

/* SCROLLBAR FUTURISTA */
::-webkit-scrollbar {
  width: 10px;
  background: #232526;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 8px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .cv-futuristic-container {
    max-width: 98vw;
    padding: 0 2vw;
  }

  .cv-card {
    padding: 22px 8vw;
  }
}

@media (max-width: 700px) {
  .cv-card {
    padding: 18px 4vw;
  }

  .cv-card-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cv-photo {
    width: 90px;
    height: 90px;
  }

  .cv-card-profile__info h1 {
    font-size: 1.3rem;
  }

  .cv-card-profile__info h2 {
    font-size: 1rem;
  }

  .cv-header__summary {
    font-size: 0.98rem;
  }

  .cv-skills__list {
    grid-template-columns: 1fr;
  }

  .cv-timeline-futuristic {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .cv-futuristic-container {
    padding: 0 1vw;
  }

  .cv-card {
    padding: 10px 2vw;
  }

  .cv-header__contacts {
    flex-direction: column;
    gap: 8px;
  }

  .cv-card-footer nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* Remove body duplicado e cores fora da paleta */
.apresentacao {
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: .5rem auto;
  box-shadow: 2px 1px 8px var(--roxo);
  background: #fff;
}

.projetos {
  padding: 1rem;
}

.projeto {
  padding: 2rem;
}

.projeto ul li {
  margin-left: 2rem;
}

main,
footer,
header {
  margin: auto;
  width: 100%;
}

.dir_esq {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.esquerda {
  background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.direita {
  background: linear-gradient(-135deg, #fff, var(--background-color2));
}

.profissao {
  margin: auto;
  text-align: center;
}

.profissao i {
  font-size: 2rem;
}

.sobre_texto {
  margin: auto;
  text-align: justify;
  font-size: 1rem;
}

blockquote {
  text-align: center;
}

q {
  display: inline;
  font-size: .8rem;
  text-align: center;
  font-style: italic;
}

.div_foto {
  display: flex;
}

.foto {
  margin: auto;
  width: 8rem;
  padding-bottom: 0.7rem;
  border-radius: 50%;
}

.art_experiencias,
.art_formacao {
  /* border-bottom: 1px solid #dee2e6; */
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  padding: 1rem;
  gap: 0.9rem;
  overflow: hidden;
}

.ano {
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
}

.barra {
  position: relative;
  top: 1.2rem;
  border-right: 2px solid rgb(15, 132, 240);
}

.barra::before {
  content: "";
  position: relative;
  top: -1rem;
  left: 0.3rem;
  background: rgb(15, 132, 240);
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.competencias {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.competencias ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.competencias ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
}

progress {
  width: 90%;
}

.linkedin a,
.github a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.linkedin a:hover,
.github a:hover {
  color: var(--secondary-color);
}

footer nav {
  text-align: center;
  padding: 1rem;
}

footer nav a {
  margin-right: .5rem;
  text-decoration: none;
}

@media screen and (min-width: 600px) AND (max-width: 1048px) {
  .dir_esq {
    grid-template-columns: 35% 65%;
  }
}

@media screen and (max-width: 599px) {
  .dir_esq {
    display: block;
  }

  h1 {
    font-size: 1.2rem;
  }

  .apresentacao {
    background: linear-gradient(-135deg,
        var(--secondary-color),
        var(--background-color2));
  }

  .art_experiencias,
  .art_formacao {
    margin-bottom: 0;
  }

  .esquerda {
    margin: 0;
  }
}