body.prioridades {
  --body-bg: #C6102E;
  --circle: #C6102E;
  --reveal: #C6102E;
  --dot: #0011ff;
  --slide-1-bg: #C6102E;
  --slide-2-bg: #C6102E;
  --slide-3-bg: #121414;
  --slide-4-bg: #C6102E;
  --slide-5-bg: #F4F4F9;
  --service-h4: #00ffd5;
  --bar-inner: #64e1ce;
}

body.smc {
  --body-bg: #212f21;
  --circle: #d16233;
  --reveal: #d16233;
  --dot: #d16233;
  --slide-1-bg: #212f21;
  --slide-2-bg: #212f21;
  --slide-3-bg: #121414;
  --slide-4-bg: #212f21;
  --slide-5-bg: #F4F4F9;
  --service-h4: #d16233;
  --bar-inner: #64e1ce;
}

body.ce {
  --body-bg: #1d1c1c;
  --circle: #157515;
  --reveal: #157515;
  --dot: #157515;
  --slide-1-bg: #1d1c1c;
  --slide-2-bg: #1d1c1c;
  --slide-3-bg: #121414;
  --slide-4-bg: #1d1c1c;
  --slide-5-bg: #F4F4F9;
  --service-h4: #157515;
  --bar-inner: #64e1ce;
}

body.sApp {
  --body-bg: #576ec2;
  --circle: #6887bd;
  --reveal: #576ec2;
  --dot: #0011ff;
  --slide-1-bg: #576ec2;
  --slide-2-bg: #576ec2;
  --slide-3-bg: #202938;
  --slide-4-bg: #576ec2;
  --slide-5-bg: #F4F4F9;
  --service-h4: #00ffd5;
  --bar-inner: #64e1ce;
}

body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
  background-color: var(--body-bg);
  font-family: "Lato", sans-serif;
}
body .hd {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 99dvw;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0px;
  z-index: 1000;
  gap: 35%;
  /* List style */
  /* Links inside list items */
  /* Staggered animation for list items */
  /* Hover effect */
}
body .hd button {
  z-index: 1000;
  padding: 0 1.5em 0 1em;
  height: 3em;
  font-size: 1em;
  background: #fff;
  /* color: var(--project-details-btn-text); */
  /* color: var(--color-black); */
  font-weight: bold;
  border-radius: 100px;
  border: none;
  text-transform: uppercase;
  width: fit-content;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625em;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* Hover effect: circles overlap */
}
body .hd button a {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
}
body .hd .menuButton {
  width: 8rem;
  height: 3rem;
}
body .hd .menuButton .circles {
  display: flex;
  margin-left: 10px;
  position: relative;
  width: 40px; /* enough space for both */
  height: 20px;
}
body .hd .menuButton .circles .circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--circle);
  position: absolute;
  top: 2px;
  transition: all 0.3s ease;
}
body .hd .menuButton .circles .circle:first-child {
  left: 0;
}
body .hd .menuButton .circles .circle:last-child {
  right: 0;
}
body .hd .menuButton:hover .circle:first-child {
  left: 12px;
}
body .hd .menuButton:hover .circle:last-child {
  right: 12px;
}
body .hd button:hover {
  background: linear-gradient(135deg, #005fcc, #00aaff);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 128, 255, 0.4);
}
body .hd .logo {
  cursor: pointer;
  width: 12rem;
}
body .hd .logo .imagen {
  fill: white; /* default color */
  transition: fill 0.5s ease-in-out, transform 0.5s ease-in-out;
}
body .hd .logo .imagen:hover {
  transform: scale(1.1);
  fill: url(#myGradient);
}
body .hd .backButton {
  width: fit-content;
  /* Subtle wiggle movement */
}
body .hd .backButton #back-btn-svg {
  cursor: pointer;
  transition: transform 0.3s ease;
}
body .hd .backButton #back-btn-svg:hover {
  animation: arrow-bounce 0.4s ease;
}
@keyframes arrow-bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  } /* move left */
  100% {
    transform: translateX(0);
  } /* back to original */
}
body .hd .floating-menu {
  position: fixed;
  top: 95px;
  width: 6.5rem;
  background: white;
  border: 1px solid #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 99999;
  /* Animation */
  opacity: 0;
  transform: scale(0.9) translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}
body .hd .floating-menu.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
body .hd .floating-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .hd .floating-menu li {
  margin: 0;
  padding: 0;
}
body .hd .floating-menu li a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
body .hd .floating-menu.open li a {
  opacity: 1;
  transform: translateX(0);
}
body .hd .floating-menu.open li:nth-child(1) a {
  transition-delay: 0.05s;
}
body .hd .floating-menu.open li:nth-child(2) a {
  transition-delay: 0.1s;
}
body .hd .floating-menu.open li:nth-child(3) a {
  transition-delay: 0.15s;
}
body .hd .floating-menu.open li:nth-child(4) a {
  transition-delay: 0.2s;
}
body .hd .floating-menu li a:hover {
  background: linear-gradient(135deg, #005fcc, #00aaff);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.4);
  transform: scale(1.05);
}
body .horizontal-container {
  display: flex;
  width: fit-content;
  height: 100vh;
}
body .horizontal-container .content {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: 100vh;
}
body .horizontal-container .content .slide {
  flex: 0 0 auto;
  width: 50vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .horizontal-container .content .slide:nth-child(1) {
  background-color: var(--slide-1-bg);
}
body .horizontal-container .content .slide:nth-child(2) {
  background-color: var(--slide-2-bg);
  width: 70vw;
}
body .horizontal-container .content .slide:nth-child(3) {
  width: 30vw;
  background-color: var(--slide-3-bg);
}
body .horizontal-container .content .slide:nth-child(3) .reveal {
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  width: 78%;
  font-size: 2rem;
  color: var(--reveal);
  text-align: center;
}
body .horizontal-container .content .slide:nth-child(3) .reveal .char {
  display: inline-block; /* needed for GSAP transforms */
  white-space: nowrap;
}
body .horizontal-container .content .slide:nth-child(4) {
  width: 70vw;
  background-color: var(--slide-4-bg);
}
body .horizontal-container .content .slide:nth-child(5) {
  background-color: #F4F4F9;
  width: 25vw;
}
body .horizontal-container .content .slide:nth-child(5) h1 {
  font-size: 3rem;
  color: #c2c3c7;
  text-align: center;
}
body .horizontal-container .content .slide:nth-child(5) .dragText {
  position: absolute;
  bottom: 1rem;
  color: #c2c3c7;
}
body .horizontal-container .content .slide:nth-child(5) #project-details-preview-footer {
  display: flex;
  align-items: center;
  gap: 1em;
  position: absolute;
  bottom: clamp(30px, 4vw, 50px);
  width: 14rem;
}
body .horizontal-container .content .slide:nth-child(5) #footer-text {
  width: 4rem;
}
body .horizontal-container .content .slide:nth-child(5) #bar {
  position: relative;
  border-radius: 16px;
  height: 4px;
  flex-grow: 1;
}
body .horizontal-container .content .slide:nth-child(5) #bar #bar-background {
  position: absolute;
  background: gray;
  height: 3px;
  width: 100%;
  opacity: 0.2;
}
body .horizontal-container .content .slide:nth-child(5) #bar #bar-inner {
  width: 0%;
  height: 3px;
  background: #64e1ce;
  transition: width 0.2s ease;
}
body .horizontal-container .content .slide .project-text {
  font-family: "Lato", sans-serif;
  color: white;
}
body .horizontal-container .content .slide .project-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
body .horizontal-container .content .slide .project-text .detailText {
  width: 40vw;
  display: flex;
  gap: 5rem;
}
body .horizontal-container .content .slide .project-text .detailText .description {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 500px;
}
body .horizontal-container .content .slide .project-text .detailText .services {
  margin-bottom: 2rem;
}
body .horizontal-container .content .slide .project-text .detailText .services h4 {
  color: var(--service-h4);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
body .horizontal-container .content .slide .project-text .detailText .services p {
  margin: 0;
  font-size: 1rem;
}
body .horizontal-container .content .slide .project-text .launch-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}
body .horizontal-container .content .slide .project-text .launch-btn .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--dot);
  border-radius: 50%;
  margin-right: 0.75rem;
}
body .horizontal-container .content .slide .project-text .launch-btn:hover {
  background-color: #00ffd5;
  color: black;
}
body .horizontal-container .content .slide .project-media {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121414;
  border-radius: 20px;
  padding: 1rem;
}
body .horizontal-container .content .slide .project-media img {
  width: 60vw;
  height: 70vh;
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  body .hd {
    flex-direction: row;
    position: fixed;
    width: 90vw;
    gap: 20%;
  }
  body .hd .logo {
    width: 8rem;
  }
  body .hd .logo svg {
    width: 8rem;
    height: 4rem;
  }
  body .hd .backButton {
    display: none;
  }
  body .horizontal-container {
    width: 100vw;
  }
  body .horizontal-container .content {
    display: flex;
    flex-direction: column;
  }
  body .horizontal-container .content .slide {
    width: 100vw;
  }
  body .horizontal-container .content .slide .project-text h1 {
    font-size: 2rem;
  }
  body .horizontal-container .content .slide .project-text .detailText {
    width: 85vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body .horizontal-container .content .slide .project-text .detailText .description {
    font-size: 1em;
  }
  body .horizontal-container .content .slide .project-text .launch-btn {
    margin: 0 auto;
    display: block;
    width: 40vw;
  }
  body .horizontal-container .content .slide:nth-child(1) {
    margin-top: 10vh;
    height: 50vh;
  }
  body .horizontal-container .content .slide:nth-child(2) {
    width: 100vw;
    height: 50vh;
  }
  body .horizontal-container .content .slide:nth-child(2) .project-media {
    width: 95vw;
    background-color: transparent;
  }
  body .horizontal-container .content .slide:nth-child(2) .project-media img {
    width: 90vw;
  }
  body .horizontal-container .content .slide:nth-child(3) {
    width: 100vw;
    height: 50vh;
  }
  body .horizontal-container .content .slide:nth-child(3) .reveal {
    font-size: 1.5rem;
  }
  body .horizontal-container .content .slide:nth-child(4) {
    width: 100vw;
    height: 50vh;
  }
  body .horizontal-container .content .slide:nth-child(4) .project-media {
    width: 95vw;
    background-color: transparent;
  }
  body .horizontal-container .content .slide:nth-child(4) .project-media img {
    width: 90vw;
  }
  body .horizontal-container .content .slide:nth-child(5) {
    width: 100vw;
    height: 50vh;
    position: relative;
  }
  body .horizontal-container .content .slide:nth-child(5) .dragText {
    bottom: 5rem;
  }
  body .horizontal-container .content .slide:nth-child(5) #project-details-preview-footer {
    position: absolute;
    bottom: 1rem;
  }
  body .horizontal-container .content .slide .project-media img {
    height: auto;
  }
}

/*# sourceMappingURL=projectBase.css.map */
