

.site-hero-blackfriday {
  margin-top: 20px;
  justify-content: center;
  width: 100%;
}

.site-hero-blackfriday * {
  box-sizing: border-box;
}

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

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

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

.site-hero-blackfriday__header-image--desktop{
    display: none;
}
@media screen and (min-width: 990px) {
  .site-hero-blackfriday__header-image--desktop{
    display: block;
  }
}

.site-hero-blackfriday__header-image--mobile{
    display: block;
}
@media screen and (min-width: 990px) {
  .site-hero-blackfriday__header-image--mobile{
    display: none;
  }
}
.site-hero-blackfriday__item-name {min-height: auto;}
.site-hero-blackfriday__item-image-wrapper{
  max-width: 240px;
  max-height: 130px;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  .site-hero-blackfriday__item-name {min-height: 44px;}
  .site-hero-blackfriday__item-image-wrapper{
    max-width: 240px;
    max-height: 130px;
  }
}
.site-hero-blackfriday__item-image-wrapper img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.site-hero-blackfriday__item-content{

}
.site-hero-blackfriday__item-brand{
  color: rgba(151, 151, 151, 1);
}

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

.site-hero-blackfriday__item-image-wrapper{
  max-width: 240px;        
  max-height: 130px;
}

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

.site-hero-blackfriday__claim-tag:nth-child(odd){
  margin-left: 14px;
}

.site-hero-blackfriday__claim-tag:nth-child(even) {
  margin-right: 14px;
}

.site-hero-blackfriday__claim-text {
  /* Estilos para texto sin formato */
  display: inline;
}

.site-hero-blackfriday__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;
}
.site-hero-blackfriday__button:hover {
  cursor: pointer;
  background-color: var(--color-primary-dark);
}


.site-hero-blackfriday__price {
  /* margin-top:20px; */
  /* display: flex; */
}

.site-hero-blackfriday__price-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-hero-blackfriday__price-before {
  margin: 0;
  margin-top: 24px;
}

.site-hero-blackfriday__price-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-hero-blackfriday__price-inner.strikethrough{
  position: relative;
  margin-left: 24px;
  margin-right: 20px;
  align-self: flex-end;
  bottom: -3px;
}

.site-hero-blackfriday__price-inner.strikethrough *{
  opacity: 0.7;
}

.site-hero-blackfriday__price-inner.strikethrough::after{
  position: absolute;
  content: "";
  opacity: 1;
  top: 50%;
  left: 0;
  transform: rotate(-25deg);
  height: 2px;
  width: 100%;
  background-color: var(--color-primary);
  z-index: 2;
  border-radius: 16px;
  
}

.site-hero-blackfriday__price-inner p {
  margin: 0;
}

.site-hero-blackfriday__price-duration {
  margin: 0;
  margin-top: 8px;
}

.site-hero-blackfriday__price-icon {
  margin-left: auto;
}
.site-hero-blackfriday__price-icon svg path{
  fill: var(--color-light);
}

.hero-banner__bottom{
  align-items: center;
}

.hero-banner__actions{
  width: 100%;
}
@media screen and (min-width: 600px) {
  .hero-banner__actions{
    width: fit-content;
  }
}