* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

@font-face {
  font-family: "MiFuente";
  src: url("font/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  /* 700 es el valor estándar para 'bold' */
  font-style: normal;
}

/* 1. Definimos la variante Regular (Normal) */
@font-face {
  font-family: "MiFuente";
  src: url("font/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  /* 400 es el valor estándar para 'normal' */
  font-style: normal;
}

@font-face {
  font-family: "MiFuente";
  src: url("font/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "MiFuente";
  src: url("font/Gilroy-SemiBold.ttf") format("truetype");
  font-style: normal;
}

/* 2. Definimos la variante Negrita (Bold) */
@font-face {
  font-family: "MiFuente";
  src: url("font/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  /* 700 es el valor estándar para 'bold' */
  font-style: normal;
}

body {
  font-family: "MiFuente", sans-serif;
}

.container-img {
  width: 100%;
  height: 100%;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.container-shadow {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  bottom: 3rem;

  .container-shadow-information {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4.5rem 0rem 0rem 3.5rem;
    background: rgba(255, 255, 255, 0.7);

    h1 {
      font-size: 40px;
      color: #474747;
      .details {
        color: #fe0000;
      }
    }

    p {
      font-weight: 300;
      padding-right: 5rem;

    }

    a {
      width: fit-content;
      text-decoration: none;
      color: white;
      letter-spacing: 1px;
      padding: 1rem;
      background: #fe0000;
      text-align: center;
      font-weight: 400;
      margin-top: 1rem;
    }
  }
}

@media (min-width: 1024px) {
  .container {
    display: flex;

    .container-img {
      width: 100%;
    }

    .container-shadow {
      width: 35%;
      bottom: 0rem;
      right: 15rem;

      .container-shadow-information {
        width: 100%;
        height: 100%;
        gap: 4rem;
        align-items: start;
        justify-content: center;
        padding: 0rem 0rem 0rem 8rem;

        h1 {
          font-weight: 400;
          font-size: 66px;
          line-height: 4.5rem;
        }
        p {
          font-size: 20px;
          line-height: 2rem;
          padding-right: 0;
        }
        a {
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 22px;
          width: 100%;
          padding: 0;
          height: 11%;
          text-align: center;
          letter-spacing: 2px;
        }
      }
    }
  }
}
