@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  list-style: none;
  text-decoration: none;
  outline: none;
  font-family: "Poppins";
  color: white;
}

@font-face {
  font-family: "Poppins";
  src: url("../typography/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "PoetsenOne";
  src: url("../typography/PoetsenOne/PoetsenOne-Regular.ttf") format("truetype");
  font-weight: 400;
}
.important-text {
  color: #6201de;
}

.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.styled-text {
  font-family: "PoetsenOne";
}

.section {
  margin-bottom: 2rem;
}

.body- {
  padding: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  border: solid 2px #6201de;
  background: #6201de;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  min-width: 300px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn:hover {
  background: rgb(122.7130044843, 20.0582959641, 253.9417040359);
  box-shadow: 0 4px 12px rgba(98, 1, 222, 0.3);
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.95);
  box-shadow: none;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(25, 24, 24, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.btn:hover:after {
  width: 300px;
  height: 300px;
}

.btn-ghost {
  background: transparent;
  border: solid 2px #6201de;
  color: #6201de;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: #6201de;
  color: white;
  box-shadow: 0 4px 12px rgba(98, 1, 222, 0.3);
  transform: translateY(-2px);
}
.btn-ghost:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 100vh;
  background: #6201de;
  transform: translate(0%, -50%);
  transition: width 0.6s ease;
  z-index: -1;
}
.btn-ghost:hover:after {
  width: 100%;
  pointer-events: none;
}
.btn-ghost:active {
  transform: scale(0.95);
  box-shadow: none;
}

body {
  background-color: #191818;
  overflow-x: hidden;
}

.body-container {
  padding: 1rem;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.section-title {
  font-size: 3rem;
  font-family: "PoetsenOne";
  color: #6201de;
  margin-bottom: 10px;
}

.magic-effect {
  position: relative;
}
.magic-effect::after, .magic-effect::before {
  content: "✦";
  font-size: 2rem;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.magic-effect:hover::before, .magic-effect:active::before {
  opacity: 1;
  top: -30px;
  left: -30px;
  bottom: unset;
  right: unset;
  transform: rotate(360deg);
}
.magic-effect:hover::after, .magic-effect:active::after {
  opacity: 1;
  top: unset;
  left: unset;
  bottom: -30px;
  right: -30px;
  transform: rotate(360deg);
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
.show-up,
.show-down,
.show-left,
.show-right,
.bounce-in,
.rotate-left,
.rotate-right {
  opacity: 0;
}

.animated {
  opacity: 1;
}
.animated.show-up {
  animation: showUp 0.5s forwards;
}
.animated.show-down {
  animation: showDown 0.5s forwards;
}
.animated.show-left {
  animation: showLeft 0.5s forwards;
}
.animated.show-right {
  animation: showRight 0.5s forwards;
}
.animated.bounce-in {
  animation: bounceIn 0.5s forwards;
}
.animated.rotate-left {
  animation: rotateLeft 0.5s forwards;
}
.animated.rotate-right {
  animation: rotateRight 0.5s forwards;
}

/* ---------------------
   Keyframes
--------------------- */
@keyframes showUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes showRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotateLeft {
  0% {
    transform: translateX(-100%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotateRight {
  0% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.profile {
  background: linear-gradient(to bottom right, #6201de 40%, rgb(251, 45, 80));
  margin-bottom: 1rem;
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.profile:hover {
  box-shadow: 0px 2px 15px #6201de;
  transform: translateY(-5px);
}
.profile li:before {
  content: "❖";
  margin-right: 5px;
}
.profile .btn {
  background-color: white;
  border-radius: 100vh;
  color: #6201de;
  border: none;
}
@media screen and (min-width: 700px) {
  .profile {
    max-width: 400px;
  }
}

.profile-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.profile-img {
  width: 120px;
  border-radius: 100vh;
}

.profile-info {
  font-size: 1.2rem;
}
.profile-info h2 {
  font-family: "PoetsenOne";
  letter-spacing: 2px;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}

.cards-container {
  width: 100%;
}
.cards-container:last-child {
  grid-column: span 2;
}

.card {
  background-color: rgb(19.7959183673, 19.0040816327, 19.0040816327);
  border-radius: 15px;
  padding: 0.5rem;
  display: flex;
  gap: 20px;
  border: solid 2px #6201de;
  box-shadow: 5px 5px 0px 0px #6201de;
  letter-spacing: 1px;
  width: 100%;
}
.card img {
  border-radius: 8px;
}
.card .title {
  font-size: 1.5rem;
  color: #6201de;
}
@media screen and (min-width: 700px) {
  .card .title {
    font-size: 1.2rem;
  }
  .card:hover {
    transform: scale(1.1);
    box-shadow: none;
  }
}

.contact-card {
  max-width: 400px;
  align-items: center;
  margin-bottom: 15px;
}
.contact-card img {
  width: 60px;
}

.demos-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.demo-card {
  flex-direction: column;
  max-width: 192.5px;
}
.demo-card img {
  width: 100%;
}

.works-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 700px) {
  .works-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  flex-direction: column;
}
.work-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media screen and (min-width: 700px) {
  .work-card {
    max-width: 323px;
  }
}

.advice {
  padding: 0.5rem;
  width: 250px;
  background-color: white;
  border-radius: 8px;
  margin: auto;
  color: black;
}
.advice .btn {
  padding: 0.5rem;
  border-radius: 5px;
  margin-top: 5px;
}
.advice .btn:hover {
  box-shadow: none;
  transform: none;
  opacity: 0.8;
}
.advice .btn:active {
  transform: none;
}

.card-title {
  font-size: 1.5rem;
}

.advice-text {
  margin-bottom: 0.5rem;
}

.accept-btn {
  background-color: #0990d0;
  border: none;
}

.decline-btn {
  background-color: #9d9d9e;
  border: none;
  color: black;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

#packVideo {
  margin: auto;
  width: 100%;
  border: solid 2px #6201de;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  .hero-section {
    flex-direction: row;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img img {
  width: 100%;
}

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
}
.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}

/* Lista del Slider */
.list {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 5s linear infinite;
  animation-delay: calc(6s / var(--quantity) * (var(--position) - 1)) !important; /* Retraso dinámico según posición */
  background: #191818;
}
.item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.item:hover {
  filter: grayscale(0) !important;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .buttons {
    flex-direction: row;
  }
}

.btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .services-section {
    flex-direction: row;
    gap: 30px;
  }
}

.service-card {
  background-color: rgb(19.7959183673, 19.0040816327, 19.0040816327);
  border: solid 2px #6201de;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  width: 100%;
}
.service-card::after {
  content: "❖";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #6201de;
  pointer-events: none;
  transition: all 0.3s ease;
  line-height: 1;
}
.service-card:hover::after {
  z-index: -1;
  font-size: 7rem;
  color: rgba(0, 0, 0, 0.4);
  transform: rotate(225deg);
}
.service-card:hover {
  background: linear-gradient(to bottom right, #6201de, rgba(98, 1, 222, 0.4));
  border: solid 2px #6201de;
  scale: 1.1;
}
.service-card:hover:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 15px #6201de;
}
.service-card:hover h3 {
  color: white;
}
@media screen and (min-width: 700px) {
  .service-card {
    min-height: 220px;
  }
}

.card-header {
  width: 100%;
  display: flex;
  margin-bottom: 1rem;
}
.card-header img {
  margin: auto;
  width: 40px;
}

.card-title {
  margin-bottom: 0.5rem;
  text-align: center;
}

.portfolio-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .portfolio-section {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    flex-direction: row;
  }
  .portfolio-section .carousel {
    grid-row: span 2;
    grid-column: span 2;
  }
  .portfolio-section .project-info {
    grid-column: 3;
    font-size: 0.85rem;
  }
  .portfolio-section .synthocean {
    grid-column: 3;
    grid-row: 2;
    font-size: 0.95rem;
  }
}

.carousel {
  position: relative;
}

.carousel-images {
  line-height: 0;
}
.carousel-images a {
  animation: autoShow 0.5s ease;
}
.carousel-images a:not(:first-child) {
  display: none;
}
.carousel-images img {
  border-radius: 10px 10px 10px 10px;
  border: solid 2px #6201de;
  width: 100%;
}

.control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  border-radius: 100vh;
  cursor: pointer;
  width: 50px;
}

#prevBtn {
  left: 10px;
}
#prevBtn svg {
  width: 40px;
}

#nextBtn {
  right: 10px;
}
#nextBtn svg {
  width: 40px;
}

.project-info {
  background: linear-gradient(to bottom right, #323232, rgba(50, 50, 50, 0.4));
  border: solid 2px #323232;
  padding: 1rem;
  border-radius: 8px;
}
.project-info:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 15px #323232;
}

.synthocean {
  background: linear-gradient(to bottom right, #0b00e0, rgba(11, 0, 224, 0.4));
  border: solid 2px #0b00e0;
  padding: 1rem;
  border-radius: 8px;
  min-height: 200px;
  position: relative;
}
.synthocean:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 15px #0b00e0;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 700px) {
  .nav-btn {
    flex-direction: row;
    justify-content: center;
  }
  .nav-btn .btn {
    min-width: 300px;
  }
}

footer {
  background-color: #6201de;
  text-align: center;
  font-size: 1.5rem;
}
footer .bold {
  padding-block: 150px;
}
@media screen and (min-width: 700px) {
  footer .bold {
    padding-block: 50px;
  }
}

@keyframes autoShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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