/* https://github.com/AlexCGDesign/menu-css-grid/tree/main */

* {
  box-sizing: border-box;
}

:root {
  --white: #eee;
  --black: #141414;
  --color: navy;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Ubuntu", "Roboto", sans-serif;
  font-size: 1.5rem;
  min-width: 360px;
  /* max-width: 2400px; */
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header-text {
  margin-top: 75px;
  margin-bottom: 40px;
  padding-left: 15px;
  font-size: 2rem;
}

/* === START NAV STYLES === */

.container {
  display: inline;
  margin: 0 auto;
  /* width: 100vw;
  max-width: 2400px; */
}

.nav {
  --state-close: scale(0);
  --state-hamburguer: scale(1);
  --state-menu: translate(-100%);
  padding-right: 25px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0);
  cursor: pointer;
  min-width: 360px;
}

.nav:target {
  --state-menu: translate(0);
  --state-close: scale(1);
  --state-hamburguer: scale(0);
}

.nav__logo {
  z-index: 1000;
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 25px;
}

.nav__hamburguer,
.nav__close {
  z-index: 1000;
  cursor: pointer;
  grid-column: -2/-1;
  grid-row: 1/2;
  transition: 0.4s transform;
}

.nav__hamburguer {
  transform: var(--state-hamburguer);
}

.nav__close {
  transform: var(--state-close);
}

.nav__icon {
  width: 40px;
}

.nav__links {
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  align-content: start;
  justify-content: center;
  margin: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-top: 150px;
  gap: 2em;
  padding-left: 5%;
  transform: var(--state-menu);
  transition: 0.3s transform;
  z-index: 999;
}

.nav__item {
  list-style: none;
}

.nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: inline-block;
}

.nav__link:hover::after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: lightcoral;
  animation-name: ampliar-ancho;
  animation-duration: 0.75s;
}

/* === END NAV STYLES === */

/* === START SLIDER STYLES === */

.slider {
  height: 550px;
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin-top: 25px;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-slider {
  width: 80%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

.card-slider__image {
  width: 150px;
  height: 150px;
  background-image: url("/resources/images/jperegir_500x500px.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 150px;
  margin-left: auto;
  margin-right: auto;
}

.card-slider__image--one {
  background-image: url("/resources/images/jperegir_small.jpg");
}

.card-slider__image--two {
  background-image: url("/resources/images/raoul-droog-yMSecCHsIBc-unsplash.jpg");
}

.card-slider__image--three {
  background-image: url("/resources/images/bisakha-datta-Uw0PjM7WKPQ-unsplash.jpg");
}

.card-slider__person-data {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.card-slider__person-data > p {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}

.card-slider__text p {
  text-align: center;
  margin-top: 0;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}

/* === END SLIDER STYLES === */

.cv-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  min-width: 360px;
}

/* === START HEADER NAME STYLES === */

.name-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === END HEADER NAME STYLES === */

/* Ocultamos controles del mapa leaflet*/
.leaflet-container {
  z-index: 0 !important;
}

.direction-container {
  width: 90%;
  min-width: 300px;
  height: 500px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.7fr 2fr;
  gap: 15px;
  margin-top: 80px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid gray;
  padding: 15px;
  border-radius: 15px;
  background-color: rgba(128, 128, 128, 0.25);
}

.direction-container__data {
  border-radius: 10px;
  margin-bottom: 0;
}

.direction-container__icon {
  font-size: 2rem;
  padding-right: 15px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.direction-container__icon:not(:first-child):hover {
  cursor: pointer;
  transform: scale(1.1);
  color: black;
}

.direction-container__text {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
  margin-bottom: 0;
}

.direction-container__map {
  border-radius: 10px;
  margin-top: 0;
}

.top {
  color: gray;
  text-decoration: none;
}

.link {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  align-content: center;
}

.aboutme-container {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.aboutme-container p {
  text-align: left;
  text-indent: 30px;
  font-size: 1.2rem;
  line-height: 2rem;
}

/* === START EXPERIENCE STYLES === */

.experience-container {
  width: 60vw;
  min-width: 360px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 20% 20% 60%;
  grid-template-rows: repeat(4, 1fr);
  box-sizing: border-box;
  padding: 20px;
}

.experience-line {
  position: relative;
  width: 100%;
  height: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  border-left: 3px solid black;
}

.circle-0 {
  background: black;
  border-radius: 50%;
  margin: 10px;
  height: 20px;
  width: 20px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.experience-line span[class^="circle"] {
  width: 25px;
  height: 25px;
  border: 3px solid white;
  border-radius: 50%;
  background-color: orangered;
  z-index: 440;
}

.experience-year {
  position: relative;
  width: 100%;
  height: 100%;
}

.experience-year p {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 33%;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0;
}

.experience-info {
  position: relative;
  width: 100%;
  height: 100%;
  top: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience-info p {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}

.experience-info p:first-child {
  color: orangered;
  font-weight: 700;
  font-size: 1.25rem;
  background-color: rgba(128, 128, 128, 0.1);
  border-radius: 5px;
  padding: 10px;
}

/* === END EXPERIENCE STYLES === */

/* === START SKILLS STYLES === */

.skills-section {
  margin-left: 25px;
  margin-right: 25px;
}

.skills-container {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.skill-item {
  width: 100%;
  height: 2rem;
  background-color: grey;
  border-radius: 10px;
}

.skill-item-progress-bar {
  height: 100%;
  background-color: orangered;
  border-radius: 10px;
  position: relative;
  transition: all 1s;
}

.skill-item-progress-bar span {
  position: absolute;
  top: 5px;
  right: 0;
  color: white;
}

.skills-container > p {
  margin-top: 20px;
  margin-bottom: 10px;
}

.stack-container {
  width: 100%;
  min-width: 360px;
  height: 900px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 25px;
}

.stack-card {
  height: 250px;
  width: 300px;
  min-width: 300px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 20% 80%;
  padding: 15px;
  border-radius: 15px;
  grid-template-areas:
    "header header"
    "left right";
  background-color: rgba(128, 128, 128, 0.25);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.stack-card__header {
  grid-area: header;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.stack-card__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stack-card__left img {
  height: 80px;
}

.stack-card__left h3 {
  height: 100%;
  margin: 0;
  font-size: 2rem;
}

.stack-card__right ul {
  width: 100%;
  height: 100%;
  border-left: 2px solid orangered;
  padding-left: 20px;
  font-size: 1.2rem;
}

.stack-card__right {
  grid-area: right;
}

.stack-card__right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stack-card__right ul li {
  list-style: none;
  padding: 5px;
}

/* === END SKILLS STYLES === */

/* === START ACCORDION & LIBRARIES PROJECTS STYLES === */

.projects-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}

.projects-container__des p,
.libs-container__des p {
  text-align: left;
  text-indent: 30px;
  font-size: 1.2rem;
  line-height: 2rem;
}

.libs-container__des p {
  margin-top: 50px;
}

.proj-summary,
.libs-summary {
  font-weight: 700;
  padding-left: 25px;
  color: rgba(0, 0, 0, 0.75);
  margin-top: 50px;
  padding: 5px 15px;
  background-color: rgba(255, 69, 0, 0.8);
  border-radius: 10px;
}

.proj-summary:hover,
.libs-summary:hover {
  color: rgba(0, 0, 0, 1);
  background-color: rgba(255, 69, 0, 1);
}

.border-summary {
  border-top: 2px solid orangered;
  border-left: 2px solid orangered;
  border-right: 2px solid orangered;
}

.border-list {
  border-bottom: 2px solid orangered;
  border-left: 2px solid orangered;
  border-right: 2px solid orangered;
}

.projects-container__list {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 40px;
}

.projects-container__list li {
  margin-bottom: 10px;
  list-style-type: square;
  padding: 10px;
}

.card-libs-container {
  width: 90%;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 20px;
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box-card {
  background-color: transparent;
  width: 120px;
  height: 120px;
  /* border: 1px solid #f1f1f1; */
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box-card:hover .flip-box-card__inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-card__front,
.flip-box-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Style the front side (fallback if image is missing) */
.flip-box-card__front {
  background-color: azure;
  color: black;
  /* background-image: url(/resources/images/gsap.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Style the back side */
.flip-box-card__back {
  background-color: lavenderblush;
  color: white;
  transform: rotateY(180deg);
  /* background-image: url(/resources/images/gsap.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flip-box-card__back h3 {
  font-size: 1rem;
}

.flip-box-card__front--img1 {
  background-image: url(/resources/images/greenshok.png);
}

.flip-box-card__back--img1 {
  /* background-image: url(/resources/images/greenshok.png); */
  color: #141414;
}

.flip-box-card__front--img2 {
  background-image: url(/resources/images/chartjs.png);
}

.flip-box-card__back--img2 {
  /* background-image: url(/resources/images/chartjs.png); */
  color: #141414;
}

.flip-box-card__front--img3 {
  background-image: url(/resources/images/datatables.png);
}

.flip-box-card__back--img3 {
  /* background-image: url(/resources/images/datatables.png); */
  color: #141414;
}

.flip-box-card__front--img4 {
  background-image: url(/resources/images/fullcalendar.png);
}

.flip-box-card__back--img4 {
  /* background-image: url(/resources/images/fullcalendar.png); */
  color: #141414;
}

.flip-box-card__front--img5 {
  background-image: url(/resources/images/sheetjs.png);
}

.flip-box-card__back--img5 {
  /* background-image: url(/resources/images/sheetjs.png); */
  color: #141414;
}

.flip-box-card__front--img6 {
  background-image: url(/resources/images/tesseractjs.png);
}

.flip-box-card__back--img6 {
  /* background-image: url(/resources/images/tesseractjs.png); */
  color: #141414;
}

.flip-box-card__front--img7 {
  background-image: url(/resources/images/bootstrap.png);
}

.flip-box-card__back--img7 {
  color: #141414;
}

.flip-box-card__front--img8 {
  background-image: url(/resources/images/swal.png);
}

.flip-box-card__back--img8 {
  color: #141414;
}

.flip-box-card__front--img9 {
  background-image: url(/resources/images/vitest.png);
}

.flip-box-card__back--img9 {
  color: #141414;
}

.flip-box-card__front--img10 {
  background-image: url(/resources/images/docker.png);
}

.flip-box-card__back--img10 {
  color: #141414;
}

.close-projectsList,
.close-libsList {
  background-image: url(/resources/icons/chevron-up.svg);
  background-position: left;
  background-repeat: no-repeat;
  width: 100%;
  height: 25px;
  background-color: rgb(128, 128, 128, 0.5);
  border-radius: 5px;
  cursor: pointer;
}

/* === END ACCORDION & LIBRARIES PROJECTS STYLES === */

/* === START EDUCATION STYLES === */

.education-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.separator-container {
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.1px;
}

.education-container h3 {
  width: 100%;
  text-align: center;
  padding: 5px;
  color: gray;
  margin: 0;
}

.separator-container--secondary {
  margin-top: 100px;
}

.separator {
  border: 0;
  width: 80vw;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.education-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.education-card:not(:first-child) {
  margin-top: 0;
}

.education-card p {
  margin-top: 15px;
}

.education-card p:first-child {
  margin-bottom: 0;
}

.education-card__year {
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.8);
}

.education-card__year:after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px solid orangered;
  margin-bottom: 10px;
  padding-top: 5px;
}

.education-card__academic-title {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.education-card__academy {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 25px;
}

/* === END EDUCATION STYLES === */

/* === START SERVICES STYLES === */
.services-container {
  height: 850px;
  width: 80%;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  align-items: start;
  gap: 15px;
}

.service-card {
  height: 250px;
  min-width: 320px;
  display: grid;
  grid-template-areas:
    "header-image"
    "header-title"
    "body";
  grid-template-columns: 1fr;
  grid-template-rows: 20% 20% 60%;
  justify-content: center;
  align-items: center;
  background-color: rgba(128, 128, 128, 0.25);
  border-radius: 15px;
  padding: 15px;
  gap: 10px;
}

.service-card__icon {
  grid-area: header-image;
  font-size: 4rem;
  text-align: center;
  padding-top: 15px;
}

.service-card__title {
  grid-area: header-title;
}

.service-card__title h3 {
  text-align: center;
  font-size: 1.5rem;
}

.service-card__desc {
  grid-area: body;
}

.service-card__desc p {
  text-align: center;
  font-size: 1.25rem;
}

.service-card__desc::before {
  content: "";
  display: block;
  width: 50%;
  border-bottom: 2px solid orangered;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
}

/* === END SERVICES STYLES === */

/* === START STICKY MENU STYLES === */

nav.sticky {
  padding: 0;
  /* background-color: rgba(0, 0, 0); */
  border-bottom: 6px solid #ffcc66;
  transition: 1s;
}

/* === END STICKY MENU STYLES === */

/* === START BUTTON ANIMATED MENU STYLES === */

.btn-wrapper {
  width: 300px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.btn-wrapper__link {
  font-size: 1.4rem;
  font-weight: bold;
  color: orangered;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.15rem;
}

.btn-wrapper__link span,
.btn-wrapper__link i {
  position: relative;
}

.btn-wrapper__link i {
  margin-left: 0.5em;
}

.btn-wrapper__link .color {
  width: 2.2em;
  height: 2em;
  border-radius: 2em;
  background-color: var(--color);
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: -0.65em;
  z-index: -1;
}

.cv-btn-container {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 25px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.btn-show {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: crimson;
  text-align: center;
}

.btn-show img {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}

.btn-hide {
  display: none;
}

/* === END BUTTON ANIMATED MENU STYLES === */

/* === START SCROLL TOP BUTTON STYLES === */

.scroll-btn {
  background-image: url(/resources/icons/chevron-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(255, 69, 0, 0.5);
  position: fixed;
  bottom: 10%;
  right: 10%;
  border-radius: 50%;
  transition: opacity 0.5s, transform 0.5s;
}

.scroll-btn.show {
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

/* === END SCROLL TOP BUTTON STYLES === */

.pie {
  display: flex;
  height: 60px;
  background-color: #383838;
  color: rgba(255, 255, 255, .5);
  font-size: 0.9rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

@media (min-width: 768px) {
  .name-container {
    width: 75%;
    & img {
      width: 60%;
    }
  }

  .nav {
    --state-hamburguer: scale(0);
    --state-menu: translate(0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 450;
    transition: 1s;
  }

  .nav:hover {
    opacity: 1;
  }

  .nav:target {
    --state-close: scale(0);
  }

  .nav__links {
    padding: 0;
    background-color: unset;
    position: unset;
    gap: 0.9em;
    grid-auto-flow: column;
    transform: unset;
    grid-column: -2/-1;
    grid-row: 1/2;
    float: right;
    margin-right: 50px;
    height: 15px;
  }

  .nav__link {
    font-size: 1rem;
    letter-spacing: none;
  }

  nav.sticky {
    padding: 10px 50px;
  }

  .btn-wrapper {
    width: 400px;
    height: 80px;
  }

  .link {
    font-size: 2rem;
  }

  .slider {
    height: 300px;
  }

  .card-slider {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 3fr;
  }

  .card-slider__image {
    width: 200px;
    height: 200px;
  }

  .card-slider__person-data h3 {
    width: 80%;
    text-align: left;
  }

  .card-slider__person-data p {
    width: 80%;
    text-align: left;
    margin-top: 0;
  }

  .cv-container {
    margin-top: 250px;
  }

  .aboutme-container p {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .education-card__year {
    font-size: 1.5rem;
  }

  .education-card__academic-title {
    font-size: 1.5rem;
  }

  .education-card__academy {
    font-size: 1.25rem;
  }

  .experience-year p {
    font-size: 1.5rem;
  }

  .experience-info p {
    font-size: 1.5rem;
  }

  .experience-info p:first-child {
    font-size: 1.5rem;
  }

  .card-libs-container {
    width: 80%;
    height: 800px;
    margin-top: 100px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .flip-box-card {
    width: 150px;
    height: 150px;
  }

  .direction-container {
    width: 80%;
    min-width: 800px;
    height: 500px;
    margin-top: 100px;
    margin-bottom: 150px;
    grid-template-rows: 0.5fr 3fr;
  }

  .flip-box-card__back h3 {
    font-size: 1.2rem;
  }

  .direction-container__data {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .direction-container__data-item {
    border-left: 2px solid black;
    padding-left: 10px;
  }

  .direction-container__text {
    font-size: 1.5rem;
  }

  .stack-container {
    width: 80%;
    height: 300px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    margin-top: 60px;
  }

  .stack-card {
    max-width: 550px;
  }

  .services-container {
    width: 90%;
    height: 450px;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
  }

  .service-card {
    height: 300px;
    width: 250;
    min-width: 250px;
    gap: 20px;
  }

  .service-card__title h3 {
    font-size: 1.5rem;
  }

  .service-card__desc {
    height: 200px;
  }

  .service-card__desc p {
    font-size: 1.25rem;
    padding: 15px;
  }
}

@keyframes ampliar-ancho {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
