﻿/*
@import "Bundles/Bootstrap/mixins/banner";
@include bsBanner("");

@import "Bundles/Bootstrap/functions";
@import "Bundles/Bootstrap/variables";
//@import "Bundles/Bootstrap-5.3.2/variables-dark";
//@import "Bundles/Bootstrap-5.3.2/maps";

// Bootstrap carrousel
@import "Bundles/Bootstrap/mixins/_visually-hidden.scss";
@import "Bundles/Bootstrap/mixins/breakpoints";
@import "Bundles/Bootstrap/mixins/_clearfix.scss";
@import "Bundles/Bootstrap/mixins/_color-mode.scss";
@import "Bundles/Bootstrap/mixins/_transition.scss";
@import "Bundles/Bootstrap/_carousel.scss";
@import "Bundles/Bootstrap/helpers/_visually-hidden.scss";


// Bootstrap variables
@import "Bundles/Bootstrap/_maps.scss";
@import "Bundles/Bootstrap/vendor/_rfs.scss";
@import "Bundles/Bootstrap/_root.scss";
*/
#background-animation {
  background: var(--main-bg);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
#background-animation ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#background-animation li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
#background-animation li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
#background-animation li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
#background-animation li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
#background-animation li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
#background-animation li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
#background-animation li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
#background-animation li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
#background-animation li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
#background-animation li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
#background-animation li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    border-radius: 0;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    border-radius: 50%;
  }
}
.cv-page {
  gap: 1.25rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cv-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  min-width: 0;
}
.cv-page__header h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1;
}

.cv-page__download {
  align-self: center;
  color: var(--button-color-selected);
  background: var(--button-bg-selected);
  border-color: transparent;
}

.cv-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.38fr);
  gap: 1rem;
  min-width: 0;
}

.cv-page__main,
.cv-page__aside,
.cv-page__timeline,
.cv-page__projects,
.cv-page__skills {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.cv-page__block,
.cv-page__entry,
.cv-page__project,
.cv-page__skill {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(42, 102, 217, 0.18);
  background: rgba(255, 255, 255, 0.42);
  min-width: 0;
  max-width: 100%;
}

html[theme-mode=dark] .cv-page__block,
html[theme-mode=dark] .cv-page__entry,
html[theme-mode=dark] .cv-page__project,
html[theme-mode=dark] .cv-page__skill {
  background: rgba(15, 26, 45, 0.62);
  border-color: rgba(111, 176, 255, 0.22);
}

.cv-page__block h2 {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
}
.cv-page__block p {
  margin: 0;
}

.cv-page__entry h3,
.cv-page__entry p {
  margin: 0;
}
.cv-page__entry time {
  color: var(--button-border-color);
  font-weight: 800;
}

.cv-page__project,
.cv-page__skill {
  color: var(--sections-color);
  text-decoration: none;
}

.cv-page__project:hover,
.cv-page__skill:hover {
  color: var(--button-border-color);
}

.cv-page__skill {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem;
}
.cv-page__skill strong {
  text-align: left;
  font-size: 0.88rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cv-page__header,
  .cv-page__content {
    grid-template-columns: 1fr;
  }
  .cv-page__download {
    width: 100%;
  }
  .cv-page__skill {
    grid-template-columns: minmax(0, 1fr);
  }
  .cv-page__skill strong {
    text-align: left;
  }
}
#s-education .s-content {
  width: 100%;
}
#s-education .timeline {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#s-education .timeline::before {
  display: none;
}
#s-education .timeline > li {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(42, 102, 217, 0.18);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(16, 47, 94, 0.09);
}
#s-education .timeline > li::before {
  display: none;
}
#s-education .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
#s-education .header h3 {
  margin: 0;
  min-width: 0;
  line-height: 1.2;
}
#s-education .date {
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--button-border-color);
  white-space: nowrap;
}
#s-education p {
  margin: 0;
}

html[theme-mode=dark] #s-education .timeline > li {
  background: rgba(15, 26, 45, 0.62);
  border-color: rgba(111, 176, 255, 0.22);
}

@media (max-width: 640px) {
  #s-education .header {
    flex-direction: column;
    gap: 0.35rem;
  }
}
.main-header {
  flex-direction: row;
  margin-top: 1em;
  box-sizing: border-box;
  max-width: 100%;
}
.main-header .image {
  padding: 0;
  align-content: center;
  flex: 0 0 300px;
  min-width: 0;
}
.main-header .image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.main-header .intro {
  flex: 1;
  padding: 2em;
  font-size: 1.2em;
  min-width: 0;
  overflow-wrap: anywhere;
}
.main-header .intro img {
  height: 1.2em;
  width: auto;
}

.recruiter-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.recruiter-profile__content {
  display: grid;
  gap: 0.75rem;
}
.recruiter-profile__content h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.recruiter-profile__summary {
  max-width: 54rem;
  margin: 0;
  font-size: 1.05rem;
}

.recruiter-profile__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.recruiter-profile__signals span {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(42, 102, 217, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.recruiter-profile__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.recruiter-profile__primary {
  color: var(--button-color-selected);
  background: var(--button-bg-selected);
  border-color: transparent;
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  .main-header .image {
    flex: 0 0 auto;
  }
  .main-header img {
    width: min(220px, 100%);
  }
  .main-header .intro {
    padding: 1rem 0 0;
    font-size: 1rem;
    width: 100%;
  }
  .recruiter-profile {
    grid-template-columns: 1fr;
  }
  .recruiter-profile__actions {
    justify-content: stretch;
  }
  .recruiter-profile__actions .button {
    flex: 1 1 100%;
  }
}
.menu {
  position: sticky;
  top: 5.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2em 0;
  z-index: 100;
}

#skill-selector {
  width: 100%;
  margin: 0;
  padding: 0.6em;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 24px rgba(15, 31, 58, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#skill-selector .s-header {
  text-align: center;
}
#skill-selector .s-header h2 {
  padding: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  opacity: 0.9;
}
#skill-selector .s-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#skill-selector .s-content button {
  margin: 0.5em;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--button-border-color);
  background: var(--button-bg);
  color: var(--sections-color);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
#skill-selector .s-content button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(19, 35, 66, 0.22);
}

@media (max-width: 1024px) {
  .menu {
    position: static;
    flex-direction: column;
  }
  #skill-selector {
    width: 100%;
  }
}
.not-found-page__hero {
  gap: 0.9rem;
}

.not-found-page__hero h1,
.not-found-page__hero p {
  margin: 0;
}

.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .not-found-page__actions {
    flex-direction: column;
  }
  .not-found-page__actions .button {
    width: 100%;
  }
}
main h1 {
  margin: 0;
}
main .subtitle {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--button-border-color);
}

.personal-projects-section__header p {
  margin: 0.25rem 0 0;
  opacity: 0.8;
}

.personal-projects-section__grid,
.projects-page__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(15, 31, 58, 0.12);
  min-width: 0;
  overflow-wrap: anywhere;
}

html[theme-mode=dark] .project-card {
  background: rgba(15, 26, 45, 0.66);
  border-color: rgba(111, 176, 255, 0.28);
}

.project-card__top {
  display: grid;
  gap: 0.55rem;
  align-items: start;
  min-width: 0;
  text-align: center;
}
.project-card__top h2,
.project-card__top h3 {
  margin: 0;
  line-height: 1.2;
  min-width: 0;
}

.project-card__category {
  justify-self: start;
  max-width: 100%;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  line-height: 1.2;
  text-align: center;
}

.project-card__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}

.project-card__details .project-card__category {
  justify-self: end;
}

.project-card__date {
  margin: 0;
  font-weight: 800;
  color: var(--button-border-color);
  min-width: 0;
}

.project-card__summary {
  margin: 0;
}

.project-card__meta {
  display: grid;
  gap: 0.65rem;
}
.project-card__meta h3 {
  margin: 0;
  font-size: 0.95rem;
}
.project-card__meta p {
  margin: 0.25rem 0 0;
}

.project-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.project-card__stack span {
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(42, 102, 217, 0.12);
}

.project-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.project-card__skills a {
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--button-border-color);
  background: rgba(240, 138, 93, 0.14);
  border: 1px solid rgba(240, 138, 93, 0.2);
}
.project-card__skills a:hover,
.project-card__skills a:focus-visible {
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
}

.project-card__skills--detail a {
  font-size: 0.86rem;
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--button-border-color);
  color: var(--button-border-color);
  transition: all 0.2s ease;
}

.project-link:hover,
.project-link:focus-visible {
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
}

.projects-page__header .page-header__intro {
  margin: 0.35rem 0 0;
}

.projects-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.personal-projects-section__footer {
  margin-top: 1rem;
}

.project-detail__hero,
.project-detail__content,
.project-detail__error {
  display: grid;
  gap: 1rem;
}

.project-detail__back {
  width: fit-content;
  color: var(--button-border-color);
  font-weight: 800;
  text-decoration: none;
}

.project-detail__heading {
  display: grid;
  gap: 0.45rem;
}
.project-detail__heading h1,
.project-detail__heading p {
  margin: 0;
}

.project-detail__facts {
  display: grid;
  gap: 0.6rem;
}
.project-detail__facts span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(42, 102, 217, 0.12);
  font-weight: 800;
}

.project-detail__content {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.project-detail__section,
.project-detail__panel {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(42, 102, 217, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.38);
}
.project-detail__section h2,
.project-detail__section p,
.project-detail__panel h2,
.project-detail__panel p {
  margin: 0;
}

html[theme-mode=dark] .project-detail__section,
html[theme-mode=dark] .project-detail__panel {
  background: rgba(10, 19, 35, 0.44);
  border-color: rgba(111, 176, 255, 0.18);
}

.project-detail__list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.1rem;
}

.project-detail__aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .personal-projects-section__grid,
  .projects-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .project-detail__content {
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.8fr);
  }
  .project-detail__aside {
    position: sticky;
    top: 1rem;
  }
}
@media (max-width: 640px) {
  .project-card__details {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .project-card__details .project-card__category {
    justify-self: start;
  }
  .project-card__actions .project-link {
    width: 100%;
  }
}
.services-page .services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
  margin-block: 2rem;
}
.services-page .services__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.services-page .services__card .services__card-icon {
  font-size: 1.75rem;
}
.services-page .services__card .services__case {
  margin-top: auto;
  font-weight: 600;
}
.services-page .services__cta {
  text-align: center;
  margin-block: 3rem 2rem;
}
.services-page .services__cta p {
  margin-block: 0.5rem 1.5rem;
}
.services-page .services__cta .recruiter-profile__actions {
  justify-content: center;
}

.profesional-skills .professional-skills__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.profesional-skills .professional-skills__header h2 {
  padding-bottom: 0.25rem;
}
.profesional-skills .professional-skills__header p {
  margin: 0;
  opacity: 0.82;
}
.profesional-skills .professional-skills__search-link {
  flex: 0 0 auto;
  color: var(--button-color-selected);
  background: var(--button-bg-selected);
  border-color: transparent;
}

.professional-skills__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.skill-card,
.tech-skill-card {
  border-radius: 0.85rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 10px 24px rgba(15, 31, 58, 0.12);
}

html[theme-mode=dark] .skill-card,
html[theme-mode=dark] .tech-skill-card {
  background: rgba(15, 26, 45, 0.64);
  border-color: rgba(111, 176, 255, 0.26);
}

.skill-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.skill-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.skill-card__main h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.skill-card__main span {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.skill-card__rating,
.tech-skill-card__rating div {
  display: flex;
  gap: 0.25rem;
}

.skill-card__star {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  background: rgba(21, 33, 51, 0.24);
}

.skill-card__star--filled {
  background: #f08a5d;
}

.skill-card__meta {
  font-weight: 800;
}

.skill-card__description,
.tech-skill-card__description,
.skill-detail__description {
  margin: 0;
  line-height: 1.45;
  opacity: 0.82;
}

.skill-card__tags,
.tech-skill-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.skill-card__tags span,
.tech-skill-card__tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(42, 102, 217, 0.1);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.tech-experience {
  gap: 1.25rem;
}

.tech-experience__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}
.tech-experience__header h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1;
}
.tech-experience__header p {
  margin-bottom: 0;
  max-width: 46rem;
}

.tech-experience__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--button-border-color);
}

.tech-experience__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 8.5rem;
  padding: 1rem;
  border-radius: 0.85rem;
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  text-align: center;
}
.tech-experience__summary strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.tech-experience__summary span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 800;
}

.tech-experience__toolbar {
  display: grid;
  gap: 1rem;
}

.tech-experience__search {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}
.tech-experience__search input {
  min-height: 2.9rem;
  border-radius: 0.75rem;
  border: 1px solid var(--button-border-color);
  padding: 0.6rem 0.85rem;
  color: var(--sections-color);
  background: var(--button-bg);
}

.tech-experience__filters,
.tech-experience__active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1em;
}

.tag-filter,
.tech-experience__active button {
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--button-border-color);
  background: var(--button-bg);
  color: var(--sections-color);
  font-weight: 800;
}

.tag-filter--selected,
.tech-experience__active button {
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  border-color: transparent;
}

.tag-filter:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.tech-experience__active {
  align-items: center;
}
.tech-experience__active > span {
  font-weight: 900;
}

.tech-experience__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tech-skill-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.tech-skill-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.tech-skill-card__top h2 {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1.15;
}
.tech-skill-card__top p {
  margin: 0.25rem 0 0;
  opacity: 0.76;
  font-weight: 800;
}
.tech-skill-card__top strong {
  flex: 0 0 auto;
  color: var(--button-border-color);
}

.tech-skill-card__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

.tech-skill-card__projects {
  display: grid;
  gap: 0.25rem;
}
.tech-skill-card__projects span {
  font-weight: 900;
}
.tech-skill-card__projects p {
  margin: 0;
}

.skill-detail {
  gap: 1.25rem;
}

.skill-detail__header,
.skill-detail__experience {
  display: grid;
  gap: 1rem;
}

.skill-detail__back a {
  font-weight: 800;
}

.skill-detail__card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 10px 24px rgba(15, 31, 58, 0.12);
}

html[theme-mode=dark] .skill-detail__card {
  background: rgba(15, 26, 45, 0.64);
  border-color: rgba(111, 176, 255, 0.26);
}

.skill-detail__title h1 {
  margin: 0;
  padding: 0;
  font-size: 2.2rem;
  line-height: 1.05;
}
.skill-detail__title p {
  margin: 0.35rem 0 0;
  font-weight: 800;
  opacity: 0.76;
}

.skill-detail__meta,
.skill-detail__rating,
.skill-detail__experience,
.skill-detail__tags,
.skill-detail__projects {
  display: grid;
  gap: 0.45rem;
}

.skill-detail__stars,
.skill-detail__tags div,
.skill-detail__projects div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.skill-detail__star {
  color: rgba(21, 33, 51, 0.28);
  font-size: 1.25rem;
  line-height: 1;
}

.skill-detail__star--filled {
  color: #f08a5d;
}

.skill-detail__tag,
.skill-detail__project {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(42, 102, 217, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.skill-detail__project--link {
  color: var(--sections-color);
  text-decoration: none;
}

.skill-detail__project--link:hover {
  color: var(--button-border-color);
  text-decoration: underline;
}

.skill-related-experience-card__tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.skill-related-experience-card__tech-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(42, 102, 217, 0.1);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
}

.skill-related-experience-card__tech-badge--link {
  color: var(--sections-color);
  text-decoration: none;
}

.skill-related-experience-card__tech-badge--link:hover {
  color: var(--button-border-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .profesional-skills .professional-skills__header,
  .tech-experience__header,
  .tech-skill-card__top {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .professional-skills__grid,
  .tech-experience__results {
    grid-template-columns: 1fr;
  }
  .tech-experience__header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 360px) {
  .tech-experience__summary {
    min-width: 0;
  }
  .tag-filter,
  .tech-experience__active button {
    width: 100%;
  }
}
.skill-selector .s-content {
  display: flex;
  justify-content: center;
  width: 100%;
}
.skill-selector button {
  margin: 1em 0.5em;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 0.75rem 1rem;
  color: var(--sections-color);
}

.site-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 244, 255, 0.52));
  box-shadow: 0 14px 34px rgba(13, 26, 46, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html[theme-mode=dark] .site-nav__inner {
  background: linear-gradient(135deg, rgba(13, 25, 43, 0.92), rgba(30, 47, 72, 0.74));
  border-color: rgba(132, 180, 255, 0.26);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  color: var(--sections-color);
  text-decoration: none;
  font-weight: 800;
}

.site-nav__mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: #102f5e;
  color: #ffffff;
  font-size: 0.82rem;
  font-family: roboto-condensed, roboto, sans-serif;
}

html[theme-mode=dark] .site-nav__mark {
  background: #f08a5d;
  color: #101726;
}

.site-nav__brand-text {
  white-space: nowrap;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  flex-wrap: wrap;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.72rem;
  border-radius: 0.7rem;
  color: var(--sections-color);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.site-nav__link:hover {
  transform: translateY(-1px);
  background: rgba(42, 102, 217, 0.12);
}
.site-nav__link.active {
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  box-shadow: 0 8px 18px rgba(16, 47, 94, 0.2);
}

.site-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  font-size: 1rem;
  line-height: 1;
}

.site-nav__label {
  white-space: nowrap;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 0 0 auto;
}

.site-nav__actions button,
.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  border-radius: 0.7rem;
  border: 1px solid var(--button-border-color);
  background: var(--button-bg);
  color: var(--sections-color);
  cursor: pointer;
}

.site-nav__actions button {
  padding: 0.35rem 0.55rem;
}
.site-nav__actions button span {
  margin-left: 0.45rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.site-nav__actions svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.5rem;
}
.site-nav__toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 1024px) {
  .site-nav__inner {
    align-items: flex-start;
  }
  .site-nav__menu {
    gap: 0.65rem;
  }
  .site-nav__link {
    padding-inline: 0.6rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 768px) {
  .site-nav {
    padding: 0.55rem;
  }
  .site-nav__inner {
    flex-wrap: wrap;
    border-radius: 0.85rem;
  }
  .site-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-nav__menu {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .site-nav__menu--open {
    display: flex;
  }
  .site-nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }
  .site-nav__link {
    justify-content: center;
    min-height: 2.5rem;
    text-align: center;
    gap: 0.4rem;
  }
  .site-nav__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 360px) {
  .site-nav__brand-text {
    display: none;
  }
  .site-nav__links {
    grid-template-columns: 1fr;
  }
  .site-nav__actions {
    justify-content: stretch;
  }
  .site-nav__actions > * {
    flex: 1 1 auto;
  }
}
.work-experience__header h2 {
  padding-bottom: 0.25rem;
}
.work-experience__header p {
  margin: 0;
  opacity: 0.82;
}

.work-timeline {
  --work-timeline-axis: 1.125rem;
  position: relative;
  display: grid;
  gap: 1.25rem;
}
.work-timeline::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: calc(var(--work-timeline-axis) - 1.5px);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--button-border-color), rgba(240, 138, 93, 0.85));
}

.work-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.85rem;
}

.work-timeline__marker {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 4px solid var(--button-bg-selected);
  background: var(--button-color-selected);
  box-shadow: 0 0 0 5px rgba(42, 102, 217, 0.16);
}

.work-timeline__card {
  display: grid;
  gap: 0.95rem;
  padding: 1.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(15, 31, 58, 0.14);
}

html[theme-mode=dark] .work-timeline__card {
  background: rgba(15, 26, 45, 0.66);
  border-color: rgba(111, 176, 255, 0.26);
}

.work-timeline__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.work-timeline__top h2,
.work-timeline__top h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.1;
}
.work-timeline__top p {
  margin: 0.35rem 0 0;
  font-weight: 900;
  color: var(--button-border-color);
}
.work-timeline__top time {
  flex: 0 0 auto;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  font-weight: 900;
  font-size: 0.86rem;
  white-space: nowrap;
}

.work-timeline__summary {
  margin: 0;
  font-size: 1rem;
}

.work-timeline__highlights,
.work-timeline__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.work-timeline__highlights span,
.work-timeline__tech span {
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.work-timeline__highlights span {
  background: rgba(240, 138, 93, 0.18);
}

.work-timeline__tech span {
  background: rgba(42, 102, 217, 0.12);
}

.work-timeline__responsibilities {
  display: grid;
  gap: 0.85rem;
}

.work-timeline__related {
  display: grid;
  gap: 0.55rem;
}
.work-timeline__related h3 {
  margin: 0;
  font-size: 0.95rem;
}

.work-timeline__related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-timeline__group h3,
.work-timeline__group h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}
.work-timeline__group ul {
  margin: 0;
  padding-left: 1.2rem;
}
.work-timeline__group li {
  margin-bottom: 0.35rem;
}

@media (min-width: 1024px) {
  .work-timeline {
    max-width: 980px;
    margin: 0 auto;
  }
  .work-timeline__item {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 1rem;
  }
  .work-timeline__card {
    grid-column: 2;
  }
  .work-timeline__marker {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .work-timeline__top {
    flex-direction: column;
  }
  .work-timeline__top time {
    align-self: flex-start;
  }
}
@media (max-width: 360px) {
  .work-timeline {
    --work-timeline-axis: 0.75rem;
  }
  .work-timeline__item {
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 0.55rem;
  }
  .work-timeline__card {
    padding: 0.85rem;
  }
}
button, a.button {
  display: inline-block;
  color: #000000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5em;
  transition: all 0.18s ease-in-out;
  background-color: var(--button-bg);
  border: 3px solid var(--button-border-color);
  border-radius: 45px;
}
button:hover, a.button:hover {
  transform: scale(1.1);
}
button.selected, a.button.selected {
  background-color: var(--button-bg-selected);
  color: var(--button-color-selected);
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 10000;
  margin: 0;
  padding: 1rem;
  border-radius: 0;
  background: rgba(15, 26, 45, 0.96);
  color: #ffffff;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.24);
}

.cookie-consent__content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-consent__content p {
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.cookie-consent__accept,
.cookie-consent__reject {
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 800;
}

.cookie-consent__accept {
  border: 1px solid #6fb0ff;
  background: #ffffff;
  color: #102f5e;
}

.cookie-consent__reject {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff;
}

@media (max-width: 640px) {
  .cookie-consent__content {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-consent__actions {
    flex-direction: column;
  }
}
ul.timeline {
  list-style-type: none;
  position: relative;
}
ul.timeline:before {
  content: " ";
  background: #d4d9df;
  display: inline-block;
  position: absolute;
  left: 31px;
  width: 2px;
  height: 100%;
  z-index: 400;
}
ul.timeline > li {
  margin: 20px 0;
  padding-left: 20px;
}
ul.timeline > li:before {
  content: " ";
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--color0);
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 400;
}

.skill-card:hover {
  background-color: var(--sections-bg-hover);
  transform: translateY(-2px);
}

:root {
  --color0: #0f2342;
  --bgcolor: #f4f7fb;
  --bgcolorsolid: #dae8f8;
  --main-bg: radial-gradient(circle at 15% 20%, #70c7ff 0%, #3970c6 42%, #16213e 100%);
  --main-bg-solid: #16213e;
  --sections-bg: rgba(255, 255, 255, 0.58);
  --sections-bg-hover: rgba(255, 255, 255, 0.78);
  --sections-color: #152133;
  --button-bg: #ffffff;
  --button-border-color: #2a66d9;
  --button-bg-selected: #102f5e;
  --button-color-selected: #ffffff;
  --focus-ring: #ff7a59;
  --glow: 0 18px 45px rgba(18, 43, 90, 0.24);
}

html[theme-mode=dark] {
  --color0: #e7eef8;
  --bgcolor: #0d1321;
  --bgcolorsolid: #1f2f48;
  --main-bg: radial-gradient(circle at 75% 10%, #1f6feb 0%, #12274a 42%, #090f1a 100%);
  --main-bg-solid: #0b1324;
  --sections-bg: rgba(15, 26, 45, 0.72);
  --sections-bg-hover: rgba(22, 38, 66, 0.88);
  --sections-color: #e8eef8;
  --button-bg: #132744;
  --button-border-color: #6fb0ff;
  --button-bg-selected: #f08a5d;
  --button-color-selected: #101726;
  --focus-ring: #f8b26a;
  --glow: 0 20px 55px rgba(0, 0, 0, 0.42);
}

@font-face {
  font-family: "roboto";
  src: url("/fonts/Roboto-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "roboto-condensed";
  src: url("/fonts/Roboto_Condensed-Bold.ttf");
  font-display: swap;
}
body {
  box-sizing: border-box;
  margin: 0;
  background: var(--bgcolor);
  font-family: roboto;
  line-height: 1.75rem;
  color: var(--sections-color);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

main {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--button-bg-selected);
  color: var(--button-color-selected);
  box-shadow: var(--glow);
  transform: translateY(-160%);
  transition: transform 0.15s ease-in-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.24), var(--glow);
}

header, section {
  display: flex;
  padding: 1.5rem;
  background-color: var(--sections-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 1.5rem;
  border: solid 0 rgba(255, 255, 255, 0.34);
  border-width: 1px;
  color: var(--sections-color);
  position: relative;
  z-index: 1;
  box-shadow: var(--glow);
  transition: all 0.2s ease-in-out;
}

section {
  margin: 2em 0;
  flex-direction: column;
}
section .education-page__header,
section .education-page__content {
  width: 100%;
}
section .education-page__section-eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2a66d9;
}
section html[theme-mode=dark] .education-page__section-eyebrow {
  color: #8bc1ff;
}
section .page-header__intro {
  max-width: 52rem;
  margin: 0.25rem 0 0;
  font-size: 1.02rem;
}
section .education-page__intro {
  max-width: 52rem;
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
}
section .education-page__grid {
  display: grid;
  gap: 1rem;
}
section .education-page__section {
  display: grid;
  gap: 1rem;
}
section .education-page__section-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
section .education-page__section-heading h2,
section .education-page__section-heading p {
  margin: 0;
}
section .education-page__section-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(42, 102, 217, 0.18), rgba(240, 138, 93, 0.12));
  color: #102f5e;
  box-shadow: 0 12px 26px rgba(16, 47, 94, 0.12);
  flex: 0 0 auto;
}
section .education-page__section-icon i {
  font-size: 1.15rem;
}
section html[theme-mode=dark] .education-page__section-icon {
  background: linear-gradient(145deg, rgba(111, 176, 255, 0.22), rgba(240, 138, 93, 0.18));
  color: #e7eef8;
}
section .education-page__timeline,
section .education-page__cards {
  display: grid;
  gap: 0.85rem;
}
section .education-page__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
section .education-page__cards--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
section .education-item,
section .education-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(42, 102, 217, 0.22);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(15, 31, 58, 0.12);
  min-width: 0;
  overflow-wrap: anywhere;
}
section .education-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
section .education-item__header h3,
section .education-card h3 {
  margin: 0;
  line-height: 1.2;
  min-width: 0;
}
section html[theme-mode=dark] .education-item,
section html[theme-mode=dark] .education-card {
  background: rgba(15, 26, 45, 0.66);
  border-color: rgba(111, 176, 255, 0.28);
}
section .education-item__date {
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2a66d9;
}
section html[theme-mode=dark] .education-item__date {
  color: #8bc1ff;
}
section .education-item__institution,
section .education-item__description,
section .education-card p {
  margin: 0;
}
section .education-card--language {
  min-height: 100%;
}
@media (max-width: 768px) {
  section .education-page__cards,
  section .education-page__cards--compact {
    grid-template-columns: 1fr;
  }
  section .education-item__header {
    flex-direction: column;
  }
  section .education-page__section-heading {
    align-items: flex-start;
  }
}
section h2 {
  margin: 0;
  padding: 1em;
}

.bigger {
  font-size: 2em;
  font-weight: 600;
}

h1, h2, h3, .display-title {
  font-family: roboto-condensed, roboto, sans-serif;
  letter-spacing: 0.02em;
}

a,
a:visited {
  color: var(--button-border-color);
  text-decoration: none;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 2.5rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: #b32121;
  color: white;
  padding: 1rem;
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

button:focus,
a:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.18);
}
