/* Contenedor del bloque */
.offer-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .offer-item:hover {
    transform: translateY(-5px);
  }
  
  /* Contenido textual */
  .offer-text {
    padding: 2rem 1.5rem 1rem;
    text-align: left;
  }
  
  .offer-text .pretitle {
    display: block;
    color: #099f7a;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .offer-text h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #099f7a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
    min-height: 55px;
  }
  
  .offer-text a {
    font-size: 0.85rem;
    text-decoration: none;
    color: #222;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  /* Icono dentro del bloque */
  .offer-text .icon {
    margin-top: 1rem;
    height: 50px;
    width: auto;
  }
  
  /* Imagen inferior */
  .bottom-image {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: cover;
    margin-top: auto;
  }
  
  /* Asegurar mismo alto en columnas */
  .gb-layout-columns-5 .gb-block-layout-column-inner {
    height: 100%;
    display: flex;
  }
  
  .gb-layout-columns-5 .offer-item {
    height: 100%;
  }
  
  /* Responsive: stack en móvil */
  @media (max-width: 768px) {
    .gb-layout-columns-5 {
      grid-template-columns: 1fr !important;
    }
  
    .gb-layout-column {
      margin-bottom: 2rem;
    }
    .gb-layout-columns-5 .gb-block-layout-column-inner {
      flex-direction: column;
      flex-wrap: wrap;
    }
  }


  .offer-simple-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    height: 100%;
}

.offer-simple-icon img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.offer-simple-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #20303f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offer-simple-text {
    font-size: 0.95rem;
    color: #6d6e71;
    margin-bottom: 1.5rem;
}

.offer-simple-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}
