/* ─────────────────────────────────────────────────────────────
   @IMPORT  —  deve ficar no topo do arquivo
───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,700');


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /* gradient */
  --bg-gradient-onyx: linear-gradient(to bottom right,
      hsl(240, 1%, 25%) 3%,
      hsl(0, 0%, 19%) 97%);
  --bg-gradient-jet: linear-gradient(to bottom right,
      hsla(240, 1%, 18%, 0.251) 0%,
      hsla(240, 2%, 11%, 0) 100%), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(to bottom right,
      hsl(144.3, 100%, 71%) 0%,
      hsla(36, 100%, 69%, 0) 50%);
  --bg-gradient-yellow-2: linear-gradient(135deg,
      hsla(144.3, 100%, 71%, 0.251) 0%,
      hsla(35, 100%, 68%, 0) 59.86%), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(to bottom right,
      hsl(0, 0%, 25%) 0%,
      hsla(0, 0%, 25%, 0) 50%);
  --text-gradient-yellow: linear-gradient(to right,
      hsl(144.3, 100%, 72%),
      hsl(144.3, 100%, 68%));

  /* solid — cores do tema */
  --bs-dark: #0a0a0a;
  --bs-dark-light: #1a1a1a;
  --bs-secondary: #45be6c;
  --bs-secondary-light: #57f287;
  --bs-info: #b5b5b5;
  --bs-gold: #dfc947;
  --bs-gold-light: #fee75c;
  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --bsky-bg: #151D28;
  --pg: hsl(145, 38%, 32%);
  --pg-h: hsl(144.3, 37.1%, 38%);
  --pg-hv: hsl(144.3, 37.1%, 38%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(144.3, 100%, 72%);
  --vegas-gold: hsl(144.3, 54%, 58%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(0, 43%, 51%);
  --green-v: hsl(144.3, 37.1%, 38%);

  /* brand colors (skills/social icons) */
  --text-color: #ececec;
  --inverse-text-color: #252631;
  --background-color: #1f2029;
  --inverse-background-color: #fff;
  --icon-background-color: #252631;
  --brand-color-html5: #e34f26;
  --brand-color-css3: #2196f3;
  --brand-color-nodejs: #6cc24a;
  --brand-color-npm: #cb3837;
  --brand-color-sass: #c69;
  --brand-color-angular: #b52e31;
  --brand-color-ionic: #498AFF;
  --brand-color-tailwind: #38bdf8;
  --brand-color-js: #f7df1e;
  --brand-color-windows: #0077d5;
  --brand-color-git: #F1502F;
  --brand-color-mongodb: #00ed64;
  --brand-color-linux: #666;
  --brand-color-vsc: #007acc;

  /* typography */
  --ff-poppins: 'Poppins', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /* shadow */
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /* transition */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;

}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img,
ion-icon,
a,
button,
time,
span {
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input,
textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus {
  outline-color: var(--orange-yellow-crayola);
}

html {
  font-family: var(--ff-poppins);
}

body {
  background: var(--smoky-black);
}
    .tn-post-btn {
      display: block;
      width: 100%;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      text-align: left;
      color: inherit;
      border-radius: inherit;
    }
    .tn-post-btn:focus-visible {
      outline: 2px solid var(--orange-yellow-crayola);
      outline-offset: 3px;
      border-radius: 14px;
    }

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 15px 0;
}

.icon-box {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.projects {
  padding-top: 40px;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon {
  --ionicon-stroke-width: 35px;
}

article {
  display: none;
}

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 {
  font-size: var(--fs-1);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 30px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.article-title-2::after {
  width: 50px;
  height: 1px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--orange-yellow-crayola);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: 20px;
}

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}


/*-----------------------------------*\
  #UTILITIES
\*-----------------------------------*/

/* Grain overlay */
.grain {
  z-index: 99;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: normal;
  background-image: url("../../img/rav-grain-slow.gif");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  display: block;
  position: fixed;
  inset: 0;
}

.verde {
  color: hsl(144.3, 61.8%, 56.9%);
}

.icon-yellow {
  color: var(--orange-yellow-crayola);
}

.vh:hover {
  color: #8ad4ff;
}

.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.tags-2 {
  padding: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tag {
  background: var(--onyx);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

/* Heart canvas */
.heart {
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  display: block;
}

/* Linktree SVG */
.linktree path {
  fill: var(--light-gray-70);
}

.linktree path:hover {
  fill: var(--vegas-gold);
}

.info_more-btn .linktree path {
  display: none;
}

/* Error states */
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.error-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.error-action,
.error-id {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5rem;
}

.error-message {
  color: #ff4444;
  text-align: center;
  padding: 20px;
  grid-column: 1 / -1;
}


/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
}


/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: var(--transition-2);
}

.sidebar.active {
  max-height: 405px;
}

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  background: var(--bg-gradient-onyx);
  border-radius: 20px;
}

.info-content .name {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

.info-content .title {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-8);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: var(--orange-yellow-crayola);
  background: var(--border-gradient-onyx);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus {
  background: var(--bg-gradient-yellow-1);
}

.info_more-btn:hover::before,
.info_more-btn:focus::before {
  background: var(--bg-gradient-yellow-2);
}

.info_more-btn span {
  display: none;
}

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.contact-info address {
  font-style: normal;
}

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 25px;
}

.social-item .social-link:hover {
  color: var(--vegas-gold);
}


/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--jet);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 5;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.navbar-link {
  color: var(--light-gray);
  padding: 20px 7px;
  transition: color var(--transition-1);
}

.navbar-link:hover,
.navbar-link:focus {
  color: var(--light-gray-70);
}

.navbar-link.active {
  color: var(--orange-yellow-crayola);
}

/* Glider (indicador de aba ativa) */
.glider-wrapper {
  position: relative;
  overflow: hidden;
}

.glider {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--bs-secondary-light), transparent);
  transition: transform 0.3s ease, width 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

/* Ícones da navbar */
.iconesba {
  width: 80px;
  height: 80px;
  background: #1515159e;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.iconesba2 {
  width: 60px;
  height: 60px;
  background: #1F3631;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.iconesba3 {
  width: 56px;
  height: 56px;
  background: linear-gradient(to bottom right, #404040, #1b1b1b);
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconesba3 i {
  height: auto;
  max-width: 100%;
  font-size: 25px;
}

.imagem01 {
  width: 25px;
}

.iconesba2::before {
  position: absolute;
  content: "";
  transform: translate(-50%, -50%);
  top: 50%;
  left: 45%;
  width: 63px;
  height: 63px;
  background:
    conic-gradient(from 0deg at 50.12% 50%, transparent 0deg, #00FFAE 60deg, transparent 60.1deg),
    conic-gradient(from 0deg at 50.12% 50%, transparent 190deg, #00FFAE 250deg, transparent 250.1deg),
    transparent;
  animation: complete-line 2s linear infinite;
}

.b1:hover .iconesba2::before {
  animation: complete-line 0.4s linear infinite !important;
}

@keyframes complete-line {
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title {
  margin-bottom: 15px;
}

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.6;
  position: relative;
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  background: var(--border-gradient-onyx);
  margin-bottom: 40px;
}

.about-text p {
  margin-bottom: 15px;
}


/* ── Skills ── */

.skills {
  margin-bottom: 35px;
}

.skills-title {
  margin-bottom: 20px;
}

.skills-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.skills-item {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
}

.skills-item:not(:last-child) {
  margin-bottom: 15px;
}

.skills-icon-box {
  margin-bottom: 10px;
}

.skills-icon-box img {
  margin: auto;
}

.skills-content-box {
  text-align: center;
}

.skills-item-title {
  margin-bottom: 7px;
}

.skills-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-3);
  line-height: 1.6;
}

.skill .title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.skill .title-wrapper data {
  color: var(--light-gray);
  font-size: var(--fs-7);
  font-weight: var(--fw-300);
}

.skill-progress-bg {
  background: var(--jet);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}

.skill-progress-fill {
  background: var(--text-gradient-yellow);
  height: 100%;
  border-radius: inherit;
}


/* ── Testimonials ── */

.testimonials {
  margin-bottom: 30px;
}

.testimonials-title {
  margin-bottom: 20px;
}

.testimonials-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px 15px;
  padding-bottom: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.testimonials-item {
  min-width: 100%;
  scroll-snap-align: center;
}

.testimonials-avatar-box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15px, -25px);
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
}

.testimonials-item-title {
  margin-bottom: 7px;
}

.testimonials-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ── Modal ── */

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}



.modal-container::-webkit-scrollbar {
  display: none;
}

.modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsl(0, 0%, 5%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 0.8;
  visibility: visible;
  pointer-events: all;
}

.testimonials-modal {
  background: var(--eerie-black-2);
  position: relative;
  padding: 15px;
  margin: 15px 12px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  transform: scale(1.2);
  opacity: 0;
  transition: var(--transition-1);
  z-index: 2;
}

.modal-container.active .testimonials-modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--onyx);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-2);
  font-size: 18px;
  opacity: 0.7;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
  opacity: 1;
}

.modal-close-btn ion-icon {
  --ionicon-stroke-width: 50px;
}

.modal-avatar-box {
  background: var(--bg-gradient-onyx);
  width: max-content;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-2);
}

.modal-img-wrapper>img {
  display: none;
}

.modal-title {
  margin-bottom: 4px;
}

.modal-content time {
  font-size: var(--fs-6);
  color: var(--light-gray-70);
  font-weight: var(--fw-300);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}



/* ── Social / Tech icons ── */

.social {
  display: flex;
  width: 100%;
  flex-flow: column nowrap;
  justify-content: center;
  overflow: hidden;
}

.social h1,
.social h2 {
  width: 100%;
  justify-content: center;
  font-weight: 300;
  color: var(--text-color);
  text-align: center;
}

.social h1 {
  font-size: 4rem;
  margin: 5rem 0 1rem;
}

.social h2 {
  font-size: 2.25rem;
  margin: 1.5rem 0 5rem;
}

.social .social__media {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  padding: 0;
}

.social .social__media li {
  display: inline-flex;
  margin: 1rem 2rem;
}

.social .social__media li:nth-child(1) a:hover i {
  color: var(--brand-color-html5);
}

.social .social__media li:nth-child(2) a:hover i {
  color: var(--brand-color-css3);
}

.social .social__media li:nth-child(3) a:hover i {
  color: var(--brand-color-nodejs);
}

.social .social__media li:nth-child(4) a:hover i {
  color: var(--brand-color-npm);
}

.social .social__media li:nth-child(5) a:hover i {
  color: var(--brand-color-tailwind);
}

.social .social__media li:nth-child(6) a:hover i {
  color: var(--brand-color-js);
}

.social .social__media li:nth-child(7) a:hover i {
  color: var(--brand-color-windows);
}

.social .social__media li:nth-child(8) a:hover i {
  color: var(--brand-color-git);
}

.social .social__media li:nth-child(9) a:hover i {
  color: var(--brand-color-mongodb);
}

.social .social__media li:nth-child(10) a:hover i {
  color: var(--brand-color-linux);
}

.social .social__media li:nth-child(11) a:hover i {
  color: var(--brand-color-vsc);
}

.social .social__media li:nth-child(12) a:hover i {
  color: var(--brand-color-ionic);
}

.social .social__media li a {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.5s ease all;
}

.social .social__media li a i {
  display: flex;
  font-size: 2.5rem;
  color: var(--text-color);
  will-change: transform;
  transform-style: preserve-3d;
  transition: 0.5s ease all;
}

.social .social__media li a::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transform: scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  will-change: transform;
  transform-style: preserve-3d;
  transition: 0.25s ease-out;
}

.social .social__media li a:hover::after {
  transform: scale3d(0, 0, 0);
  transition: 0.25s ease-in;
}

.social .social__media li a:hover i {
  color: var(--inverse-background-color);
  transform: scale3d(1.5, 1.5, 1);
}


/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.timeline {
  margin-bottom: 30px;
}

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-child) {
  margin-bottom: 20px;
}

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--pg);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


/*-----------------------------------*\
  #PORTFOLIO  (filtro + cards)
\*-----------------------------------*/

.filter-list {
  display: none;
}

.filter-select-box {
  position: relative;
  margin-bottom: 25px;
}

.filter-select {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.filter-select.active .select-icon {
  transform: rotate(0.5turn);
}

.select-list {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in-out;
}

.filter-select.active+.select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.select-item button:hover {
  --eerie-black-2: hsl(240, 2%, 20%);
}

/* ── Animations ── */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

/* ── Project list (portfolio + TabNews) ── */

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 10px;
  animation: fadeIn 0.4s ease;
}

/* ── Project item ──
   Defaults: hidden; shown via .active (portfolio filter + TabNews always renders .active).
   Visual style: white card (TabNews). Portfolio uses project-item > a for dark style.
── */

.project-item {
  display: none;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.project-item>a {
  width: 100%;
}

/* ── Project image ── */

.project-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.project-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-img::before,
.project-item>a:hover .project-img::before {
  opacity: 1;
}

.project-img:hover::before {
  background: hsla(0, 0%, 0%, 0.5);
}

/* ── Icon box sobre a imagem ── */

.project-item-icon-box {
  --scale: 0.8;
  color: var(--orange-yellow-crayola);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  padding: 16px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-item:hover .project-item-icon-box,
.project-item>a:hover .project-item-icon-box,
.project-img:hover .project-item-icon-box {
  --scale: 1;
  opacity: 1;
}

.project-item-icon-box ion-icon {
  --ionicon-stroke-width: 50px;
  font-size: 34px;
}

/* ── Project title / category / meta ── */

.project-title,
.project-category {
  margin-left: 10px;
}

.project-title {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 12px 8px;
  color: #222;
  margin: 0;
  line-height: 1.3;
  text-transform: capitalize;
}

.project-category {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 12px 12px;
  font-size: 0.85rem;
  color: #555;
  align-items: center;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tabcoins {
  color: #0969da;
  font-weight: 500;
}

.tabcoin-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #0969da;
  border-radius: 4px;
}

.comments {
  color: #555;
}

.comments i {
  color: #666;
}

.date {
  color: #666;
}

.date i {
  color: #888;
}


/*-----------------------------------*\
  #PROJETOS
\*-----------------------------------*/

.projetos-posts {
  margin-bottom: 10px;
}

.projetos-posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 40px;
}

/* Sem resultados de pesquisa */
.no-results {
  color: var(--bs-info);
  text-align: center;
  margin-top: 20px;
  font-size: 1.25rem;
  grid-template-columns: none;
}

.projetos-post-item {
  animation: scaleUp 0.25s ease forwards;
}

.projetos-post-item>a {
  position: relative;
  background: var(--border-gradient-onyx);
  height: 100%;
  box-shadow: var(--shadow-4);
  border-radius: 16px;
  z-index: 1;
}

.projetos-post-item>a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--eerie-black-1);
  z-index: -1;
}

.projetos-banner-box {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.projetos-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.projetos-post-item>a:hover .projetos-banner-box img {
  transform: scale(1.1);
}

.projetos-content {
  padding: 15px;
}

.projetos-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.projetos-meta :is(.projetos-category, time) {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.projetos-meta .dot {
  background: var(--light-gray-70);
  width: 4px;
  height: 4px;
  border-radius: 4px;
}

.projetos-item-title {
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition-1);
}

.projetos-post-item>a:hover .projetos-item-title {
  color: var(--orange-yellow-crayola);
}

.projetos-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/* Barra de pesquisa */
.search-container-fixed {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--background-secondary);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 3px rgba(69, 190, 108, 0.2);
}

.search-icon {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-info);
  pointer-events: none;
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure {
  height: 100%;
}

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form {
  margin-bottom: 10px;
}

.form-title {
  margin-bottom: 20px;
}

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder {
  font-weight: var(--fw-500);
}

.form-input:focus {
  border-color: var(--orange-yellow-crayola);
}

.form-input:focus:invalid {
  border-color: var(--bittersweet-shimmer);
}

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer {
  display: none;
}

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon {
  font-size: 16px;
}

.form-btn:hover {
  background: var(--bg-gradient-yellow-1);
}

.form-btn:hover::before {
  background: var(--bg-gradient-yellow-2);
}

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover {
  background: var(--border-gradient-onyx);
}

.form-btn:disabled:hover::before {
  background: var(--bg-gradient-jet);
}


/*-----------------------------------*\
  #PAGINAÇÃO
\*-----------------------------------*/
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

#pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination-btn {
  background-color: var(--pg);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--pg-h);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pagination-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.pagination-btn:disabled {
  background-color: hsl(240, 1%, 25%);
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination-btn i {
  font-size: 0.8rem;
}

.pg {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-8);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

/*═══════════════════════════════════════════════════════════
  #BLUESKY — Feed de posts + Perfil
═══════════════════════════════════════════════════════════*/

/* ── Tab nav ── */
.bsky-tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.bsky-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--jet);
  background: transparent;
  color: var(--light-gray);
  font-size: var(--fs-7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bsky-tab-btn.active,
.bsky-tab-btn:hover {
  background: var(--pg);
  color: #fff;
  border-color: transparent;
}

/* ── Lista de posts ── */
#bsky-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: fadeIn 0.4s ease;
}

/* ── Card ── */
.bsky-card {
  background: var(--bsky-bg);
  border: 1px solid hsla(210, 100%, 75%, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  padding: 16px 16px 8px;
}

.bsky-card:hover {
  border-color: hsla(210, 100%, 70%, 0.35);
  box-shadow: 0 6px 24px hsla(210, 100%, 50%, 0.12);
  transform: translateY(-2px);
}

/* Link wrapper que cobre header + texto */
.bsky-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Header */
.bsky-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bsky-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid hsla(210, 100%, 75%, 0.2);
  background: var(--onyx);
}

.bsky-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray-70);
  font-size: 18px;
}

.bsky-card-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.bsky-display-name {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--white-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bsky-handle {
  font-size: var(--fs-8);
  color: hsl(210, 60%, 65%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bsky-date {
  font-size: var(--fs-8);
  color: var(--light-gray-70);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Texto do post */
.bsky-card-text {
  font-size: var(--fs-7);
  color: var(--light-gray);
  line-height: 1.7;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.bsky-link,
.bsky-mention {
  color: hsl(210, 100%, 72%);
  text-decoration: none;
  display: inline;
}

.bsky-link:hover,
.bsky-mention:hover,
.bsky-hashtag:hover {
  text-decoration: underline;
}

.bsky-hashtag {
  color: hsl(210, 100%, 75%);
  display: inline;
  margin-right: 2px;
}

/* Imagens */
.bsky-images {
  margin: 10px 16px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  gap: 2px;
}

.bsky-img-single {
  grid-template-columns: 1fr;
  max-height: 340px;
}

.bsky-img-pair {
  grid-template-columns: 1fr 1fr;
  max-height: 220px;
}

.bsky-img-grid {
  grid-template-columns: 1fr 1fr;
  max-height: 280px;
}

.bsky-images a {
  display: block;
  overflow: hidden;
}

.bsky-img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.bsky-images a:hover .bsky-img-thumb {
  transform: scale(1.04);
}

/* Link externo */
.bsky-external {
  display: flex;
  gap: 12px;
  margin: 8px 16px 12px;
  padding: 10px 12px;
  background: var(--bsky-bg);
  border: 1px solid hsla(210, 100%, 75%, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
  overflow: hidden;
}

.bsky-external:hover {
  border-color: hsla(210, 100%, 70%, 0.35);
}

.bsky-ext-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--eerie-black-1);
}

.bsky-ext-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.bsky-ext-domain {
  font-size: var(--fs-8);
  color: hsl(210, 60%, 65%);
  text-transform: lowercase;
}

.bsky-ext-title {
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  color: var(--white-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bsky-ext-desc {
  font-size: var(--fs-8);
  color: var(--light-gray-70);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Quote */
.bsky-quote {
  display: block;
  margin: 8px 16px 12px;
  padding: 10px 12px;
  border-left: 3px solid hsl(210, 100%, 65%);
  background: var(--onyx);
  border-radius: 0 10px 10px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.bsky-quote:hover {
  background: var(--jet);
}

.bsky-quote-author {
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  color: hsl(210, 100%, 72%);
  display: block;
  margin-bottom: 4px;
}

.bsky-quote-text {
  font-size: var(--fs-8);
  color: var(--light-gray-70);
  line-height: 1.5;
}

/* Footer (métricas) */
.bsky-card-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px 14px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.bsky-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-8);
  color: var(--light-gray-70);
  text-decoration: none;
  transition: color 0.2s;
}

.bsky-stat i {
  font-size: 13px;
}

.bsky-stat-reply:hover {
  color: hsl(210, 100%, 72%);
}

.bsky-stat-repost:hover {
  color: hsl(145, 70%, 60%);
}

.bsky-stat-like:hover {
  color: hsl(350, 80%, 65%);
}

.bsky-open {
  margin-left: auto;
  color: var(--light-gray-70);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.bsky-open:hover {
  opacity: 1;
  color: hsl(210, 100%, 72%);
}

/* Skeleton loading */
@keyframes bskySkelShimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.skel-box,
.skel-line {
  background: linear-gradient(90deg, var(--onyx) 25%, var(--jet) 50%, var(--onyx) 75%);
  background-size: 800px 100%;
  animation: bskySkelShimmer 1.4s infinite linear;
  border-radius: 6px;
}

.bsky-skeleton .bsky-card-avatar.skel-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.skel-name {
  display: block;
  width: 120px;
  height: 12px;
}

.skel-handle {
  display: block;
  width: 90px;
  height: 10px;
  margin-top: 4px;
}

.skel-text {
  display: block;
  height: 12px;
  margin: 8px 16px 0;
}

.skel-text.short {
  width: 55%;
}

.bsky-skeleton .bsky-card-link {
  pointer-events: none;
}

/* Estado vazio / erro */
.bsky-empty,
.bsky-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--light-gray-70);
}

.bsky-empty i,
.bsky-error i {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  color: hsl(210, 60%, 60%);
}

.bsky-error i {
  color: hsl(0, 70%, 60%);
}

.bsky-error-detail {
  font-size: var(--fs-8);
  margin: 6px 0 16px;
  opacity: 0.6;
}

/* ── Perfil (.bsky-pb-*) ── */

.bsky-pb-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bsky-bg);
  border: 1px solid hsla(210, 100%, 75%, 0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bsky-pb-card:hover {
  border-color: hsla(210, 100%, 70%, 0.28);
  box-shadow: 0 6px 24px hsla(210, 100%, 50%, 0.1);
}

/* Banner */
.bsky-pb-banner {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.bsky-pb-banner--empty {
  background: linear-gradient(135deg,
      hsl(210, 80%, 28%) 0%,
      hsl(210, 60%, 16%) 100%);
}

.bsky-pb-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, hsla(0, 0%, 0%, 0.4) 100%);
}

/* Avatar flutuando sobre o banner */
.bsky-pb-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}

.bsky-pb-avatar-wrap {
  line-height: 0;
}

.bsky-pb-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--eerie-black-2);
  object-fit: cover;
  background: var(--onyx);
  display: block;
}

.bsky-pb-avatar--placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--eerie-black-2);
  background: var(--onyx);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray-70);
  font-size: 28px;
}

/* Botão "Ver no Bluesky" */
.bsky-pb-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--bs-secondary);
  color: var(--bs-secondary);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-decoration: none;
  letter-spacing: 0.01em;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  margin-bottom: 4px;
}

.bsky-pb-cta:hover {
  background: var(--bs-secondary);
  color: #fff;
}

/* Body */
.bsky-pb-body {
  padding: 10px 16px 18px;
}

/* Identidade */
.bsky-pb-identity {
  margin-bottom: 8px;
}

.bsky-pb-display-name {
  display: block;
  font-size: 18px;
  font-weight: var(--fw-600);
  color: var(--white-2);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bsky-pb-handle {
  font-size: var(--fs-7);
  color: var(--light-gray-70);
  margin-top: 2px;
  display: block;
}

/* Bio */
.bsky-pb-bio {
  font-size: var(--fs-7);
  line-height: 1.7;
  color: var(--light-gray);
  margin: 0 0 10px;
  white-space: pre-line;
}

/* Meta row (data, listas, starter packs) */
.bsky-pb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 12px;
}

.bsky-pb-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-8);
  color: var(--light-gray-70);
}

.bsky-pb-meta-item i {
  font-size: 11px;
  color: var(--bs-secondary);
  opacity: 0.85;
}

/* Links externos da bio */
.bsky-pb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.bsky-pb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: var(--fw-500);
  color: var(--bs-secondary-light);
  text-decoration: none;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid hsla(145, 61%, 56%, 0.28);
  background: hsla(145, 61%, 56%, 0.07);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bsky-pb-link i {
  font-size: 10px;
  opacity: 0.8;
}

.bsky-pb-link:hover {
  background: hsla(145, 61%, 56%, 0.2);
  border-color: var(--bs-secondary);
  color: #fff;
}

/* Stats (seguidores / seguindo / posts) */
.bsky-pb-stats {
  display: flex;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
  flex-wrap: wrap;
}

.bsky-pb-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
}

.bsky-pb-stat strong {
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  color: var(--white-2);
  line-height: 1;
}

.bsky-pb-stat span {
  font-size: var(--fs-8);
  color: var(--light-gray-70);
}

a.bsky-pb-stat:hover strong {
  color: var(--bs-secondary-light);
}

a.bsky-pb-stat:hover span {
  color: var(--bs-secondary);
}

.bsky-pb-stat--plain {
  cursor: default;
}

/* Skeleton do perfil */
.bsky-pb-skeleton .bsky-pb-banner {
  height: 130px;
}

.bsky-pb-skeleton .bsky-pb-avatar {
  background: linear-gradient(90deg, var(--onyx) 25%, var(--jet) 50%, var(--onyx) 75%);
  background-size: 800px 100%;
  animation: bskySkelShimmer 1.4s infinite linear;
}

/* ── Gato animado  ── */
.lottie-animation {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 4px;
  margin-top: auto;
  width: 100%;
  opacity: 0.88;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.lottie-animation:hover {
  opacity: 1;
}

@media (max-width: 1249px) {
  .lottie-animation {
    display: none !important;
  }
}

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/* ── max-width: 800px (mobile) ── */
@media only screen and (max-width: 800px) {
  .navbar {
    font: icon;
  }



  #avatar-img {
    border-radius: 30px;
  }

  .social .social__media {
    padding: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .tags-2 {
    justify-content: center;
  }

  .skills-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tags {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }

  .bsky-pb-banner {
    height: 150px;
  }
}

/* ── max-width: 1000px ── */
@media (max-width: 1000px) {
  .iconebene {
    height: 90px !important;
  }
}

/* ── min-width: 450px ── */
@media (min-width: 450px) {


  #avatar-img {
    border-radius: 30px;
  }

  .project-img,
  .projetos-banner-box {
    height: auto;
  }
}

/* ── min-width: 580px ── */
@media (min-width: 580px) {
  :root {
    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;
  }

  #avatar-img {
    border-radius: 30px;
  }

  .sidebar,
  article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active {
    max-height: 584px;
  }

  .sidebar-info {
    justify-content: center;
    gap: 25px;
  }

  .avatar-box {
    border-radius: 30px;
  }

  .avatar-box img {
    border-radius: 30px;
  }

  .info-content .name {
    margin-bottom: 15px;
  }

  .info-content .title {
    padding: 5px 18px;
  }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon {
    display: none;
  }

  .contacts-list {
    gap: 20px;
  }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  .navbar {
    border-radius: 20px 20px 0 0;
  }

  .navbar-list {
    gap: 20px;
  }

  .navbar-link {
    --fs-8: 14px;
  }

  .about .article-title {
    margin-bottom: 20px;
  }

  .skills-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .skills-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .skills-content-box {
    text-align: left;
  }

  .testimonials-title {
    margin-bottom: 25px;
  }

  .testimonials-list {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .content-card {
    padding: 30px;
    padding-top: 25px;
  }

  .testimonials-avatar-box {
    transform: translate(30px, -30px);
    border-radius: 20px;
  }

  .testimonials-avatar-box img {
    width: 80px;
  }

  .testimonials-item-title {
    margin-bottom: 10px;
    margin-left: 95px;
  }

  .testimonials-text {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  .modal-container {
    padding: 20px;
  }

  .testimonials-modal {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
  }

  .modal-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-avatar-box {
    border-radius: 18px;
    margin-bottom: 0;
  }

  .modal-avatar-box img {
    width: 65px;
  }

  .modal-img-wrapper>img {
    display: block;
    flex-grow: 1;
    width: 35px;
  }

  .timeline-list {
    margin-left: 65px;
  }

  .timeline-item:not(:last-child)::before {
    left: -40px;
  }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }

  .skills-item:not(:last-child) {
    margin-bottom: 25px;
  }

  .projetos-banner-box {
    border-radius: 16px;
  }

  .projetos-posts-list {
    gap: 30px;
  }

  .projetos-content {
    padding: 25px;
  }

  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-input {
    padding: 15px 20px;
  }

  textarea.form-input {
    margin-bottom: 30px;
  }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon {
    font-size: 18px;
  }
}

/* ── min-width: 768px ── */
@media (min-width: 768px) {

  .sidebar,
  article {
    width: 700px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 100px;
  }

  #avatar-img {
    border-radius: 30px;
  }

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .navbar-link {
    --fs-8: 15px;
  }

  .testimonials-modal {
    gap: 35px;
    max-width: 680px;
  }

  .modal-avatar-box img {
    width: 80px;
  }

  .article-title {
    padding-bottom: 20px;
  }

  .filter-select-box {
    display: none;
  }

  .filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .filter-item button {
    color: var(--light-gray);
    font-size: var(--fs-5);
    transition: var(--transition-1);
  }

  .filter-item button:hover {
    color: var(--light-gray-70);
  }

  .filter-item button.active {
    color: var(--orange-yellow-crayola);
  }

  /* Grid 2 colunas — TabNews, projetos e posts Bluesky */
  .project-list,
  .projetos-posts-list,
  #bsky-posts {
    grid-template-columns: 1fr 1fr;
  }

  .input-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .form-btn {
    width: max-content;
    margin-left: auto;
  }
}

/* ── min-width: 1024px ── */
@media (min-width: 1024px) {
  :root {
    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);
  }

  .sidebar,
  article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }

  main {
    margin-bottom: 60px;
  }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .navbar-list {
    gap: 30px;
    padding: 0 20px;
  }

  .navbar-link {
    font-weight: var(--fw-500);
  }

  .skills-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

  .testimonials-item {
    min-width: calc(50% - 15px);
  }



  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .projetos-banner-box {
    height: 230px;
  }
}

/* ── min-width: 1250px ── */
@media (min-width: 1250px) {
  .lottie-animation {
    position: sticky;
    top: 500px;
    max-height: max-content;
    margin-bottom: 0;
  }

  body::-webkit-scrollbar {
    width: 20px;
  }


  body::-webkit-scrollbar-track {
    background: var(--smoky-black);
  }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow:
      inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
      inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover {
    background: hsla(0, 0%, 100%, 0.15);
  }

  body::-webkit-scrollbar-button {
    height: 60px;
  }

  .sidebar,
  article {
    width: auto;
  }

  article {
    min-height: 100%;
  }

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info {
    flex-direction: column;
  }

  .avatar-box img {
    width: 150px;
  }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title {
    margin: auto;
  }

  .info_more-btn {
    display: none;
  }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list {
    grid-template-columns: 1fr;
  }

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .social-list {
    justify-content: center;
  }

  .timeline-text {
    max-width: 700px;
  }
}