/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Primer bloque - imagen de cabecera */
.header-image img {
  width: 100%;
  height: auto;
}

/* Ocultar imagen mÃ³vil por defecto */
.header-image-mobile {
  display: none;
}

/* Segundo bloque - texto, botÃ³n y pÃ¡rrafos */
.second-block {
  padding: 20px;
  margin: 0 50px;
  text-align: center;
}

.second-block h1 {
  font-weight: 700;
  margin: 60px 20px 0px;
}

.second-block button {
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  color: #af8d8d;
  background-color: transparent;
}

.second-block p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: #212529;
}

/* Tercer bloque - tres imÃ¡genes */
.third-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

.third-block img {
  width: 33.33%;
  height: auto;
  margin: 0;
  padding: 0;
}

.video-block {
  width: 33.33%;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* Cuarto bloque - texto, imagen, botÃ³n */
.fourth-block {
  text-align: center;
}

.fourth-block p {
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 18px;
}

.fourth-block button {
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  color: #af8d8d;
  background-color: transparent;
}

/* Imagen del bloque 4 */
.fourth-block img {
  width: 100%;
  height: auto;
}

/* Ocultar imagen mÃ³vil por defecto en el bloque 4 */
.fourth-image-mobile {
  display: none;
}

/*Estilos nuevos*/
.parrafo-rosa {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 35px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: #af8d8d;
}

.parrafo-rosa-thin {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 35px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: #af8d8d;
}
.margin-top-30px {
  margin-top: 30px;
}
.margin-top-80px {
  margin-top: 80px;
}
.margin-top-20px {
  margin-top: 20px;
}

.parrafo-pequeno {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: #212529;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.espaciador {
  height: 80px; /* Ajusta la altura segÃºn sea necesario */
}

/* Ocultar imagen de escritorio y mostrar la mÃ³vil para pantallas pequeÃ±as */
@media (max-width: 768px) {
  /* Cabecera */
  .header-image-desktop {
    display: none;
  }

  .header-image-mobile {
    display: block;
  }

  .second-block {
    margin: 0px;
    padding: 10px;
  }
  .second-block h1 {
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 18px;
  }
  .second-block button {
    font-size: 14px;
  }
  .second-block p {
    margin-bottom: 0px;
  }
  .third-block {
    display: block;
  }

  .third-block img {
    width: 100%;
    margin-bottom: -4px;
  }
  .video-block {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: -9px;
  }

  .fourth-block p {
    margin-top: 80px;
    margin: 50px 20px;
    font-size: 18px;
  }

  /* Cuarto bloque - mostrar imagen para mÃ³vil y ocultar escritorio */
  .fourth-image-desktop {
    display: none;
  }

  .fourth-image-mobile {
    display: block;
  }
  .parrafo-rosa-thin {
    font-size: 16px;
    line-height: 22px;
    padding: 0px 10px;
  }
  .parrafo-pequeno {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

/*test*/
.third-block-link {
  display: block; /* que se comporte como contenedor */
  text-decoration: none; /* quitar subrayado */
  color: inherit; /* hereda color, evita azules */
}

.third-block-link:visited,
.third-block-link:hover,
.third-block-link:active {
  color: inherit;
  text-decoration: none;
}
