{% scope_css %}
/* =========================================
   REWARDS SECTION GENERAL
========================================= */
.cima-rewards-section {
  position: relative;
  background: #f4f4f4;
  padding: 80px 20px 140px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.cima-rewards-bg {
  position: absolute;
  top: -50px;
  right: 0;
  width: 1000px;
  height: 800px;
  background-image: url('no_such_asset_in_module_asset_url');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.cima-rewards-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cima-rewards-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cima-rewards-title {
  margin: 0 0 16px;
  color: #132B3F;
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  line-height: 66px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cima-rewards-text {
  margin: 0;
  width: 499px;
  max-width: 100%;
  color: #132B3F;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
}

/* =========================================
   TABLAS DE PUNTOS
========================================= */
.cima-rewards-tables-wrap {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 45px;
  flex-wrap: wrap;
  width: 100%;
}

.cima-rewards-table {
  position: relative;
  width: 447px;
  height: 358px;
  border-radius: 23px;
  border: 1px solid #132B3F;
  background: #FFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cima-rewards-table-color-bg {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
}

.cima-rewards-table-color-bg--blue {
  left: 0;
  width: 320px;
  background: linear-gradient(180deg, #8FA4B5 0%, #B8C6D1 100%);
  border-right: 1px solid #132B3F;
}

.cima-rewards-table-color-bg--navy {
  right: 0;
  width: 336px;
  background: #132B3F;
  border-left: 1px solid #132B3F;
}

.cima-rewards-table-header {
  position: relative;
  z-index: 2;
  display: flex;
  height: 70px;
  align-items: center;
}

.header-color-area, .header-white-area {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-color-area {
  justify-content: center;
}

/* Anchos cabeceras */
.cima-rewards-table--left .header-color-area { width: 320px; }
.cima-rewards-table--left .header-white-area { flex: 1; }
.cima-rewards-table--right .header-white-area { width: 110px; }
.cima-rewards-table--right .header-color-area { flex: 1; }

.cima-rewards-table-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.cima-rewards-table--left h3 { color: #132B3F; }
.cima-rewards-table--right h3 { color: #FFF; }

/* Lista de filas */
.cima-rewards-list {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cima-rewards-row {
  display: flex;
  height: 56px;
  align-items: center;
  border-bottom: none !important; 
  background-image: none !important;
}

/* Celdas de tabla */
.cima-rewards-col-desc-wrap, .cima-rewards-col-val-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.cima-rewards-col-desc, .cima-rewards-col-val {
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  color: #132B3F;
}

.text-white { color: #FFF; }

/* Alineaciones */
.cima-rewards-table--left .cima-rewards-col-desc-wrap {
  width: 320px;
  padding-left: 30px;
  justify-content: flex-start;
}
.cima-rewards-table--left .cima-rewards-col-val-wrap {
  flex: 1;
  justify-content: center;
}
.cima-rewards-table--right .cima-rewards-col-val-wrap {
  width: 110px;
  justify-content: center;
}
.cima-rewards-table--right .cima-rewards-col-desc-wrap {
  flex: 1;
  padding-left: 20px;
  justify-content: flex-start;
}
.cima-rewards-table--right .cima-rewards-col-desc {
  font-size: 16px;
  line-height: 1.2;
}

/* =========================================
   LÍNEAS PUNTEADAS (SOLUCIÓN DEFINITIVA)
========================================= */

/* Tabla Izquierda (Azul Claro) */
.cima-rewards-table--left .header-color-area,
.cima-rewards-table--left .cima-rewards-col-desc-wrap {
  border-bottom: 1px dashed #7A8E9E; 
}

.cima-rewards-table--left .header-white-area,
.cima-rewards-table--left .cima-rewards-col-val-wrap {
  border-bottom: 1px dashed rgba(19, 43, 63, 0.4); 
}

/* Tabla Derecha (Azul Oscuro) */
.cima-rewards-table--right .header-white-area,
.cima-rewards-table--right .cima-rewards-col-val-wrap {
  border-bottom: 1px dashed rgba(19, 43, 63, 0.4); 
}

.cima-rewards-table--right .header-color-area,
.cima-rewards-table--right .cima-rewards-col-desc-wrap {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3); 
}

/* Quitar bordes a la última fila de ambas tablas */
.cima-rewards-table--left .cima-rewards-row:last-child .cima-rewards-col-desc-wrap,
.cima-rewards-table--left .cima-rewards-row:last-child .cima-rewards-col-val-wrap,
.cima-rewards-table--right .cima-rewards-row:last-child .cima-rewards-col-val-wrap,
.cima-rewards-table--right .cima-rewards-row:last-child .cima-rewards-col-desc-wrap {
  border-bottom: none;
}


/* =========================================
   BOTÓN RECLAMAR
========================================= */
.cima-rewards-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cima-rewards-btn {
  display: flex;
  width: 369px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #132B3F;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cima-rewards-btn:hover {
  opacity: 0.9;
}

/* =========================================
   CREYENTES BLOCK
========================================= */
.cima-creyentes-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cima-creyentes-content {
  flex: 1;
  max-width: 360px;
}

.cima-creyentes-content .cima-rewards-title {
  text-align: left;
  margin-bottom: 24px;
}

.cima-creyentes-grid {
  display: grid;
  width: 564px;
  height: 412px;
  row-gap: 18px;
  column-gap: 18px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cima-creyentes-logo {
  background: #DCE2E6;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cima-creyentes-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .cima-creyentes-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cima-creyentes-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .cima-creyentes-content .cima-rewards-title,
  .cima-creyentes-content .cima-rewards-text {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 950px) {
  .cima-rewards-table {
    width: 100%;
    max-width: 447px;
  }
}

@media (max-width: 768px) {
  .cima-rewards-title {
    font-size: 42px;
    line-height: 48px;
  }

  .cima-creyentes-grid {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  
  .cima-rewards-table--left .cima-rewards-col-desc-wrap { width: 70%; padding-left: 20px; }
  .cima-rewards-table-color-bg--blue { width: 70%; }
  .cima-rewards-table--left .header-color-area { width: 70%; }
  
  .cima-rewards-table--right .header-white-area { width: 30%; }
  .cima-rewards-table-color-bg--navy { width: 70%; }
  .cima-rewards-table--right .cima-rewards-col-val-wrap { width: 30%; }
}

@media (max-width: 480px) {
  .cima-creyentes-grid {
    grid-template-columns: 1fr;
  }
  
  .cima-rewards-btn {
    width: 100%;
    max-width: 300px;
  }
}
{% end_scope_css %}