/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  /** Reset para REMS - 62.5% = 10px de 16px **/
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  color: var(--color-plomo);
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  position: relative;
}
html h1 {
  font-size: 3.4rem;
}

html h2 {
  font-size: 3rem;
}

html h3 {
  font-size: 2.4rem;
}

html h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  max-width: 100%;
  width: 100%;
}
figure {
  margin: 0;
  padding: 0;
}

/**COLORES**/
:root {
  --color-plomo: #252a34;
  --color-gris: #696969;
  --color-amarillo: #f4ae13;
  --color-blanco: #ffffff;
}

/**--------------------TRACKING-----------------**/

.tracking-contenedor {
  background-image: url(../img/fondo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.tracking {
  border-radius: 2rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 3rem 3rem 2rem 3rem;
  max-width: 45rem;
  position: relative;
}
.tracking-logo {
  padding: 1rem 2rem 0 2rem;
  text-align: center;
}
.tracking-logo img {
  max-width: 40rem;
  max-height: 15rem;
}
.tracking-rs {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 1rem 0;
  text-align: center;
  font-weight: 400;
}
.tracking-titulo {
  font-size: 2.2rem;
  text-align: center;
  margin: 5rem 0 2rem 0;
  font-weight: 600;
}
.label {
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
}
.formulario-tracking-titulo {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.formulario-tracking-titulo__texto {
  font-size: 1.5rem;
  font-weight: 600;
}
.formulario-tracking-titulo__icono {
  width: 1.6rem;
  height: 1.6rem;
}
.input {
  border-radius: 1rem;
  border: 1px solid #dadada;
  background: #fff;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  font-size: 1.6rem;
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 1rem 1rem;
}
.input:focus {
  outline-color: none;
}
.input-orden {
  background-image: url(../img/iconos/orden.svg);
}
.input-codigo {
  background-image: url(../img/iconos/codigo.svg);
  background-size: 1.9rem;
}
.boton {
  border-radius: 1rem;
  background: var(--color-amarillo);
  border: none;
  font-size: 1.8rem;
  padding: 1.2rem;
  width: 100%;
  text-decoration: none;
  color: var(--color-plomo);
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.boton__icono {
  width: 1.8rem;
}
.boton__texto {
  font: 1.8rem;
  font-weight: 600;
}
.rastrear-qr {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 400;
}
.rastrear-qr__link {
  text-decoration: none;
  color: var(--color-plomo);
  font-weight: 700;
}
/**BOTON AYUDA**/
.boton-ayuda {
  cursor: pointer;
}

.popup {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  width: 250px;
  z-index: 100;
  top: 100%;
  left: 1.6rem;
  margin-top: 0.4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.popup.visible {
  display: block;
}

/**------------------PAGINA DE SEGUIMIENTO DE ENVÍO-------------------**/

.body-envio {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
}
.envio-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}
.envio-header__logo {
  text-align: center;
}
.envio-header__logo img {
  width: 25rem;
  max-height: 15rem;
}
.envio-header-titulo__titulo {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
}
.envio-header-titulo__subtitulo {
  margin: 0.5rem 0 0 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .envio-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
  }
  .envio-header-titulo__titulo {
    text-align: right;
  }
  .envio-header-titulo__subtitulo {
    text-align: right;
  }
}
/*-----MAIN DE ENVÍO-----*/
.main-envio {
  display: grid;
  gap: 2rem;
  width: 90%;
  margin: 0 auto 0 auto;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .main-envio {
    grid-template-columns: 4fr 6fr;
    gap: 2rem;
    align-items: first baseline;
  }
}
@media (min-width: 1024px) {
  .main-envio {
    grid-template-columns: 5fr 6fr;
    gap: 3rem;
  }
}

/*---------ESTADO DE ENVÍO-----------*/
.estado-envio {
  background-color: var(--color-blanco);
  padding: 2rem 2rem;
  border-radius: 1rem;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
}

.estado-envio__titulo {
  font-size: 2rem;
  margin: 1rem 0;
  padding: 0 1.5rem;
}

.estado-envio-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  gap: 0.8rem;
}

.fondo-gris-estado-envio {
  border-radius: 1rem;
  background-color: #f8f8f8;
}
.estado-envio-data:not(:first-child)::after {
  content: "";
  position: absolute;
  right: 25px;
  top: -32px;
  width: 5px;
  height: 80px;
  background-color: #f4a900;
  z-index: 1;
}

@media (max-width: 412px) {
  .estado-envio-data:not(:first-child)::after {
    content: "";
    position: absolute;
    right: 25px;
    top: -40px;
    width: 5px;
    height: 110px;
    background-color: #f4a900;
    z-index: 1;
  }
}

.estado-envio-data.desactivado:not(:first-child)::after {
  filter: grayscale(1) brightness(0.95) !important;
  opacity: 0.7;
}

.estado-envio-data:first-of-type::after {
  display: none !important;
}
.estado-envio-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.estado-envio-item__icono {
  width: 4rem;
}
.desactivado .estado-envio-item__icono {
  opacity: 0.2;
  filter: grayscale(1) brightness(0.95) !important;
}
.estado-envio-item__bloque-titulo {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.desactivado .estado-envio-item__bloque-titulo {
  color: rgb(180, 180, 180);
  opacity: 0.8;
}
.estado-envio-item__bloque-detalle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
}

.estado-envio-item__bloque-detalle--icono {
  width: 1.6rem;
}
.desactivado .estado-envio-item__bloque-detalle--icono {
  opacity: 0.2;
  filter: grayscale(1) brightness(0.95) !important;
}
.estado-envio-item__bloque-detalle--texto {
  font-size: 1.5rem;
  margin: 0;
  color: #7c7c7c;
  line-height: 1.2;
  font-weight: 400;
  margin-right: 0.5rem;
}
.desactivado .estado-envio-item__bloque-detalle--texto {
  color: rgb(180, 180, 180);
  opacity: 0.8;
}
.estado-envio-icono {
  min-width: 3rem;
  width: 3rem;
}

.estado-envio-icono img {
  min-width: 3rem;
  width: 3rem;
  position: relative;
  z-index: 200;
}
.estado-envio-data.desactivado .estado-envio-icono img {
  filter: grayscale(1) brightness(0.95) !important;
  opacity: 0.92;
}
@media (min-width: 768px) {
  .estado-envio {
    order: 2;
    border-radius: 2rem;
  }
}
@media (min-width: 1024px) {
  .estado-envio__titulo {
    font-size: 2.2rem;
  }
}
/*--INFORMACIÓN DE ENVÍO--*/

.envio-info {
  background-color: var(--color-blanco);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.envio-info__titulo {
  font-size: 2rem;
  margin: 1rem 0;
  padding: 0 1.5rem;
}
.envio-info-data {
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
}
.envio-info-data.fondo-gris-info-envio {
  background-color: #f8f8f8;
}
.envio-info-data__titulo {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
  font-size: 700;
}
.envio-info-data__descripcion {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
}
.tres-filas-info-envio {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fila-info-envio__icono img {
  width: 2.8rem;
}
.envio-info-data__estado-de-pago {
  display: inline-block;
  margin: 0;
  padding: 0.3rem 1.5rem;
  margin-right: 1rem;
  border-radius: 0.8rem;
  line-height: 1.2;
  color: var(--color-blanco);
}
.envio-info-data__estado-de-pago--verde {
  background: #0ebc93;
}
.envio-info-data__estado-de-pago--gris {
  background: #7c7c7c;
}
.envio-info-data__comprobante-contenedor {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.5rem;
  flex-basis: auto;
  max-width: 20rem;
}
.envio-info-data__comprobante-contenedor--icono {
  width: 1.7rem;
  height: 1.7rem;
}
.envio-info-data__comprobante-contenedor--icono-descarga {
  width: 1.6rem;
  height: 1.6rem;
}
.envio-info-data__comprobante {
  color: #7c7c7c;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1;
  margin-right: 0.5rem;
}
.otra-consulta {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .envio-info {
    order: 1;
    border-radius: 2rem;
  }
}
@media (min-width: 1024px) {
  .envio-info__titulo {
    font-size: 2.2rem;
  }
}

/**-------------FOOTER-------------**/
.footer {
  padding: 3rem 0 1.5rem 0;
  text-align: center;
  width: 90%;
  margin: 0 auto 0 auto;
  max-width: 1000px;
}
.footer p {
  margin: 0;
}
.footer a {
  text-decoration: none;
  color: var(--color-amarillo);
  font-weight: 700;
}
