@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-yellow: #fff578;
}
body {
  position: relative;
  background-color: #1d303e;
}
.bg {
  position: absolute;
  width: 100%;
  content: "";
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-1 {
  display: flex;
  justify-content: center;
  padding: 12rem 0 5rem 0;
}
.header {
  max-width: 620px;
}
.header h1,
.header h2 {
  font-weight: 700;
  color: var(--color-yellow);
}
.header h1 {
  font-size: 100px;
  text-decoration: none;
  line-height: 1.2em;
}
.header h2 {
  text-decoration: none;
  font-size: 2.5rem;
}
.content {
  max-width: 726px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

/* ---- Interactive Card ---- */
.interactive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.interactive-card .bg-interactive {
  height: 100%;
  width: 100%;
  background-color: #000000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.27), rgba(0, 0, 0, 0.27)),
    url("assets/DESTACADO_2.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 1s;

  z-index: 0;
}
.interactive-card:hover .bg-interactive,
.interactive-card:focus .bg-interactive {
  transform: scale(1.2);
}
.interactive-card:hover .bg-interactive:before,
.interactive-card:focus .bg-interactive:before {
  display: block;
}
.bg-interactive:before {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(27, 49, 62, 0.5);
}
.interactive-card .icon-hand {
  position: absolute;
  top: 6%;
  right: 3%;
  color: var(--color-white);
  font-size: 2.5rem;
  z-index: 1;
}
.interactive-card .content {
  position: absolute;
  padding: 2.2rem;
  color: var(--color-yellow);
  font-weight: 600;
  z-index: 1;
}
.interactive-card .content h2 {
  color: var(--color-yellow);
  font-size: 62px;
  margin: 0;
  padding: 0;
}
.interactive-card .content p {
  color: var(--color-yellow);
  font-size: 1.8rem;
}
.interactive-card .action {
  background-color: var(--color-yellow);
  padding: 0.6rem 0;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}
.interactive-card .action p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
}
/* ---- Download Card ---- */
.download-card {
  padding: 5rem 0 5rem 0;
}
.download-card h2 {
  color: #fff578;
  font-weight: 700;
  text-decoration: none;
  font-size: 39px;
}
.download-card .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.download-card .item-download {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 212px;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  transition: 0.8s;
}
.download-card .item-download:hover {
  transform: scale(1.1);
}
.download-card .item-download h3 {
  margin: 20px 13px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.4rem;
}
.download-card .item-download p {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-size: 1rem;
  text-align: center;
  padding: 0 0.7rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 600;
}
.download-card .item-download:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
    url("assets/principales-amenazas-de-chiribiquete.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.download-card .item-download:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
    url("assets/los-tepuyes.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.download-card .item-download:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
    url("assets/una-casa-para-todos.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
