/*=================== GOOGLE FONTS ==================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
body{
  font-family: Montserrat, sans-serif;
}
/*=================== VARIABLES CSS =================*/
:root {
  /* Colors */
  --first-color: hsl(0, 0%, 100%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /* Font and typography */
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
}

/* Responsive typography */
@media screen and (min-width: 1120px) {
  :root {
    --h2-font-size: 1.5rem;
    --small-font-size: .875rem;
  }
}

/*=================== BASE ==================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html{
  overflow-x: hidden; /* Elimina el scroll horizontal */

}
/* body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;  Elimina el scroll horizontal 

} */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=================== CARD ==================*/
.container-cards {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  padding-block: 2rem;
  width: 100%;
}

.card__container {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Make it responsive */
}

.card__article {
  position: relative;
  overflow: hidden;
 /*  display: flex; */
  justify-content: center;
}

.card__img {
  width: 100%;
  max-width: 328px;
  border-radius: 1.5rem;
}

.card__data {
  width: 280px;
  background-color: var(--container-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
  background: #7a1333;
  
}

.card__title {
  font-size: var(--h2-font-size);
  font-weight: 500;
  color: #c49b88;
  margin-bottom: .75rem;
}

.card__button {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--first-color);
}

.card__button:hover {
  text-decoration: underline;
}

/* Hover animations */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* Card animations */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}

/*=================== BREAKPOINTS ==================*/
@media screen and (max-width: 768px) {
  /* Column layout for smaller screens */
  .card__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .container-cards {
    padding: 1.5rem 1rem;
  }

  /* Smaller font and reduced padding for smaller devices */
  .card__data {
    width: 90%;
    padding: 1rem;
    bottom: -7rem;
  }
  
  .card__title {
    font-size: 1.1rem;
  }
  
  .card__button {
    font-size: .75rem;
  }

  /* Make the header text smaller on smaller screens */
  h2 {
    font-size: 1.5rem;
    padding-top: 100px; /* Adjust padding */
  }
}

@media screen and (min-width: 768px) and (max-width: 1120px) {
  .card__container {
    column-gap: 1.5rem;
    row-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Adjust the image size */
  .card__img {
    max-width: 300px; /* Adjust image size for medium screens */
  }

  .card__data {
    width: 90%; /* Reduce the width of the data box on medium screens */
  }
}

@media screen and (min-width: 1120px) {
  .container-cards {
    height: 60vh;
  }

  .card__img {
    width: 348px;
  }

  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}
