/* =====================================================
   ESTADO ACTIVO OVERARG
   VERSIÓN LIMPIA — DIRECCIÓN VISUAL DEFINITIVA
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/* =====================================================
   BASE & FIX DE FRANJA SUPERIOR
   ===================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Elimina cualquier aire arriba del header en todas las páginas */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #eae5dc;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* FIX HEADER PEGADO AL TECHO FIJO */
header, .header-overarg, .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 60px !important;
  z-index: 99999 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =====================================================
   CONTENEDOR PRINCIPAL DEL BANNER (GRILLA ANCHA PARA CAMIÓN)
   ===================================================== */

.estado-overarg {
  position: relative !important;
  
  width: 92% !important;
  max-width: 1320px !important;
  
  margin: 18px auto 12px auto !important;

  display: grid;
  /* Ampliamos la columna izquierda a 280px para que el camión no se pegue */
  grid-template-columns: 280px minmax(0, 1fr) 410px;
  align-items: center;

  background: radial-gradient(ellipse at top, #0d1f1b 0%, #060d0b 100%) !important;
  border: 1px solid rgba(39, 200, 208, .25) !important;
  border-radius: 16px !important;

  padding: 14px 35px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
  z-index: 1 !important;

  color: #ffffff;
}

/* =====================================================
   1. ACTUALIZADO HOY (CON MÁS AIRE AL SEPARADOR)
   ===================================================== */

.estado-actual {
  min-width: 0;
  padding-right: 22px; 
  display: flex;
  flex-direction: column;
}

.estado-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.head-live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot-online {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, .8);
  animation: pulse-green-active 2s infinite ease-in-out;
}

@keyframes pulse-green-active {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .85);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.estado-actual small {
  color: #27c8d0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.15px;
  white-space: nowrap;
}

.estado-actual strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  white-space: nowrap;
}

.estado-actual p {
  margin-top: 7px;
  color: #a0b2ac;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
}



/* =====================================================
   2. BENEFICIOS VIGENTES (PADDING EQUILIBRADO)
   ===================================================== */

.estado-beneficios {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid rgba(39, 200, 208, .25);
  border-right: 1px solid rgba(39, 200, 208, .25);
  padding: 0 20px;
  margin: 0;
}

.titulo-con-lineas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 13px;
}

.titulo-con-lineas h3 {
  color: #27c8d0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.7px;
  white-space: nowrap;
}

.titulo-con-lineas .linea {
  width: 25px;
  height: 1px;
  flex: 0 0 25px;
  background: rgba(229, 211, 179, .20);
}

.beneficios-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.beneficio {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-overarg {
  width: 34px;
  height: 26px;
  flex: 0 0 34px;
  color: #E5D3B3;
  stroke: currentColor;
}

.beneficio .txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.beneficio strong {
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1.2;
  white-space: nowrap;
}

.beneficio small {
  color: #a0b2ac;
  font-size: 8.5px;
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.2;
  white-space: nowrap;
}


/* =====================================================
   3. PROMOCIÓN + CONTADOR
   ===================================================== */

.promo {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-left: 25px;
}

.promo-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promo h4 {
  color: #27c8d0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.sub-fecha {
  display: block;
  color: #a0b2ac;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .5px;
  white-space: nowrap;
}


/* =====================================================
   CONTADOR EDITORIAL
   ===================================================== */

.reloj-minimal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  flex-shrink: 0;
}

.num-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 31px;
}

.num-box b {
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.6px;
}

.num-box small {
  margin-top: 5px;
  color: #a0b2ac;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .8px;
}

.dots {
  color: rgba(255, 255, 255, .45);
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
}


/* =====================================================
   RESPONSIVE: 431px — 900px
   ===================================================== */

@media (min-width: 431px) and (max-width: 900px) {

  .estado-overarg {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 18px;
  }

  .estado-actual {
    padding-right: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(229, 211, 179, .15);
  }

  .estado-top {
    justify-content: space-between;
  }

  .estado-actual p {
    margin-top: 5px;
  }

  .beneficios {
    padding: 0 0 12px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(229, 211, 179, .15);
  }

  .beneficios-items {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .beneficio {
    flex: 1 1 0;
    min-width: 0;
    gap: 6px;
  }

  .beneficio .txt {
    min-width: 0;
  }

  .icon-overarg {
    width: 26px;
    height: 20px;
    flex: 0 0 26px;
  }

  .beneficio strong {
    font-size: 9.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .beneficio small {
    font-size: 8px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .promo {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .promo-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo h4 {
    font-size: 10px;
  }

  .sub-fecha {
    font-size: 8px;
  }

  .reloj-minimal {
    gap: 6px;
    flex-shrink: 0;
  }

  .num-box {
    min-width: 28px;
  }

  .num-box b {
    font-size: 24px;
  }

  .num-box small {
    font-size: 7px;
  }

  .dots {
    font-size: 16px;
  }
}


/* =====================================================
   RESPONSIVE: HASTA 430px
   ===================================================== */

@media (max-width: 430px) {

  .estado-overarg {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    padding: 12px 14px;
    gap: 10px;
  }

  .estado-actual {
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(229, 211, 179, .15);
  }

  .estado-top {
    align-items: center;
  }

  .estado-actual small {
    font-size: 9px;
  }

  .estado-actual strong {
    font-size: 12px;
  }

  .estado-actual p {
    margin-top: 5px;
    font-size: 9px;
  }

  .beneficios {
    padding: 0 0 10px;
    border: none;
    border-bottom: 1px solid rgba(229, 211, 179, .15);
  }

  .titulo-con-lineas {
    margin-bottom: 10px;
  }

  .titulo-con-lineas h3 {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .titulo-con-lineas .linea {
    width: 20px;
    flex-basis: 20px;
  }

  .beneficios-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .beneficio {
    width: 100%;
    flex: none;
    gap: 8px;
  }

  .icon-overarg {
    width: 26px;
    height: 20px;
    flex: 0 0 26px;
  }

  .beneficio .txt {
    min-width: 0;
  }

  .beneficio strong {
    font-size: 10px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .beneficio small {
    font-size: 8.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .promo {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .promo-info {
    align-items: center;
    text-align: center;
  }

  .promo h4 {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 3px;
  }

  .sub-fecha {
    font-size: 8px;
  }

  .reloj-minimal {
    gap: 5px;
  }

  .num-box {
    min-width: 28px;
  }

  .num-box b {
    font-size: 22px;
  }

  .num-box small {
    margin-top: 4px;
    font-size: 6.5px;
  }

  .dots {
    font-size: 15px;
  }
}
/* ESPACIO PARA QUE EL CONTENIDO NO SE SOLAPE CON EL HEADER FIJO Y EL BANNER */
body {
  padding-top: 60px !important;
}