* {
  font-family: "Roboto", system-ui, sans-serif;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

:root {
  --rosa: #d56a72;
  --roxo-escuro: #251b3d;
  --roxo-medio: #493773;
  --cinza-card: #2e2d3a;
  --branco: #ffffff;
}

body {
  background-color: var(--roxo-escuro);
  min-height: 100vh;
  color: var(--branco);
}

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

section[id],
article[id] {
  scroll-margin-top: 120px;
}

.header {
  background-color: var(--roxo-escuro);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  position: relative;
}

.header-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #fff;
}

.menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1.5px;
}

.span {
  font-weight: 200;
  color: var(--rosa);
}

.menu a {
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 10px;
  font-weight: 200;
  position: relative;
  transition: color 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--rosa);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.menu a:hover {
  color: var(--rosa);
}

.menu a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: none;
}

.menu-toggle img {
  display: block;
  width: 28px;
  height: 28px;
}

.inicio-items {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  height: 500px;
  padding: 50px 0;
  column-gap: 40px;
}

.items-esquerda {
  display: flex;
  justify-content: center;
}

.imagem-esquerda {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 80px;
}

.imagem-esquerda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px;
}

.imagem-esquerda::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 80px;
  border: 3px solid var(--rosa);
  border-top-color: transparent;
  border-left-color: transparent;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.items-direita {
  color: #fff;
}

.items-direita h2 {
  font-size: 3.1rem;
  font-weight: 200;
}

.items-direita h1 {
  font-size: 4rem;
  margin-bottom: 18px;
  color: var(--rosa);
}

.items-direita span {
  font-size: 1.4rem;
  font-weight: 500;
}

.sobre {
  background-color: var(--roxo-medio);
}

.info-sobre {
  padding: 100px 20px;
  color: #fff;
  display: grid;
  row-gap: 16px;
}

.info-sobre h2 {
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
}

.info-sobre p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.destaque {
  color: var(--rosa);
  font-weight: 500;
}

.download {
  color: var(--rosa);
  padding: 14px 30px;
  justify-self: end;
  background-color: transparent;
  border-radius: 40px;
  margin-top: 40px;
  font-weight: 500;
  border: 2px solid var(--rosa);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.download:hover {
  transform: translateY(-3px);
  background-color: var(--rosa);
  color: var(--roxo-escuro);
  letter-spacing: 0.03em;
}

.formacao {
  background-color: var(--roxo-escuro);
}

.info-formacao {
  padding: 60px 0;
}

.info-formacao h2 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
}

.formacoes-span {
  color: var(--rosa);
  font-weight: 400;
}

.container-divisao {
  padding: 60px 20px 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.card {
  background-color: var(--cinza-card);
  justify-items: center;
  align-content: center;
  padding: 40px;
  gap: 10px;
  height: 400px;
  border-radius: 30px 0 30px 0;
  color: #fff;
  border: 3px solid transparent;
  display: grid;
  text-align: left;
  transition:
    border-color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card li {
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
}

.card p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.card img {
  height: 75px;
}

.card:hover {
  border-color: var(--rosa);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.projetos {
  background-color: var(--roxo-medio);
}

.projetos-geral {
  padding: 80px 20px 90px;
  color: #fff;
}

.projetos-titulo {
  font-size: 3.5rem;
  font-weight: 400;
  position: relative;
}

.projetos-titulo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 60px;
  height: 2px;
  background-color: var(--rosa);
}

.spanPrimarioProjetos {
  display: block;
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 300;
}

.mockups-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.mockup-card {
  background-color: var(--cinza-card);
  border-radius: 24px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.mockup-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease;
}

.mockup-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(213, 106, 114, 0.35),
    transparent 55%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.mockup-info {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.projeto-meta {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--rosa);
  font-weight: 500;
}

.mockup-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.mockup-info p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.6;
}

.projeto-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rosa);
  border-radius: 999px;
  border: 1px solid rgba(213, 106, 114, 0.9);
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.projeto-link::after {
  content: "↗";
  font-size: 0.8rem;
}

.projeto-link:hover {
  background-color: rgba(213, 106, 114, 0.15);
  color: var(--rosa);
  border-color: rgba(213, 106, 114, 0.9);
}

.projeto-link--small {
  font-size: 0.85rem;
  padding: 6px 12px;
  margin-top: 6px;
}

.outro-card .projeto-link {
  display: inline-flex;
}

.mockup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  border-color: rgba(213, 106, 114, 0.7);
}

.mockup-card:hover .mockup-image {
  transform: translateY(-2px) scale(1.02);
}

.outros-titulo {
  margin-top: 64px;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}

.outros-grid {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.outro-card {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 300;
  width: 250px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.outro-thumb {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  background-color: var(--cinza-card);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  border: 1px solid transparent;
}

.outro-card p strong {
  color: var(--rosa);
  font-weight: 500;
}

.outro-card:hover {
  transform: translateY(-6px);
}

.outro-card:hover .outro-thumb {
  border-color: var(--rosa);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.mockup-plantae {
  background-image: url("../assets/img/mockup-plantae.png");
}

.mockup-bookapp {
  background-image: url("../assets/img/mockup-bookfly.png");
}

.mockup-cherie {
  background-image: url("../assets/img/mockup-cherie.png");
}

.mockup-saphire {
  background-image: url("../assets/img/mockup-saphire.png");
}

.outro-rosemood {
  background-image: url("../assets/img/mockup-rosemood.png");
}

.outro-batom {
  background-image: url("../assets/img/mockup-batom.png");
}

.outro-fashion {
  background-image: url("../assets/img/mockup-portfolio-fashion.png");
}

.outro-laribot {
  background-image: url("../assets/img/mockup-laribot.png");
}

.experiencia {
  background-color: var(--roxo-escuro);
}

.experiencia-wrapper {
  padding: 80px 20px 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 40px;
  color: #fff;
}

.experiencia-titulo {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.experiencia-texto p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.experiencia-texto strong {
  color: var(--rosa);
  font-weight: 500;
}

.experiencia-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.exp-card {
  background-color: var(--cinza-card);
  border-radius: 20px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.exp-card-header h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.exp-local {
  font-size: 0.9rem;
  opacity: 0.85;
}

.exp-periodo {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.exp-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exp-tags li {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contato {
  background-color: var(--roxo-medio);
}

.contato-wrapper {
  padding: 80px 20px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  color: #fff;
  align-items: flex-start;
}

.contato-texto h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.contato-texto p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contato-lista {
  font-size: 0.95rem;
  font-weight: 300;
  display: grid;
  gap: 4px;
}

.contato-card {
  background-color: var(--cinza-card);
  border-radius: 26px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.contato-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.campo-form {
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
}

.campo-form span {
  opacity: 0.85;
}

.campo-form input,
.campo-form textarea {
  background-color: #1e1d28;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 12px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.campo-form input::placeholder,
.campo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.campo-form input:focus,
.campo-form textarea:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 1px rgba(213, 106, 114, 0.6);
}

.btn-enviar {
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 40px;
  border: 2px solid var(--rosa);
  background-color: transparent;
  color: var(--rosa);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    letter-spacing 0.2s ease;
}

.btn-enviar:hover {
  background-color: var(--rosa);
  color: var(--roxo-escuro);
  letter-spacing: 0.08em;
}

.footer {
  background-color: #181624;
  color: #fff;
}

.footer-wrapper {
  padding: 32px 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.footer-texto h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.footer-texto p {
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 360px;
}

.footer-icones {
  display: flex;
  gap: 16px;
}

.footer-icones a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background-color: #221f35;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.footer-icones img {
  width: 18px;
  height: 18px;
}

.footer-icones a:hover {
  background-color: var(--rosa);
  border-color: var(--rosa);
  transform: translateY(-2px);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px 14px;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .inicio-items {
    grid-template-columns: 1fr;
    height: auto;
    row-gap: 32px;
    text-align: center;
    padding: 40px 0 50px;
  }

  .items-direita h1 {
    font-size: 3rem;
  }

  .container-divisao {
    grid-template-columns: 1fr;
  }

  .mockups-grid {
    grid-template-columns: 1fr;
  }

  .outros-grid {
    flex-direction: column;
    align-items: center;
  }

  .experiencia-wrapper,
  .contato-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 20px 70px;
  }

  .experiencia-titulo,
  .contato-texto h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .experiencia-texto p,
  .contato-texto p {
    text-align: center;
  }

  .experiencia-cards,
  .contato-card {
    margin-top: 12px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-container {
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: static;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background-color: var(--roxo-escuro);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px 12px;
    gap: 2px;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 20;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .menu a {
    width: 100%;
    padding: 8px 2px;
    font-size: 1rem;
  }

  .menu.menu-open {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .imagem-esquerda {
    width: 260px;
    height: 260px;
    border-radius: 60px;
  }

  .items-direita h2 {
    font-size: 2.1rem;
  }

  .items-direita h1 {
    font-size: 2.6rem;
  }

  .items-direita span {
    font-size: 1.1rem;
  }
}

