@import url("./default.css");

.c-logo {
    width: 250px;
    height: auto
}

@media (max-width: 768px) {
    .c-logo {
        width: 170px;
    }
    .c-padding-horizontal-mobile {
        padding-left: 10px;
        padding-right: 10px;
    }
    .c-padding-left-mobile {
        padding-left: 10px;
    }
    .c-padding-right-mobile {
        padding-right: 10px;
    }
}

.c-top-gradient {
    height: 8px;
    width: 100%;
    background: linear-gradient(to left, #ff2808, #EF9D4E, #ff2808);
}

.c-container {
    max-width: 724px;
    margin: 0 auto;
}

.c-section {
    width: 100%;
}

.c-header-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to left, #FF5600, #F33821);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-header-social i {
    color: #fff;
    font-size: 24px;
}

/* Components */

.c-logo__image {
  margin: 0 auto;
}

.c-logo__title {
  text-align: center;
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-logo__title,
.c-logo__description {
  color: #212121;
}

.c-logo__description {
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}

.c-logo__emoji {
  color: #e15711;
}

.c-categories {
    padding-top: 2rem;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  column-gap: 12px;
  width: 100%;
  background: #fff;
  color: #fff;
  transition: transform 0.15s cubic-bezier(0.26, -0.27, 0.5, 3) 0s;
}

.c-button__footer {
    background: var(--color-blue);
    border-radius: .4rem;
    padding: 12px 24px;
}

.c-button__footer > span {
    font-size: 1.2rem;
    font-weight: 600;
}

.c-button__footer > i {
    font-size: 1.2rem;
}

.c-button__whatsapp {
    margin-top: 1.4rem;
    background: linear-gradient(to left, #399D4B, #2C8A3D, #399D4B);
}

.c-button:hover {
  transform: scale(1.03);
}

.c-main-section {
    background:linear-gradient(to bottom, #FFC885 0%, #fff 40%, #fff, #fff 100%);
}

.c-footer {
    background: rgba(255, 238, 227, .32);
}

.c-products__title {
    margin-bottom: 1.2rem;
}
.c-products__title h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.c-products__title p {
    text-align: center;
    margin-top: .3rem;
    font-weight: 500;
}

.c-product {
    width: 150px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.c-product__image {
    border-radius: 12px; width: 135px; height: 124px; padding: 8px
}

.c-product__image img {
    object-fit: cover;
}

.c-product__infos {
    padding: 8px;
    margin-bottom: 12px;
}

.c-product__title {
    font-size: .9rem;
    font-weight: 500;
}
.c-product__old-price {
    margin-top: 12px;
}
.c-product__old-price p {
    font-size: .8rem;
    font-weight: 400;
    text-decoration: line-through;
    color: #868686;
}

.c-product__price {
    display: flex;
    gap: .3rem;
}

.c-product__price__new {
    color: var(--color-green);
}

.c-product__price__discount {
    background: var(--color-red-accent);
    color: var(--color-red);
    font-size: .6rem;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 12px;
    align-self: center;
}

.c-product__button-buy {
    background: var(--color-blue);
    border-radius: 0 0 .4rem .4rem;
}

.c-brand {
    width: 190px;
    height: 60px;
    border-radius: 20px;
    background: #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-brand img {
    width: auto;
}

.c-margin-top {
    padding-top: 1rem;
}

.c-margin-bottom {
    padding-bottom: 1rem;
}

.swiper-button-next, .swiper-button-prev {
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow);
    width: 32px;
    height: 32px;
}
.swiper-button-next i, .swiper-button-prev i {
    font-size: 1rem;
    color: var(--color-primary);
}

.swiper-navigation-icon {
    display: none!important;
}

.swiper-button-disabled {
    display: none!important;
}