

.banner-row {
  margin-top: 20px;
  justify-content: center;
  width: 100%;
  background: 
    linear-gradient(0deg, #000000, #000000),
    radial-gradient(118.95% 467.66% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner-row * {
  box-sizing: border-box;
}

.banner-row__wrapper{
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  max-width: 400px;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  .banner-row__wrapper{
    flex-direction: row;
    max-width: 1282px;
    padding: 20px 35px;
    align-items: center;
  }
}

.banner-row__header{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.banner-row__header svg {
  max-width: 94px;
}
@media screen and (min-width: 990px) {
  .banner-row__header svg {
    max-width: 118px;
    margin-right: 94px;
  }
}

.banner-row__items{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 990px) {
  .banner-row__items{
    flex-direction: row;
  }
}

.banner-row__item{
}
.banner-row__item-image-wrapper{
  max-width: 240px;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  .banner-row__item-image-wrapper{
    max-width: 240px;
  }
}
.banner-row__item-image-wrapper img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-row__item-content{

}
.banner-row__item-brand{
  color: rgba(151, 151, 151, 1);
}

.banner-row__bottom{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 990px) {
  .banner-row__bottom{
    margin-top: 0;
    margin-left: 6%;
  }
}

.banner-row__item-image-wrapper{
  max-width: 240px;
}

.banner-row__claim{
}
.banner-row__claim-tag {
  padding:4px 14px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-dark);
  border-radius: 8px;
  display: block;
  position: relative;
}
.banner-row__claim-tag:not(:first-child) {
  margin-top: -4px;
}

.banner-row__claim-tag:nth-child(odd){
  margin-left: 14px;
}

.banner-row__claim-tag:nth-child(even) {
  margin-right: 14px;
}

.banner-row__claim-text {
  /* Estilos para texto sin formato */
  display: inline;
}

.banner-row__button {
  /* Estilos para el botón */
  display: block;
  padding: 12px 24px;
  background-color: var(--color-primary);
  width: 100%;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: none;
}
.banner-row__button:hover {
  cursor: pointer;
  background-color: var(--color-primary-dark);
}