/* Fonts */
:root {
  --default-font: "Inter", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
  --emoji-size: 1.3em;
  --emoji-raise: 0.25em; /* small vertical nudge to align PNG with text baseline; adjust if needed */
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: radial-gradient(circle, rgb(13 0 20), rgba(0, 0, 0, 1));
  /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #9465b6; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9950ca; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  color-scheme: dark;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #c585f3; /* The default color of the main navmenu links */
  --nav-hover-color: #8f2dd1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: rgb(5 0 8);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #100516;
  --default-color: #000000;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html {
  background-color: #000000;
  height: 100%;
}
body {
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-shadow: 3px 3px 15px rgba(95 24 143 / 0.25);
}

.emoji {
  width: var(--emoji-size, 1.25em);
  height: var(--emoji-size, 1.25em);
  display: inline-block;
  vertical-align: baseline;
  object-fit: contain;
  transform: translateY(var(--emoji-raise, 0.08em));
  margin-left: 2px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.emoji-bg {
  display: inline-block;
  width: var(--emoji-size, 1.25em);
  height: var(--emoji-size, 1.25em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: baseline;
  transform: translateY(var(--emoji-raise, 0.08em));
}

.hobby-icon {
  width: 1.25em;
  height: auto;
  vertical-align: -0.1em;
  filter: drop-shadow(0 0 5px rgba(148, 101, 182, 0.5));
}

.glow-bs {
  box-shadow: 0px 0px 45px 0px rgba(148, 101, 182, 0.4);
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-bs:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 100px 0px rgba(180, 130, 220, 0.5);
}

#player {
  max-width: 650px;
  margin: 0 auto;
}

.plyr__control--overlaid {
  background-color: #9950ca;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: #9950ca;
}

.plyr--full-ui input[type="range"] {
  color: #9950ca;
}

.plyr__video-embed {
  border-radius: 15px;
  overflow: hidden;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0px 0px 45px 0px rgba(148, 101, 182, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plyr__video-embed:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 60px 0px rgba(180, 130, 220, 0.4);
}

.plyr {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.video-section-overflow {
  overflow: visible !important;
}

.hobbies-cards {
  width: 80%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hobbies-cards > div {
  flex: 0 1 calc(50% - 15px);
  max-width: 400px;
}

@media (max-width: 992px) {
  .hobbies-cards {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

  .hobbies-cards > div {
    flex: 0 1 auto;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 1600px) {
  a.hobby-badge {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 20%;
  background-color: rgba(246 59 215 / 0.5);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.hobby-card:hover .glow-bg {
  width: 140%;
  height: 140%;
  opacity: 0.4;
}

a.hobby-badge {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background-color: #fd0d85 !important; /* Tu rosa original */
  color: white !important; /* Texto blanco obligado */
  text-decoration: none !important; /* Sin subrayado de link */
  padding: 5px 12px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  z-index: 20 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  transform: translateY(-10px);
}

.hobby-card:hover a.hobby-badge {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hobby-card:hover a.hobby-badge:hover {
  background-color: #ff4da6 !important; /* Rosa más brillante */
  transform: translateY(0) scale(1.15) !important; /* Crece un poquito */
  box-shadow: 0 0 15px rgba(253, 13, 133, 0.6) !important; /* Brillo */
  cursor: pointer;
}

.hobby-card:hover a.hobby-badge:active {
  transform: translateY(0) scale(0.95) !important;
}

.card-content {
  position: relative;
  z-index: 10;
}

.tag-blue {
  background-color: rgb(219, 234, 254);
  color: #1e40af;
}
.tag-green {
  background-color: rgb(209, 250, 229);
  color: #065f46;
}
.tag-purple {
  background-color: rgb(243, 232, 255);
  color: #6b21a8;
}

.hobby-card {
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgb(255 255 255);
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
}

.hobby-card.music-active {
  background-color: rgba(255, 255, 255, 0.1) !important; /* Casi transparente */
  backdrop-filter: blur(15px) !important; /* Efecto borroso detrás */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3); /* Resplandor morado */
}

.hobby-card .card-content {
  /* Estas propiedades aseguran que el regreso sea suave */
  transition: all 0.6s ease;
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  /* Mantener posición */
  position: relative;
  z-index: 10;
}

.hobby-card.music-active .card-content {
  opacity: 0.3;
  filter: blur(8px);
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.6s ease;
}

/*¡ESCUCHAR!"*/
a.hobby-badge {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: rgba(106, 13, 173, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 6px 16px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  z-index: 20 !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  transform: translateY(-10px);
}

.hobby-card:hover a.hobby-badge {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hobby-card:hover a.hobby-badge:hover {
  background: rgba(153, 80, 202, 0.8) !important;
  box-shadow: 0 0 25px rgba(153, 80, 202, 0.4) !important;
  transform: scale(1.05) translateY(0) !important;
  cursor: pointer;
}

.hobby-card.music-active a.hobby-badge {
  opacity: 0 !important;
  transform: scale(0.95) !important;
  pointer-events: none !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#spotify-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  z-index: 50;
  background: transparent !important;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 1.2s;
}

.hobby-card.music-active #spotify-player {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#spotify-player iframe {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  display: block;
  border-radius: 15px;
  clip-path: inset(0 round 13px) !important;
}

#btn-close-music {
  position: absolute;
  top: -15px;
  right: -5px;
  background: rgba(106, 13, 173, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transform: translateZ(10px);
  transition: transform 0.3s ease, background 0.3s;
}

#btn-close-music:hover {
  transform: scale(1.15) rotate(90deg) translateZ(10px);
  background: #c026d3;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.5s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1200px) {
  .header {
    background-color: rgba(46 22 63 / 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1.5px solid rgba(255, 255, 255, 0.1);
    width: 300px;
    left: -100%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
  #hero3d-model {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header ~ main {
    margin-left: 160px;
  }

  .header ~ main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: rgba(211 181 231 / 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 56px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (max-width: 1199px) {
  main .about {
    padding-left: 40px;
    padding-right: 30px;
  }

  main .portfolio {
    padding-left: 40px;
    padding-right: 30px;
  }

  main .contact {
    padding-left: 40px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
  color: var(--contrast-color);
  background: rgba(188 124 231 / 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  border-color: rgba(235 217 255 / 0.2);
}

.navmenu a:hover,
.navmenu li:hover > a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover > a span {
  display: block;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
  position: relative;
  margin-top: 20px;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  animation: gradient-change 1.5s linear infinite alternate;
  background: linear-gradient(
    to right in oklch,
    var(--＠color-1),
    var(--＠color-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer p {
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

@property --＠color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(289.94 71.06% 46.08%);
}

@property --＠color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(265.96 67.59% 50.39%);
}

@keyframes gradient-change {
  to {
    --＠color-1: hsl(270.86 70.28% 51.18%);
    --＠color-2: hsl(282.91 76.82% 54.31%);
  }
}

.footer-emoji {
  width: 1.25em;
  height: auto;
  margin: 0 3px;
  filter: drop-shadow(0 0 5px rgba(148, 101, 182, 0.5));
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(130 73 172 / 0.4);
  color: #fff;
  border: 1.7px solid rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s cubic-bezier(0.19, 0.47, 0.58, 0.98);
}

.footer .social-links a:hover {
  background: #582b76;
  text-decoration: none;
  transform: scale(1.2);
}

.footer .copyright {
  padding-top: 0px;
  padding-bottom: 30px;
}

.footer .copyright p {
  font-size: 20px;
}

.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 934.5px;
  margin: 20px auto 0;
  padding: 0;
}

.contact-item a {
  color: rgb(119 104 131);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #a855f7;
}

html
  body.index-page
  footer#footer.footer.position-relative.light-background
  div.d-flex.justify-content-center.align-items-center.gap-4.mb-4 {
  width: 50%;
  border-top: 1.5px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.footer-memoji-large {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(148, 101, 182, 0.2));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-memoji-large:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(148, 101, 182, 0.4));
}

.footer .sitename {
  line-height: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex; /* show preloader and center content */
  align-items: center;
  justify-content: center;
}

#preloader.preloader-fade {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: rgba(106, 13, 173, 0.3);
  border: 1.75px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.scroll-top:hover {
  background: rgba(103 40 145 / 0.7); /* Más opaco */
  box-shadow: 0 0 25px rgba(153, 80, 202, 0.25); /* Glow morado externo */
  transform: translateY(-5px); /* Flota un poquito hacia arriba */
  border-color: rgba(255, 255, 255, 0.3);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

section #portfolio,
.portfolio.section {
  padding-top: 20px;
}

div .skills.section {
  padding-top: 90px;
}

.habilidadestecnicas {
  margin-bottom: -30px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.loader {
  --color-one: #8328d9;
  --color-two: #7321b6;
  --color-three: rgba(107, 33, 168, 0.55);
  --color-four: rgba(91, 33, 182, 0.35);
  --color-five: rgba(109, 40, 217, 0.18);
  --time-animation: 2s;
  --size: 1;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: scale(var(--size));
  filter: contrast(20);
  -webkit-filter: contrast(20);
  box-shadow: 0 0 25px 0 var(--color-three), 0 20px 50px 0 var(--color-four);
  animation: colorize calc(var(--time-animation) * 3) ease-in-out infinite;
  -webkit-transform: scale(var(--size)) translateZ(0);
  will-change: transform;
}

.loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-top: solid 1px var(--color-one);
  border-bottom: solid 1px var(--color-two);
  background: linear-gradient(180deg, var(--color-five), var(--color-four));
  box-shadow: inset 0 10px 10px 0 var(--color-three),
    inset 0 -10px 10px 0 var(--color-four);
  pointer-events: none;
  z-index: 10;
}

.loader svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  overflow: visible;
}

.loader svg #clipping polygon {
  filter: blur(7px);
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 1200px) {
  .loader svg #clipping polygon {
    filter: url(#goo-blur);
    -webkit-filter: url(#goo-blur);
  }
}

.loader svg #clipping polygon:nth-child(1) {
  transform-origin: 75% 25%;
  transform: rotate(90deg);
}

.loader svg #clipping polygon:nth-child(2) {
  transform-origin: 50% 50%;
  animation: rotation var(--time-animation) linear infinite reverse;
}

.loader svg #clipping polygon:nth-child(3) {
  transform-origin: 50% 60%;
  animation: rotation var(--time-animation) linear infinite;
  animation-delay: calc(var(--time-animation) / -3);
}

.loader svg #clipping polygon:nth-child(4) {
  transform-origin: 40% 40%;
  animation: rotation var(--time-animation) linear infinite reverse;
}

.loader svg #clipping polygon:nth-child(5) {
  transform-origin: 40% 40%;
  animation: rotation var(--time-animation) linear infinite reverse;
  animation-delay: calc(var(--time-animation) / -2);
}

.loader svg #clipping polygon:nth-child(6) {
  transform-origin: 60% 40%;
  animation: rotation var(--time-animation) linear infinite;
}

.loader svg #clipping polygon:nth-child(7) {
  transform-origin: 60% 40%;
  animation: rotation var(--time-animation) linear infinite;
  animation-delay: calc(var(--time-animation) / -1.5);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes roundness {
  0% {
    filter: contrast(15);
  }
  20% {
    filter: contrast(3);
  }
  40% {
    filter: contrast(3);
  }
  60% {
    filter: contrast(15);
  }
  100% {
    filter: contrast(15);
  }
}

@keyframes colorize {
  0% {
    filter: hue-rotate(0deg);
  }
  20% {
    filter: hue-rotate(-10deg);
  }
  40% {
    filter: hue-rotate(-20deg);
  }
  60% {
    filter: hue-rotate(-30deg);
  }
  80% {
    filter: hue-rotate(-45deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero3d-model {
  background-color: transparent;
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 135%;
  z-index: 10;
  pointer-events: auto;
  overflow: visible;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero .hero-title-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.hero .hero-avatar {
  width: 180px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(205 174 255 / 0.15);
  box-shadow: 0 0px 50px rgba(174 0 255 / 0.2);
  position: static !important;
  left: auto !important;
  top: auto !important;
  inset: auto !important;
  display: block;
  margin: 0;
  margin-right: 30px;
  animation: neon-flicker 500ms infinite alternate;
}

.hero .hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.minegrita {
  color: #ddcaff;
}

.espaciado-br {
  margin-bottom: 30px;
}

.btn-cv {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #f0f0f0;
  z-index: 10;
  position: relative;
  transition: all 0.3s ease;
}

.btn-cv:hover {
  background-color: #ffffff !important;
  color: #9950ca !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* El efecto neón  */
.glow-effect {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #ff44b1, #9b44ff, #303eff);
  opacity: 0.7;
  filter: blur(15px);
  border-radius: 1rem;
  z-index: 0;
  transition: all 0.3s ease;
}

.btn-container:hover .glow-effect {
  opacity: 1;
  filter: blur(20px);
}

.social-links {
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  height: 100%;
}

@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    filter: drop-shadow(0 0 200px rgba(174 0 255 / 0.5));
    opacity: 1;
  }
  20%,
  24%,
  55% {
    filter: drop-shadow(0 0 25px rgba(174 0 255 / 0.1));
    opacity: 0.6;
  }
  50% {
    filter: drop-shadow(0 0 100px rgba(174 0 255 / 0.2));
    opacity: 0.8;
  }
}

/* avatar apilado en movil/tablet */
@media (max-width: 767px) {
  .hero .hero-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero .hero-avatar {
    width: 120px;
    height: auto;
    border-width: 4px;
    margin-bottom: 4px;
  }
  .hero h2 {
    font-size: 40px;
  }
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
  line-height: 1.6;
}

.hero p span {
  animation: neonAnim 4.5s alternate-reverse infinite;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

@keyframes neonAnim {
  from {
    text-shadow: 0 0 40px rgba(174 0 255 / 1), 0 0 70px rgba(174 0 255 / 1),
      0 0 130px rgba(174 0 255 / 1);
  }
  to {
    text-shadow: 0 0 35px rgba(174 0 255 / 1), 0 0 50px rgba(174 0 255 / 1),
      0 0 90px rgba(174 0 255 / 1);
  }
}
.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 38px;
  }

  .hero p {
    margin: 5px 0 0 0;
    font-size: 20px;
    line-height: 1.6;
  }

  .hero .hero-avatar {
    width: 135px;
    height: auto;
  }

  .hero {
    padding-left: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.semi-bold {
  font-weight: 600;
}

.img-fluid {
  border-radius: 15px;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

.about {
  padding-bottom: 0;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/

.tags {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  justify-content: center;
}

.tags-section {
  margin-top: 40px;
}

.card__tags {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

ul.tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.tag__name {
  display: inline-block;
  background: rgba(130 73 172 / 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  padding: 8px 25px;
  border-radius: 50px;
  position: relative;
  text-transform: lowercase;
  cursor: pointer;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.14, 0.61, 0.49, 0.95),
    transform 0.3s cubic-bezier(0.25, 1.5, 0.5, 2.2);
}

.tag__name::before,
.tag__name::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff31;
}
.tag__name::before {
  left: 10px;
}
.tag__name::after {
  right: 10px;
}

.tag__name:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(185 120 231 / 0.51);
  z-index: 2;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.slider-container {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 50px 0;
  z-index: 20;
  pointer-events: none;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.slider-track {
  display: flex;
  width: max-content;
  animation-timing-function: linear;
  flex-wrap: nowrap;
  pointer-events: auto;
}

/* animaciones */
.scroll-left {
  animation: moveLeft 30s linear infinite;
}
.scroll-right {
  animation: moveRight 30s linear infinite;
}
@media (hover: hover) {
  .slider-track:hover {
    animation-play-state: paused;
  }
}

.slider-track.js-paused {
  animation-play-state: paused !important;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.slide {
  display: flex;
  align-items: center;
  width: auto;
  flex-shrink: 0; /* Prohibido encogerse */
  justify-content: flex-start;
  gap: 30px; /* Espacio fijo entre iconos */
  padding-right: 60px;
}

.icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* TAMAÑO GRANDE ESCRITORIO */
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  margin: 0 15px;
}

/* (etiqueta) */
.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: var(--accent-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 20;
  transition: all 0.3s ease;
  pointer-events: none;
  margin-bottom: 8px;
}
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--accent-color) transparent transparent transparent;
}
/* Mantiene el hover en PC y añade la clase para Móvil */
.icon-wrapper:hover .tooltip,
.icon-wrapper.js-show .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.iconify {
  font-size: 100px; /* Tamaño grande */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(100%);
  opacity: 0.6;
}

.custom-icon {
  width: 100px;
  height: 100px; /* Tamaño grande */
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.6;
}

.icon-wrapper:hover .iconify,
.icon-wrapper:hover .custom-icon {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 20px var(--icon-glow, rgba(255, 255, 255, 0.1)))
    drop-shadow(-10px -15px 50px var(--icon-glow, rgba(255, 255, 255, 0.1)));
}

/* Responsive Slider */
@media (max-width: 1000px) {
  .slide {
    gap: 35px;
  }
  .icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .iconify {
    font-size: 100px;
  }
  .custom-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .slide {
    gap: 25px;
    padding-right: 40px;
  }
  .icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .iconify {
    font-size: 90px;
  }
  .custom-icon {
    width: 90px;
    height: 90px;
  }
  .slider-container {
    padding-top: 65px;
  }
}

.skills.section {
  overflow: visible !important;
  position: relative;
  z-index: 100;
}
/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.fancybox__container {
  --fancybox-bg: rgba(8 3 15 / 0.9);
}

.fancybox__toolbar {
  --f-button-bg: rgba(19 3 43 / 0.65);
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0);
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background: rgba(162 81 216 / 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -60%;
  border-radius: 15px;
  z-index: 3;
  transition: all cubic-bezier(0.13, 0.62, 0.3, 0.94) 0.4s;
  background: rgba(68 32 92 / 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px;
  font-weight: 700;
  padding-right: 65px;
  color: #56287c;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.dark {
  color: #a069c2;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color));
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  letter-spacing: 0.35px;
  font-weight: 500;
  margin-bottom: 0;
  padding-right: 65px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 14px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 50px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact .php-email-form button[type="submit"].btn-cv {
  border-radius: 1rem !important;
  padding: 0.5rem 1rem !important;
  background: #ffffff !important;
  color: #000 !important;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"].btn-cv:hover {
  background: #ffffff !important;
  color: #9950ca !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.btn {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/* menú hamburguesa */
.hamburger-btn {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  background: rgba(106, 13, 173, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.75px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.centerhamburger {
  position: relative;
  width: 24px;
  height: 20px;
  pointer-events: none;
}

.centerhamburger div,
.centerhamburger:before,
.centerhamburger:after {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
}

.centerhamburger div {
  top: 50%;
  transform: translateY(-50%);
}

.centerhamburger:before {
  top: 0;
}

.centerhamburger:after {
  bottom: 0;
}

body.mobile-nav-active .centerhamburger:before {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

body.mobile-nav-active .centerhamburger:after {
  bottom: 50%;
  transform: translateY(50%) rotate(-135deg);
}

body.mobile-nav-active .centerhamburger div {
  transform: scale(0);
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .contact-bar {
    padding: 0 20px;
  }
  #about.section {
    overflow: visible !important;
  }

  .skills.section {
    overflow: visible !important;
  }

  .skills.section .slider-container {
    margin-left: -160px !important;
    width: 100vw !important;
    max-width: none !important;
    position: relative !important;
    z-index: 10;
  }
}

@media (max-width: 1200px) {
  .contact-bar {
    width: 98% !important;
    flex-wrap: wrap;
    gap: 40%;
    justify-content: center;
  }

  html
    body.index-page
    footer#footer.footer.position-relative.light-background
    div.d-flex.justify-content-center.align-items-center.gap-4.mb-4 {
    width: 90%;
  }
}