@font-face {
    font-family: 'Ragtag Display';
    src: url('Ragtag-Display.eot');
    src: url('Ragtag-Display.eot?#iefix') format('embedded-opentype'),
        url('Ragtag-Display.woff2') format('woff2'),
        url('Ragtag-Display.woff') format('woff'),
        url('Ragtag-Display.ttf') format('truetype'),
        url('Ragtag-Display.svg#Ragtag-Display') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avantt';
    src: url('fonts/Avantt-Light.eot');
    src: url('fonts/Avantt-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Avantt-Light.woff2') format('woff2'),
        url('fonts/Avantt-Light.woff') format('woff'),
        url('fonts/Avantt-Light.ttf') format('truetype'),
        url('fonts/Avantt-Light.svg#Avantt-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avantt';
    src: url('fonts/Avantt-Bold.eot');
    src: url('fonts/Avantt-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Avantt-Bold.woff2') format('woff2'),
        url('fonts/Avantt-Bold.woff') format('woff'),
        url('fonts/Avantt-Bold.ttf') format('truetype'),
        url('fonts/Avantt-Bold.svg#Avantt-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background: #fffaf3;
    font-family: 'Avantt', sans-serif;
    cursor: none; /* Esconde o cursor nativo */
}

a {text-decoration: none;color: #000}

a:hover { cursor:none; }

::selection, header a:hover, footer a:hover {
    background: #ceff00; /* Fundo verde limão */
    color: black;         /* Texto preto */
}

/* Para compatibilidade extra com Safari antigo */
::-moz-selection {
    background: #ceff00;
    color: black;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  z-index: 9999;
}

.link-hover .cursor {
  width: 20px;
  height: 20px;
  border-radius: 0%;
  background: #ceff00;
}

.soon:hover {
  opacity: 0.3;
  transition: opacity 0.8s ease;
}



.cursor.link-soon {
  width: 20px;
  height: 20px;
  background: #ff3cba;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0%;
}

.cursor.link-soon::after {
  content: "Soon";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff3cba;
  font-family: 'Avantt', sans-serif;
  background: #fffaf3;
  padding: 2px 4px;
  border-radius: 4px;
  pointer-events: none;
}


header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1% 1%;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
}

header .about, footer .about {
    text-align: right;
}

footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1% 1%;
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 5vh;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vh 0;
  height: auto;
}

#logo svg {
    width: 100vw;
    height: auto;
    display: block;
}

#logo-mini svg {
  width: 80%;
  margin-top:-0.5%;
  height: auto;
  display: block;
}
.logo-mini {
  max-width: 100%;
  padding-right: 10px;
}



.masonry {
    margin-top: 1vh;
  width: 99%;
  padding: 0% 0 0 1%;
  position: relative;
}

.grid-sizer {
  width: 25%; /* 4 colunas */
}
.masonry img {
      border-radius: 10px;
}

.item {
  width: 24%;
  margin-bottom: 0.8%;
}
.item img
{width: 100%}

.item.highlight {
  width: 48.7%;
}

.item.highlight img  {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.projeto {
  display: grid;
  grid-template-columns: 24% 75%;
  gap: 1%;
  padding: 2% 1%;
}

.coluna-texto h1 {
  font-family: 'Avantt', sans-serif;
  font-size: 28px;
    text-transform: uppercase;
margin:0;
}

.coluna-texto h2 { 
    font-family: 'Avantt', sans-serif;
        font-weight: 300;
  font-size: 28px;
    text-transform: uppercase;
    margin-top: 0;
margin-bottom:16px;
}

.coluna-texto p {
  text-transform: none;
  font-family: 'Avantt', sans-serif;
  width: 90%;
  font-size: 16px;
  line-height: 1.2;
}

.coluna-midia {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1%;
  row-gap: 12px; /* ou 8px, ajuste como preferir */
}


.coluna-midia img,
.coluna-midia video {
  margin: 0;
  display: block; /* elimina espaço em branco de elementos inline */
}


.midia {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  grid-column: span 2;
}

.midia.half {
  grid-column: span 1;
}

video.midia {
  height: auto;
}



.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1%;
  gap: 1%;
  position: relative;
  overflow: hidden;
}

.about-intro {
  font-size: 28px;
  font-weight: 300;
  width: 90%;
  text-transform: none;
  grid-column: span 2;
  line-height: 1.2;
}

.about-experience {
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
}

#isa {
  position: fixed;
  top: 100px;
  left: 60vw;
  width: 15vw;
  height: auto;
  z-index: 999;
  cursor: grab;
  border-radius: 10px;
  transition: transform 0.2s ease;
}


#isa:hover {
  transform: scale(1.05);
}






@media screen and (max-width: 1024px) {
  .projeto {
    grid-template-columns: 100%;
  }

  .coluna-texto {
    margin-bottom: 2em;
  }

  .coluna-midia {
    grid-template-columns: 100%;
    row-gap:6px;
  }

  .midia,
  .midia.half {
    grid-column: span 1;
  }

  #logo-mini svg {
  width: 95%;
}




@media screen and (max-width: 1024px) {
    header, footer {
        font-size: 12px;
        padding: 1% 2% 1% 1%;
    }
        .grid-sizer {
        width: 50%;
    }

    .item {
        width: 48.5%;
    }

    .item.highlight {
        width: 98%;
    }

      .about-grid {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 1%;
  }

  .about-intro,
  .about-experience {
    grid-column: unset;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    cursor: auto; /* volta a mostrar o cursor padrão (ou nenhum no mobile) */
  }

  .cursor {
    display: none !important; /* esconde completamente o cursor customizado */
  }
}






