.category,
.experience {
  grid-template-columns: repeat(2, 1fr);
}
html {
  scroll-behavior: smooth;
}
:root {
  --color-primary: #f1f1f1;
  --color-secondary: #c1ff72;
  --color-terceary: #040404;
  --color-background: #0c1020;
  --color-glow-melocoton: #ffd8b1;
  --color-glow-morados: #e2cfff;
  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: var(--color-primary);
  font-family: var(--font-primary);
  line-height: 1.8;
  background-color: var(--color-background);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.separator {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-direction: column;
  gap: 5rem;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  z-index: 9999;
  transition: 0.5s;
}
.cta__button a,
.cta__button__back a,
.modal-btn {
  background: var(--color-secondary);
  font-weight: 600;
}
.modal-content.notification-top {
  width: 92%;
  max-width: 500px;
  background: rgba(12, 16, 32, 0.9);
  border: 1px solid var(--color-secondary);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: 0.6s cubic-bezier(0.23, 1, 0.32, 1) slideDown;
}
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.modal-header h3 {
  font-size: 1rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pulse-icon {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-secondary);
  animation: 1.5s infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
.modal-content p {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.modal-btn {
  width: 100%;
  color: #000;
  border: none;
  padding: 0.6rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: 0.3s;
}
.modal-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}
.header {
  padding: 0.5rem 0;
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  background: rgba(255, 255, 255, 0.098);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.098);
  border-radius: 0.2rem;
}
.footer__nav,
.footer__social,
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 1.5rem;
  width: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem;
}
.navbar__list {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  padding: 0 0.2rem;
}
.navbar__item {
  padding: 0 0.4rem;
}
.highlighted,
.navbar__link.active {
  color: var(--color-secondary);
  font-weight: 600;
}
.navbar__link {
  position: relative;
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 0.9rem;
  font-weight: 400;
}
.navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #c1ff72;
  transition: 0.3s;
  transform: translateX(-50%);
}
.navbar__link:hover::after {
  width: 100%;
}
.cta__button a,
.cta__button__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-terceary);
  text-decoration: none;
  padding: 0.3rem 1rem;
  border-radius: 0.2rem;
  font-size: 1rem;
  transition: 0.3s;
}
.about__text h2,
.experience__container h2,
.skills__container h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.cta__button svg,
.cta__button__back svg {
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.3s;
}
.cta__button:hover svg {
  transform: translateX(4px);
}
.cta__button__back:hover svg {
  transform: translateX(-4px);
}
.close__menu,
.icon-close,
.menu__hamburguer,
.open-menu.active .icon-menu {
  display: none;
}
.open-menu svg {
  width: 2rem;
  height: 2rem;
}
.open-menu.active .icon-close {
  display: block;
}
.hero__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 73px);
  scroll-margin-top: 80px;
}
.hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.5rem 1rem;
}
.hero__info h1 {
  font-size: 3rem;
  color: #ccc;
}
.hero__info__name {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  background: rgba(193, 255, 114, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.098);
  border-radius: 0.2rem;
}
.btn__change,
.btn__dowloand {
  align-items: center;
  cursor: pointer;
}
.hero__info__name svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-secondary);
}
.badge-tech {
  color: var(--color-secondary);
  padding: 0.1rem 1rem;
  border-radius: 0.2rem;
  display: inline-block;
  border: 1px solid rgba(193, 255, 114, 0.1);
  vertical-align: middle;
  line-height: 1.2;
  font-size: 2.4rem;
  letter-spacing: 4px;
}
.hero__info__description {
  max-width: 600px;
  width: 100%;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
  color: #bbb;
}
.btn__change {
  display: inline-flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.4rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.3s;
}
.btn__change:hover {
  background: rgba(193, 255, 114, 0.15);
  border-color: var(--color-secondary);
  box-shadow: 0 0 12px rgba(193, 255, 114, 0.3);
  transform: translateY(-2px);
}
.btn__change:active {
  transform: scale(0.96);
  box-shadow: 0 0 6px rgba(193, 255, 114, 0.2);
}
.btn__change::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(193, 255, 114, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn__change:hover::before {
  opacity: 1;
}
.btn__cta {
  display: flex;
  padding: 1rem 0;
  gap: 1rem;
}
.btn__cta__contact,
.btn__dowloand {
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-heading);
}
.btn__dowloand {
  justify-content: center;
  gap: 0.6rem;
  padding: 0.4rem 1.6rem;
  background: var(--color-secondary);
  border: none;
  border-radius: 0.2rem;
}
.btn__dowloand svg {
  width: 1.7rem;
  height: 1.7rem;
  transition: 0.3s;
  animation: 1s ease-in-out infinite alternate mover;
}
@keyframes mover {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(4px);
  }
}
.btn__cta__contact {
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.5rem;
  background: var(--color-primary);
  border: none;
  color: var(--color-background);
  border-radius: 0.2rem;
}
.btn__cta__contact svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s;
}
.btn__cta__contact:hover svg {
  transform: translateX(4px);
}
.profile__wrapper {
  position: relative;
  width: 280px;
  height: 300px;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
}
.profile__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    var(--color-secondary) 0,
    transparent 70%
  );
  opacity: 0.15;
  z-index: -2;
  border-radius: 50%;
}
.profile__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-secondary);
  border-radius: 1rem 1rem 8rem;
  transform: translate(12px, 12px);
  transition:
    transform 0.4s,
    border-radius 0.4s;
  z-index: -1;
}
.profile__wrapper:hover::after {
  transform: translate(0, 0);
  border-radius: 1rem;
}
.profile__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(40%) contrast(1.1);
  transition:
    filter 0.4s,
    border-radius 0.4s,
    transform 0.4s;
}
.profile__wrapper:hover img {
  filter: grayscale(0%) contrast(1.2);
  border-radius: 1rem;
  transform: scale(1.03);
}
.hero__content__list {
  display: flex;
  padding: 0.6rem 0;
}
.hero__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
}
.hero__list__item img {
  width: 1.9rem;
  cursor: pointer;
  border: 1px solid rgba(193, 255, 114, 0.2);
  border-radius: 0.2rem;
  padding: 0.2rem;
  transition: 0.25s;
}
.hero__list__item img:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--color-secondary);
  box-shadow: 0 0 12px rgba(193, 255, 114, 0.5);
}
.hero__list__item__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.3s;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(193, 255, 114, 0.4);
  border-radius: 0.2rem;
}
.about__list__item,
.about__text h2,
.experience__container h2,
.experience__text__title h3,
.experience__text__title svg,
.skills__container h2 {
  color: var(--color-secondary);
}
.hero__list__item__link:hover {
  transform: scale(1.1);
}
.about__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.098);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
}
.about__container__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5rem;
  gap: 1rem;
}
.about__text h2 {
  text-align: left;
  font-size: 2rem;
  padding: 1rem 0;
}
.about__text p {
  max-width: 800px;
  text-align: justify;
  user-select: none;
}
.about__main__list {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 1rem 0;
}
.about__list {
  display: flex;
  justify-content: left;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.about__list__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00000040;
  border-radius: 0.2rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  cursor: default;
}
.about__list__item svg {
  width: 1.2rem;
  height: 1.2rem;
}
.about__list__item:hover {
  background: 0 0;
  color: #fff;
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.skills__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.2rem;
  padding: 1rem 4rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.095);
}
.skills__container h2 {
  text-align: left;
  font-size: 1.2rem;
  padding: 1rem 0;
}
.skills__container__list span,
.skills__item {
  font-size: 0.8rem;
}
.skills__container__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.skills__container__list i {
  font-size: 1rem;
}
.category {
  display: grid;
  gap: 0.8rem;
}
.skills__item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 1.8rem 0.2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
  border: 1px solid rgba(193, 255, 114, 0.1);
  transition: 0.3s;
}
.skills__item:hover {
  color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  border-color: 2px rgba(255, 255, 255, 0.2);
  user-select: none;
}
.skills__item--js:hover {
  background: rgba(240, 219, 79, 0.098);
  border: 1px solid rgba(240, 219, 79, 0.98);
}
.skills__item--html:hover {
  background: rgba(228, 77, 38, 0.15);
  border: 1px solid rgba(228, 77, 38, 0.98);
}
.skills__item--css:hover {
  background: rgba(61, 143, 198, 0.15);
  border: 1px solid rgba(61, 143, 198, 0.98);
}
.skills__item--ts:hover {
  background: rgba(0, 122, 204, 0.15);
  border: 1px solid rgba(0, 122, 204, 0.98);
}
.skills__item--react:hover {
  background: rgba(97, 218, 251, 0.12);
  border: 1px solid rgba(97, 218, 251, 0.98);
}
.skills__item--nodejs:hover {
  background: rgba(104, 160, 99, 0.15);
  border: 1px solid rgba(104, 160, 99, 0.98);
}
.skills__item--git:hover {
  background: rgba(243, 79, 41, 0.15);
  border: 1px solid rgba(243, 79, 41, 0.98);
}
.skills__item--github:hover {
  background: rgba(36, 41, 46, 0.12);
  border: 1px solid rgba(36, 41, 46, 0.98);
}
.skills__item--figma:hover {
  background: rgba(242, 78, 30, 0.12);
  border: 1px solid rgba(242, 78, 30, 0.98);
}
.skills__item--mysql:hover {
  background: rgba(0, 117, 143, 0.15);
  border: 1px solid rgba(0, 117, 143, 0.98);
}
.skills__item--tailwind:hover {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.98);
}
.skills__item--pnpm:hover {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.98);
}
.skills__item--vite:hover {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.98);
}
.skills__item--canva:hover {
  background: rgba(0, 196, 204, 0.12);
  border: 1px solid rgba(0, 196, 204, 0.98);
}
.skills__item--materialui:hover {
  background: rgba(0, 127, 255, 0.12);
  border: 1px solid rgba(0, 127, 255, 0.98);
}
.experience__container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
}
.experience__container h2 {
  text-align: center;
  font-size: 2rem;
  padding: 1rem 0;
}
.experience {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
.experience__text {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.experience__text::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  filter: blur(80px);
  opacity: 0.2;
  transition: 0.4s;
}
.experience__text:hover {
  transform: translateY(-10px);
  border-color: var(--color-secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.3);
}
.experience__text:hover::before {
  opacity: 0.5;
}
.experience__text__title {
  margin-bottom: 1.5rem;
}
.experience__text__title svg {
  width: 1.5rem;
  height: 1.5rem;
}
.experience__text__title h3 {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.experience__text__title span {
  display: inline-block;
  font-size: 0.8rem;
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.05);
}
.experience__text__description {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.experience__text__description p {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-align: left;
}
.experience__text__description svg {
  color: var(--color-secondary);
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.experience__text__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-top: auto;
}
.experience__text__list li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.project__badge,
.project__container h2 {
  color: var(--color-secondary);
  text-transform: uppercase;
}
.experience__text__list li:hover {
  border-color: var(--color-secondary);
  background: rgba(193, 255, 114, 0.1);
}
.project__container {
  display: flex;
  flex-direction: column;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.098);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
}
.project__container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  padding: 1rem 0;
}
.project__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  justify-content: start;
}
.project__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.095);
  grid-column: span 3;
}
.project__link,
.project__link a {
  align-items: center;
  display: flex;
}
.project__list > .project__item:first-child,
.project__list > .project__item:nth-child(5) {
  grid-column: span 4;
}
.project__list > .project__item:nth-child(2),
.project__list > .project__item:nth-child(4) {
  grid-column: span 5;
}
.project__item h3 {
  font-size: 1rem;
}
.project__item p {
  font-size: 0.8rem;
  max-width: 350px;
}
.project__item--disabled {
  position: relative;
  cursor: not-allowed;
}
.project__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-background);
  border: 1px solid var(--color-secondary);
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0.2rem;
  z-index: 10;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(193, 255, 114, 0.3);
}
.project__item--disabled .img__container img {
  filter: grayscale(1) brightness(0.5);
  opacity: 0.6;
}
.project__item--disabled .img__container img:hover {
  transform: scale(1);
  opacity: 0.6;
}
.link-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.project__item--disabled {
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
.img__container {
  width: 100%;
  height: 150px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.img__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0.2rem;
  opacity: 0.8;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.project__link img,
.project__link svg {
  width: 1.2rem;
  height: 1.2rem;
}
.img__container img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.project__link {
  justify-content: center;
  gap: 1rem;
  list-style: none;
}
.project__link a {
  justify-content: center;
}
.project__link svg {
  color: #fff;
}
.contact__item a:hover,
.contact__item span,
.contact__title {
  color: var(--color-secondary);
}
.project__tech {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.098);
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
}
.project-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.2rem;
}
.contact {
  width: 92%;
  max-width: 900px;
  margin: 4rem auto 6rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.contact__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.contact__description {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}
.contact__content {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact__item span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact__item span svg {
  width: 1rem;
  height: 1rem;
}
.contact__item a,
.contact__item p {
  text-decoration: none;
  color: #eee;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s;
}
.contact__form {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact__field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #777;
  padding-left: 0.2rem;
}
.contact__field input,
.contact__field textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: 0.3s;
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: 0;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(193, 255, 114, 0.1);
}
.contact__button {
  align-self: flex-start;
  padding: 0.8rem 2.5rem;
  background: var(--color-secondary);
  color: #000;
  border: none;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 0.5rem;
}
.contact__button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(193, 255, 114, 0.4);
}
.footer {
  background: rgba(255, 255, 255, 0.098);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin-top: 2rem;
  color: #fff;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 500px;
}
.footer__logo img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}
.footer__description {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.4;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #cbd5f5;
  transition: color 0.3s;
}
.footer__link:hover {
  color: #38bdf8;
}
.footer__social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__social-item {
  display: flex;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.footer__social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer__social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(56, 189, 248, 0.15);
}
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #1e293b;
  text-align: center;
}
.footer__copy {
  font-size: 0.8rem;
  color: #94a3b8;
}
.pets-main {
  position: relative;
  padding-bottom: 5rem;
}
.pets__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin: 3rem 0;
  letter-spacing: -1px;
}
.pets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.pets__card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1rem;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}
.pets__card:hover {
  transform: translateY(-12px);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.pets__img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1rem 1rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pets__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.pets__card:hover .pets__img-wrapper img {
  transform: scale(1.15) rotate(2deg);
}
.pets__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-secondary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.pets__content {
  padding-top: 1.5rem;
  text-align: center;
}
.pets__content h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.pets__content p {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .header__container {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .logo img {
    height: 1.2rem;
  }
  .navbar__list {
    gap: 0.2rem;
  }
  .navbar__item {
    padding: 0 0.3rem;
  }
  .navbar__link {
    font-size: 0.8rem;
  }
  .cta__button a,
  .cta__button__back a {
    padding: 0.2rem 0.8rem;
    font-size: 0.9rem;
  }
  .hero__container {
    min-height: 60vh;
    flex-direction: row-reverse;
    gap: 1rem;
  }
  .hero__info h1 {
    font-size: 1.2rem;
  }
  .hero__info__name {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .badge-tech {
    font-size: 1.8rem;
  }
  .hero__info__name svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-secondary);
  }
  .hero__info__description {
    max-width: 320px;
    width: 100%;
    font-size: 0.9rem;
  }
  .btn__dowloand {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }
  .btn__dowloand svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .btn__cta__contact {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  .btn__cta__contact svg {
    width: 1rem;
    height: 1rem;
  }
  .profile__wrapper {
    width: 250px;
    height: 280px;
  }
  .about__container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .about__container__text {
    text-align: center;
    padding: 2rem;
  }
  .about__container__text h2 {
    text-align: center;
  }
  .about__container__text p {
    padding: 0 1rem;
  }
  .skills__container {
    max-width: 600px;
    width: 100%;
  }
  .skills__item {
    padding: 0.5rem 3rem;
  }
  .skills__container__list i {
    font-size: 1.2rem;
  }
  .skills__container__list span {
    font-size: 1rem;
  }
  .experience {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .project__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .project__list > .project__item,
  .project__list > .project__item:first-child,
  .project__list > .project__item:nth-child(2),
  .project__list > .project__item:nth-child(4),
  .project__list > .project__item:nth-child(5) {
    grid-column: span 1;
  }
  .pets__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .header__container {
    padding: 0.5rem 1rem;
  }
  .logo img {
    height: 1.2rem;
  }
  .navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(12, 16, 32, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 3rem 0;
    border-bottom: 2px solid var(--color-secondary);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: -1;
  }
  .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .navbar__link {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
  }
  .navbar__link:hover {
    color: var(--color-secondary);
  }
  .cta__button {
    margin-top: 1rem;
  }
  .close__menu,
  .menu__hamburguer {
    display: block;
  }
  .menu__hamburguer button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: 0 0;
    border: none;
    cursor: pointer;
    color: #fff;
  }
  .btn__change,
  .btn__cta__contact,
  .hero__info__description {
    display: none;
  }
  .hero__container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }
  .hero__info {
    align-items: center;
    text-align: center;
  }
  .badge-tech,
  .hero__info h1 {
    font-size: 1.4rem;
  }
  .hero__info__name {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero__content__profile {
    margin: 1rem 0;
  }
  .profile__wrapper {
    width: 220px;
    height: 250px;
  }
  .btn__cta {
    flex-direction: column;
    gap: 0.6rem;
  }
  .skills__container {
    max-width: 400px;
    width: 100%;
  }
  .skills__item {
    padding: 0.2rem 1rem;
  }
  .skills__container__list i {
    font-size: 1rem;
  }
  .skills__container h2 {
    font-size: 1rem;
    text-align: left;
  }
  .about__container__text {
    text-align: center;
    padding: 0.3rem;
  }
  .about__text h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .about__text p {
    font-size: 0.8rem;
  }
  .about__list__item {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  .experience__container {
    padding: 2rem 0.2rem;
  }
  .experience {
    margin-top: 0.5rem;
  }
  .experience__container h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .experience__text {
    padding: 1.5rem;
  }
  .experience__text__title h3 {
    font-size: 0.7rem;
  }
  .experience__text__title svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .experience__text__description p {
    font-size: 0.8rem;
  }
  .project__container {
    padding: 2rem 1rem;
  }
  .project__container h2 {
    font-size: 1.5rem;
  }
  .project__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .project__item {
    width: 100%;
    max-width: 400px;
  }
  .contact {
    padding: 2rem 1.5rem;
  }
  .contact__content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .contact__button {
    width: 100%;
  }
  .footer__container {
    flex-direction: column;
    text-align: center;
  }
  .footer__nav,
  .footer__social {
    justify-content: center;
  }
  .footer__brand {
    margin: 0 auto;
  }
  .pets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 95%;
  }
  .pets__card {
    padding: 0.6rem;
    border-radius: 1rem;
  }
  .pets__img-wrapper {
    height: 140px;
    border-radius: 0.8rem 0.8rem 2.5rem;
  }
  .pets__content {
    padding-top: 0.8rem;
  }
  .pets__content h3 {
    font-size: 0.9rem;
  }
  .pets__content p {
    font-size: 0.7rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 365px) {
  .pets__grid {
    grid-template-columns: 1fr;
  }
}
