html {
    scroll-behavior: smooth;
}
body {
  margin: 0 auto;
}

.site-main {
    position: relative;
    overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
}.produtos-destaque-section {
    padding: 30px 0 40px;
    background: #EBF3F5;
}

.produtos-destaque__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #2B2E34;
    text-align: center;
    margin: 0 0 30px 0;
}

.produtos-destaque__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
}

@media (min-width: 640px) {
    .produtos-destaque__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (min-width: 1024px) {
    .produtos-destaque-section {
        padding: 50px 0 60px;
    }

    .produtos-destaque__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .produtos-destaque__grid {
        gap: 30px 15px;
    }
}

@media (min-width: 1270px) {
    .produtos-destaque__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1300px) {
    .produtos-destaque__grid {
        gap: 50px 18px;
    }
}

@media (min-width: 1440px) {
    .produtos-destaque-section {
        padding: 60px 0 100px;
    }
}.sobre-section {
    background: #EBF3F5;
    padding: 0 0 50px;
}

.sobre-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sobre-logo {
    flex-shrink: 0;
}

.sobre-logo img {
    width: 200px;
    height: auto;
    display: block;
}

.sobre-content {
    width: 100%;
}

.sobre-titulo {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 28px;
    color: #FB3099;
    margin: 0 0 10px 0;
}

.sobre-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #2B2E34;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.sobre-texto {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .sobre-section {
        padding: 0 0 70px;
    }

    .sobre-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .sobre-logo img {
        width: 250px;
    }

    .sobre-titulo {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .sobre-subtitulo {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .sobre-texto {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .sobre-section {
        padding: 0 0 115px;
    }

    .sobre-wrapper {
        gap: 10px;
    }

    .sobre-logo img {
        width: 315px;
        height: 229px;
    }

    .sobre-content {
        max-width: 786px;
    }

    .sobre-titulo {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .sobre-subtitulo {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .sobre-texto {
        font-size: 20px;
    }
}.fale-conosco-section {
    background: #FFFFFF;
    padding: 40px 0 50px;
}

.fale-conosco-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.fale-conosco__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #2B2E34;
    margin: 0;
    line-height: 1.3;
    max-width: 90%;
}

.fale-conosco__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #5E5E5E;
    margin: 0;
    line-height: 1.4;
    max-width: 90%;
}

.fale-conosco__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 350px;
    height: 50px;
    background: #25D366;
    border-radius: 5px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.fale-conosco__button:hover {
    opacity: 0.9;
}

.fale-conosco__button:active {
    transform: scale(0.98);
}

.fale-conosco__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .fale-conosco-section {
        padding: 45px 0 60px;
    }

    .fale-conosco__title {
        font-size: 26px;
    }

    .fale-conosco__subtitle {
        font-size: 20px;
    }

    .fale-conosco__button {
        max-width: 500px;
        height: 52px;
        font-size: 20px;
    }

    .fale-conosco__icon {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 1024px) {
    .fale-conosco-section {
        padding: 50px 0 50px;
    }

    .fale-conosco-wrapper {
        gap: 20px;
    }

    .fale-conosco__title {
        font-size: 32px;
    }

    .fale-conosco__subtitle {
        font-size: 24px;
    }

    .fale-conosco__button {
        max-width: 730px;
        height: 55px;
        font-size: 24px;
    }

    .fale-conosco__icon {
        width: 30px;
        height: 30px;
    }
}.categoria-produtos {
    padding: 0 0 40px;
    background: #EBF3F5;
}

.categoria-produtos__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.categoria-produtos__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #2B2E34;
    margin: 0;
}

.categoria-produtos__controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.categoria-produtos__filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.categoria-produtos__filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    white-space: nowrap;
}

.categoria-produtos__select {
    width: 211px;
    height: 40px;
    padding: 0 38px 0 7px;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF url('../../images/icons/select.svg') no-repeat right 7px center;
    background-position: right 7px center;
    background-size: 24px 24px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.categoria-produtos__select:focus {
    outline: 2px solid #5E5E5E;
    outline-offset: 2px;
}

.categoria-produtos__price-hidden {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    height: 30px;
    background: #FEF2F2;
    border-radius: 5px;
}

.categoria-produtos__lock-icon {
    width: 12px;
    height: 14px;
    flex-shrink: 0;
}

.categoria-produtos__price-hidden span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #EF4444;
    line-height: 1;
}

.categoria-produtos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
}

.categoria-produtos__empty {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #5e5e5e;
    padding: 40px 0;
}

.categoria-produtos__load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.categoria-produtos__load-more {
    padding: 12px 40px;
    background: #FFFFFF;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2B2E34;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.categoria-produtos__load-more:hover:not(:disabled) {
    background: #F2F2F7;
}

.categoria-produtos__load-more:active:not(:disabled) {
    transform: scale(0.98);
}

.categoria-produtos__load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .categoria-produtos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (min-width: 768px) {
    .categoria-produtos__controls {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .categoria-produtos {
        padding: 0 0 60px;
    }

    .categoria-produtos__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .categoria-produtos__title {
        font-size: 40px;
    }

    .categoria-produtos__controls {
        gap: 20px;
    }

    .categoria-produtos__grid {
        gap: 30px 15px;
    }

    .categoria-produtos__load-more-wrapper {
        margin-top: 50px;
    }
    
    .categoria-produtos__load-more {
        padding: 14px 50px;
        font-size: 18px;
    }
}

@media (min-width: 1270px) {
    .categoria-produtos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1300px) {
    .categoria-produtos__grid {
        gap: 50px 18px;
    }
}

@media (min-width: 1440px) {
    .categoria-produtos {
        padding: 0 0 100px;
    }
}.produto-detail {
    padding: 0 0 120px;
    background: #EBF3F5;
}

.produto-detail__wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .produto-detail__wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .produto-gallery {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .produto-content {
        flex: 0 0 50%;
        max-width: 50%;
    }
}.carrinho-section {
    background-color: #EBF3F5;
    padding-bottom: 40px;
}

.carrinho-box {
    background: #FFFFFF;
    min-height: 600px;
    padding: 24px 10px 36px;
}

.carrinho-header {
    display: none;
}

.carrinho-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 6px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #EBEBEB;
}

.carrinho-item:last-child {
    border-bottom: none;
}

.carrinho-btn-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    justify-self: end;
}

.carrinho-btn-remove img {
    width: 18px;
    height: 18px;
    display: block;
}

.carrinho-item__image {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    align-self: center;
}

.carrinho-item__name {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #2B2E34;
    line-height: 1.3;
}

.carrinho-price {
    grid-column: 2 / 4;
    grid-row: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #2B2E34;
}

.carrinho-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90px;
    height: 38px;
    border: 2px solid #2B2E34;
    border-radius: 5px;
    padding: 0 8px;
    box-sizing: border-box;
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
}

.carrinho-btn-minus,
.carrinho-btn-plus {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carrinho-btn-minus img,
.carrinho-btn-plus img {
    width: 14px;
    height: auto;
    display: block;
}

.carrinho-qty {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #2B2E34;
}

.carrinho-subtotal {
    grid-column: 3;
    grid-row: 3;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #2B2E34;
    justify-self: end;
}

.carrinho-divider {
    border: none;
    border-top: 1px solid #5E5E5E;
    margin: 16px 0 24px;
}

.carrinho-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.carrinho-total {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #2B2E34;
}

.carrinho-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 53px;
    background-color: #25D366;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.carrinho-btn-whatsapp:hover {
    background-color: #1da854;
}

.carrinho-btn-whatsapp:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.carrinho-btn-whatsapp img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.carrinho-btn-whatsapp span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: #FFFFFF;
}

.carrinho-vazio {
    text-align: center;
    padding: 80px 0;
}

.carrinho-vazio p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 0;
}

.carrinho-disclaimer {
    background-color: #FFF9E6;
    border: 1px solid #FFE066;
    border-radius: 5px;
    padding: 14px 16px;
    margin-top: 20px;
}

.carrinho-disclaimer p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #5E5E5E;
    line-height: 1.4;
    text-align: center;
}

@media (min-width: 768px) {
    .carrinho-section {
        padding-bottom: 60px;
    }

    .carrinho-box {
        padding: 30px 40px 55px;
    }

    .carrinho-header {
        display: grid;
        grid-template-columns: 24px 80px 1fr 120px 100px 110px;
        gap: 0 20px;
        align-items: center;
        padding-bottom: 18px;
    }

    .carrinho-header span {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #000000;
    }

    .carrinho-item {
        grid-template-columns: 24px 80px 1fr 120px 100px 110px;
        grid-template-rows: auto;
        column-gap: 20px;
        row-gap: 0;
        padding: 22px 0;
    }

    .carrinho-btn-remove {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: center;
    }

    .carrinho-btn-remove img {
        width: 20px;
        height: 20px;
    }

    .carrinho-item__image {
        grid-column: 2;
        grid-row: 1;
        width: 80px;
        height: 80px;
        align-self: center;
    }

    .carrinho-item__name {
        grid-column: 3;
        grid-row: 1;
        font-size: 18px;
    }

    .carrinho-price {
        grid-column: 4;
        grid-row: 1;
        font-size: 18px;
    }

    .carrinho-qty-wrapper {
        grid-column: 5;
        grid-row: 1;
        width: 100px;
        height: 46px;
    }

    .carrinho-qty {
        font-size: 18px;
    }

    .carrinho-subtotal {
        grid-column: 6;
        grid-row: 1;
        font-size: 18px;
        justify-self: start;
    }

    .carrinho-divider {
        margin: 8px 0 30px;
    }

    .carrinho-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .carrinho-total {
        font-size: 30px;
    }

    .carrinho-btn-whatsapp {
        width: auto;
        min-width: 380px;
    }

    .carrinho-btn-whatsapp img {
        width: 28px;
        height: 28px;
    }

    .carrinho-btn-whatsapp span {
        font-size: 19px;
    }

    .carrinho-disclaimer {
        padding: 16px 20px;
        margin-top: 24px;
    }

    .carrinho-disclaimer p {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .carrinho-section {
        padding-bottom: 80px;
    }

    .carrinho-box {
        padding: 37px 85px 70px;
    }

    .carrinho-header {
        grid-template-columns: 24px 90px 1fr 150px 180px 130px;
        gap: 0 24px;
    }

    .carrinho-header span {
        font-size: 24px;
    }

    .carrinho-item {
        grid-template-columns: 24px 90px 1fr 150px 180px 130px;
        column-gap: 24px;
        padding: 28px 0;
    }

    .carrinho-btn-remove img {
        width: 24px;
        height: 24px;
    }

    .carrinho-item__image {
        width: 90px;
        height: 90px;
    }

    .carrinho-item__name {
        font-size: 24px;
    }

    .carrinho-price {
        font-size: 24px;
    }

    .carrinho-qty-wrapper {
        width: 117px;
        height: 53px;
        padding: 0 10px;
    }

    .carrinho-qty {
        font-size: 20px;
    }

    .carrinho-subtotal {
        font-size: 24px;
    }

    .carrinho-divider {
        margin: 4px 0 36px;
    }

    .carrinho-total {
        font-size: 36px;
    }

    .carrinho-btn-whatsapp {
        width: 504px;
        min-width: unset;
    }

    .carrinho-btn-whatsapp img {
        width: 31px;
        height: 31px;
    }

    .carrinho-btn-whatsapp span {
        font-size: 20px;
    }

    .carrinho-disclaimer {
        padding: 18px 24px;
        margin-top: 30px;
    }

    .carrinho-disclaimer p {
        font-size: 15px;
    }
}.arquivo-produtos-section {
    background: #EBF3F5;
    padding: 0 0 40px;
}

.arquivo-produtos__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.arquivo-produtos__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #2B2E34;
    margin: 0;
}

.arquivo-produtos__controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.arquivo-produtos__filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arquivo-produtos__filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    white-space: nowrap;
}

.arquivo-produtos__select {
    width: 211px;
    height: 40px;
    padding: 0 38px 0 7px;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF url('../../images/icons/select.svg') no-repeat right 7px center;
    background-size: 24px 24px;
    cursor: pointer;
    appearance: none;
}

.arquivo-produtos__select:focus {
    outline: 2px solid #5E5E5E;
    outline-offset: 2px;
}

.arquivo-produtos__price-hidden {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    height: 30px;
    background: #FEF2F2;
    border-radius: 5px;
}

.arquivo-produtos__price-hidden img {
    width: 12px;
    height: 14px;
    flex-shrink: 0;
}

.arquivo-produtos__price-hidden span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #EF4444;
    line-height: 1;
}

.arquivo-produtos__layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arquivo-produtos__sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.arquivo-produtos__filter-box {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 15px;
    padding: 13px 10px 20px;
}

.arquivo-produtos__filter-box--subcategorias {
    margin-top: 0;
}

.arquivo-produtos__filter-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0 0 10px;
}

.arquivo-produtos__filter-divider {
    border: none;
    border-top: 2px solid #D9D9D9;
    margin: 0 0 10px;
}

.arquivo-produtos__filter-items {
    display: flex;
    flex-direction: column;
}

.arquivo-produtos__checkbox-wrapper {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.arquivo-produtos__checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #5E5E5E;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    background: transparent;
    position: relative;
}

.arquivo-produtos__checkbox:checked {
    background: #00B8D4;
    border-color: #00B8D4;
}

.arquivo-produtos__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

.arquivo-produtos__checkbox-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-left: 12px;
}

.arquivo-produtos__content {
    width: 100%;
    position: relative;
}

.arquivo-produtos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
}

.arquivo-produtos__empty {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #5E5E5E;
    padding: 40px 0;
    grid-column: 1 / -1;
}

.arquivo-produtos__load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.arquivo-produtos__load-more {
    padding: 12px 40px;
    background: #FFFFFF;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2B2E34;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.arquivo-produtos__load-more:hover:not(:disabled) {
    background: #F2F2F7;
}

.arquivo-produtos__load-more:active:not(:disabled) {
    transform: scale(0.98);
}

.arquivo-produtos__load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .arquivo-produtos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (min-width: 768px) {
    .arquivo-produtos__controls {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .arquivo-produtos-section {
        padding: 0 0 60px;
    }

    .arquivo-produtos__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .arquivo-produtos__title {
        font-size: 40px;
    }

    .arquivo-produtos__controls {
        gap: 20px;
    }

    .arquivo-produtos__layout {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .arquivo-produtos__sidebar {
        width: 304px;
        flex-shrink: 0;
    }

    .arquivo-produtos__content {
        flex: 1;
    }

    .arquivo-produtos__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: stretch;
    }

    .arquivo-produtos__load-more-wrapper {
        margin-top: 50px;
    }

    .arquivo-produtos__load-more {
        padding: 14px 50px;
        font-size: 18px;
    }
}

@media (min-width: 1230px) {
    .arquivo-produtos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 40px;
    }
}

@media (min-width: 1300px) {
    .arquivo-produtos__layout {
        gap: 70px;
    }

    .arquivo-produtos__grid {
        gap: 50px 70px;
    }
}

@media (min-width: 1440px) {
    .arquivo-produtos-section {
        padding: 0 0 100px;
    }
}.search-results-page {
    background-color: #EBF3F5;
    min-height: 60vh;
    padding-bottom: 60px;
}

.search-results-section {
    padding: 20px 0 40px;
}

.search-results__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
}

.search-results__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #2B2E34;
    margin: 0;
    line-height: 1.2;
}

.search-results__title span {
    color: #00B8F1;
}

.search-results__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-results__count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #5E5E5E;
}

.search-results__empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-results__empty-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #5E5E5E;
    margin-bottom: 20px;
}

.search-results__back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00B8F1;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-results__back-btn:hover {
    background: #0099c9;
}

@media (min-width: 768px) {
    .search-results__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 30px;
    }

    .search-results__meta {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .search-results__title {
        font-size: 32px;
    }
    
    .search-results-section {
        padding: 40px 0 80px;
    }
}.page-meus-pedidos {
    background-color: #EBF3F5;
    min-height: 80vh;
    padding-bottom: 60px;
}

.meus-pedidos__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meus-pedidos__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #2B2E34;
    margin: 0;
}

.meus-pedidos__logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2B2E34;
    text-decoration: none;
    transition: all 0.2s ease;
}

.meus-pedidos__logout img {
    flex-shrink: 0;
    filter: brightness(0);
}

.meus-pedidos__logout:hover {
    background: #F2F2F7;
    border-color: #2B2E34;
}

.meus-pedidos__logout:active {
    transform: scale(0.98);
}

.meus-pedidos__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pedido-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #E5E5E5;
}

.pedido-card__header {
    background: #F9FAFB;
    padding: 15px 20px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pedido-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pedido-card__id {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2B2E34;
    margin: 0;
}

.pedido-card__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #5E5E5E;
}

.pedido-card__status {
    background: #DCFCE7;
    color: #166534;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}

.pedido-card__items {
    padding: 20px;
}

.pedido-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pedido-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2B2E34;
    padding: 8px 0;
    border-bottom: 1px dashed #E5E5E5;
}

.pedido-item:last-child {
    border-bottom: none;
}

.pedido-item__qty {
    font-weight: 600;
    color: #5E5E5E;
}

.pedido-item__price {
    font-weight: 600;
}

.pedido-card__footer {
    padding: 15px 20px;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pedido-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.pedido-card__total span {
    color: #5E5E5E;
}

.pedido-card__total strong {
    font-weight: 800;
    color: #2B2E34;
    font-size: 18px;
}

.pedido-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #25D366;
    color: #25D366;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pedido-btn-whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
}

.meus-pedidos__empty {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: 8px;
}

.meus-pedidos__empty p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #5E5E5E;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #00B8F1;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.meus-pedidos__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.meus-pedidos__pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #D9D9D9;
    background: #fff;
    color: #2B2E34;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.meus-pedidos__pagination .page-numbers.current {
    background: #00B8F1;
    border-color: #00B8F1;
    color: #fff;
}

@media (min-width: 768px) {
    .meus-pedidos__header {
        margin-bottom: 40px;
    }

    .meus-pedidos__title {
        font-size: 40px;
    }

    .meus-pedidos__logout {
        font-size: 16px;
        padding: 12px 24px;
    }

    .pedido-card__footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .pedido-btn-whatsapp {
        width: auto;
        padding: 8px 20px;
    }
}.auth-section {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
    background: #EBF3F5;
    display: flex;
    align-items: center;
}

.auth-box {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.auth-box--register {
    max-width: 600px;
}

.auth-box__logo {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto 25px;
}

.auth-box__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #2B2E34;
    text-align: center;
    margin: 0 0 25px;
}

.auth-box__errors {
    background: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.auth-box__errors p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #EF4444;
    margin: 0;
}

.auth-box__errors p + p {
    margin-top: 6px;
}

.auth-form__field {
    margin-bottom: 18px;
}

.auth-form__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2B2E34;
    margin-bottom: 6px;
}

.auth-form__label .required {
    color: #EF4444;
}

.auth-form__input {
    width: 100%;
    height: 45px;
    padding: 0 12px;
    border: 1px solid #5E5E5E;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2B2E34;
    background: #FFFFFF;
    transition: border-color 0.2s ease;
}

.auth-form__input:focus {
    outline: none;
    border-color: #2B2E34;
}

.auth-form__radio-group {
    margin-bottom: 18px;
}

.auth-form__radio-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.auth-form__radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2B2E34;
    cursor: pointer;
}

.auth-form__radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-form__checkbox-wrapper {
    margin-bottom: 20px;
}

.auth-form__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.auth-form__forgot-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5E5E5E;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.auth-form__forgot-link:hover {
    color: #2B2E34;
    text-decoration: underline;
}

.auth-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2B2E34;
    cursor: pointer;
}

.auth-form__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-form__row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form__field--half,
.auth-form__field--1-3,
.auth-form__field--2-3 {
    width: 100%;
}

.auth-form__submit {
    width: 100%;
    height: 50px;
    background: #2B2E34;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.auth-form__submit:hover {
    background: #1a1c20;
}

.auth-form__submit:active {
    transform: scale(0.98);
}

.auth-box__footer {
    text-align: center;
    margin-top: 20px;
}

.auth-box__footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #5E5E5E;
    margin: 0;
}

.auth-box__footer a {
    color: #2B2E34;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-box__footer a:hover {
    color: #000000;
    text-decoration: underline;
}

.auth-box__success {
    background: #F0FDF4;
    border: 1px solid #22C55E;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.auth-box__success p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #15803D;
    margin: 0;
}

.auth-box__success p + p {
    margin-top: 6px;
}

.auth-box__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #5E5E5E;
    text-align: center;
    margin: 0 0 25px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .auth-box {
        padding: 40px 30px;
    }

    .auth-box__logo {
        width: 120px;
        margin-bottom: 30px;
    }

    .auth-box__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .auth-box__errors {
        padding: 15px;
    }

    .auth-form__field {
        margin-bottom: 20px;
    }

    .auth-form__label {
        margin-bottom: 8px;
    }

    .auth-form__input {
        padding: 0 15px;
    }

    .auth-form__row {
        flex-direction: row;
        gap: 15px;
    }

    .auth-form__field--half {
        flex: 1;
    }

    .auth-form__field--1-3 {
        flex: 0 0 100px;
        width: auto;
    }

    .auth-form__field--2-3 {
        flex: 1;
        width: auto;
    }

    .auth-form__submit {
        font-size: 18px;
    }

    .auth-box__footer {
        margin-top: 25px;
    }

    .auth-form__forgot-link {
        font-size: 14px;
    }

    .auth-box__success {
        padding: 15px;
    }
    
    .auth-box__description {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .auth-section {
        padding: 60px 0;
    }

    .auth-box {
        padding: 50px 40px;
    }

    .auth-box__title {
        font-size: 32px;
    }

    .auth-form__checkbox-wrapper {
        margin-bottom: 25px;
    }

    .auth-form__options {
        margin-bottom: 25px;
    }
}.error-404 {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background: #EBF3F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404__logo {
    width: 100px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.error-404__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: #2B2E34;
    margin: 0 0 15px;
    line-height: 1;
}

.error-404__message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2B2E34;
    margin: 0 0 15px;
}

.error-404__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #5E5E5E;
    margin: 0 0 35px;
    line-height: 1.5;
}

.error-404__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.error-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 50px;
    padding: 0 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.error-404__button--primary {
    background: #2B2E34;
    color: #FFFFFF;
}

.error-404__button--primary:hover {
    background: #1a1c20;
}

.error-404__button--secondary {
    background: #FFFFFF;
    color: #2B2E34;
    border: 1px solid #5E5E5E;
}

.error-404__button--secondary:hover {
    background: #F2F2F7;
}

.error-404__button:active {
    transform: scale(0.98);
}

@media (min-width: 640px) {
    .error-404__logo {
        width: 120px;
        margin-bottom: 40px;
    }

    .error-404__title {
        font-size: 120px;
        margin-bottom: 20px;
    }

    .error-404__message {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .error-404__description {
        font-size: 18px;
        margin-bottom: 45px;
    }

    .error-404__actions {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .error-404__button {
        width: auto;
        min-width: 200px;
    }
}

@media (min-width: 768px) {
    .error-404 {
        padding: 80px 0;
    }

    .error-404__title {
        font-size: 140px;
    }

    .error-404__message {
        font-size: 32px;
    }
}:root {
    --header-z-index: 1000;
    --nav-panel-z: 1100;
    --nav-overlay-z: 1090;
}

* {
    box-sizing: border-box;
}

.site-header {
    background: #EBF3F5;
    position: relative;
    width: 100%;
    z-index: var(--header-z-index);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.header-strip {
    height: 35px;
    border-bottom: 1px solid #D9D9D9;
}

.header-strip .container {
    height: 100%;
}

.header-strip__content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-strip__email {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2B2E34;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    transition: opacity 0.3s ease;
}

.header-strip__email:hover {
    opacity: 0.7;
}

.header-strip__social-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.header-strip__social-link:hover {
    opacity: 0.7;
}

.header-strip__icon {
    width: 14px;
    height: 14px;
    display: block;
}

.header-main {
    padding: 10px 0;
}

.header-main__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-main__logo {
    flex-shrink: 0;
}

.header-main__logo img {
    display: block;
    width: 60px;
    height: auto;
}

.header-main__mobile-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-mobile-user-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.header-mobile-user-link img {
    display: block;
}

.header-main__content {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: calc(var(--nav-panel-z) + 1);
    flex-shrink: 0;
}

.mobile-menu-toggle .line {
    width: 26px;
    height: 2px;
    background: #2B2E34;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: #fff;
    padding: 80px 30px 30px;
    z-index: var(--nav-panel-z);
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__list a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2B2E34;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: font-weight 0.2s ease;
}

.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current-menu-ancestor > a {
    font-weight: 700;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--nav-overlay-z);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.mobile-menu .mobile-menu-close .line {
    background: #2B2E34;
}

.mobile-menu .mobile-menu-close .line-1 {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu .mobile-menu-close .line-2 {
    opacity: 0;
}

.mobile-menu .mobile-menu-close .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-toggle {
    position: fixed;
    top: 55px;
    right: 20px;
    z-index: calc(var(--nav-panel-z) + 1);
}

body.mobile-menu-open .mobile-menu-toggle .line {
    background: #2B2E34;
}

body.mobile-menu-open .mobile-menu-toggle .line-1 {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle .line-2 {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

.header-main__cart,
.header-mobile-user-link {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #FB3099;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 1200px) {
    .site-header {
        height: 250px;
    }

    .header-strip {
        height: 50px;
    }

    .header-strip__content {
        gap: 35px;
    }

    .header-strip__email {
        gap: 10px;
        font-size: 16px;
    }

    .header-strip__icon {
        width: 20px;
        height: 20px;
    }

    .header-main {
        height: calc(250px - 50px);
        padding: 0;
    }

    .header-main__wrapper {
        align-items: flex-start;
        height: 100%;
        gap: 78px;
        justify-content: flex-start;
    }

    .header-main__logo {
        padding-top: 40px;
    }

    .header-main__logo img {
        width: 141px;
        height: 119px;
    }

    .header-main__mobile-user {
        display: none;
    }

    .header-main__content {
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 30px;
        padding-top: 55px;
    }

    .header-main__top {
        display: flex;
        align-items: center;
    }

    .header-search {
        width: 545px;
        height: 40px;
        display: flex;
        border: 2px solid #00B8F1;
        border-radius: 2px;
        overflow: hidden;
        background: #EBF3F5;
        flex-shrink: 0;
    }

    .header-search__input {
        flex: 1;
        height: 100%;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 15px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 16px;
        color: #2B2E34;
    }

    .header-search__input::placeholder {
        color: #5E5E5E;
    }

    .header-search__button {
        width: 40px;
        background: #00B8F1;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: opacity 0.3s ease;
    }

    .header-search__button:hover {
        opacity: 0.9;
    }

    .header-main__user {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .header-user-logged,
    .header-user-link {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #2B2E34;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 20px;
        transition: opacity 0.3s ease;
    }

    .header-user-logged:hover {
        opacity: 0.7;
    }

    .header-main__cart {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        transition: opacity 0.3s ease;
    }

    .header-main__cart:hover {
        opacity: 0.7;
    }

    .header-main__nav {
        width: 100%;
    }

    .header-main__menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-main__menu li {
        position: relative;
    }

    .header-main__menu a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 16px;
        color: #2B2E34;
        text-decoration: none;
        display: block;
        padding-bottom: 7px;
        transition: opacity 0.3s ease;
    }

    .header-main__menu a:hover {
        opacity: 0.7;
    }

    .header-main__menu .current-menu-item > a::after,
    .header-main__menu .current-menu-ancestor > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #FB3099;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}.site-footer {
    background: #2B2E34;
}

.footer-main {
    padding: 40px 0;
}

.footer-main__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-col--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo img {
    width: 100px;
    height: auto;
    display: block;
}

.footer-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 120px;
    height: 45px;
    background: transparent;
    border: 2px solid #FFDF00;
    border-radius: 5px;
    text-decoration: none;
    color: #FFEA3D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-login-btn:hover {
    opacity: 0.8;
}

.footer-col__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-col__main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover {
    opacity: 0.8;
}

.footer-contact-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: auto;
}

.footer-contact-item__text {
    display: flex;
    flex-direction: column;
}

.footer-contact-item__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.footer-contact-item__value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
}

.footer-address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #FFEA3D;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social__link {
    transition: opacity 0.3s ease;
}

.footer-social__link:hover {
    opacity: 0.7;
}

.footer-social__link img {
    display: block;
}

.footer-strip {
    border-top: 1px solid #5E5E5E;
    padding: 30px 0;
}

.footer-strip__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.footer-strip__link {
    font-weight: 600;
    color: #FFDF00;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-strip__link:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-main__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-login-btn {
        width: 130px;
    }

    .footer-col__title {
        font-size: 28px;
    }

    .footer-contact-item__icon {
        width: 45px;
    }

    .footer-contact-item__label {
        font-size: 18px;
    }

    .footer-contact-item__value {
        font-size: 22px;
    }

    .footer-address {
        font-size: 18px;
    }

    .footer-menu a {
        font-size: 18px;
    }

    .footer-strip__text {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .footer-main {
        height: 368px;
        padding: 0;
    }

    .footer-main .container {
        height: 100%;
    }

    .footer-main__wrapper {
        height: 100%;
        grid-template-columns: auto 1fr 1fr 1fr;
        gap: 60px;
        align-items: stretch;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
    }

    .footer-col--logo {
        justify-content: center;
        gap: 45px;
        margin-right: 60px;
    }

    .footer-logo img {
        width: 142px;
        height: 119px;
    }

    .footer-login-btn {
        width: 142px;
        height: 50px;
        font-size: 16px;
    }

    .footer-col--contato,
    .footer-col--solucoes,
    .footer-col--redes {
        padding: 30px 0;
    }

    .footer-col__title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .footer-col__main {
        flex: 1;
        justify-content: space-between;
    }

    .footer-contact-item__icon {
        width: 50px;
    }

    .footer-contact-item__label {
        font-size: 20px;
    }

    .footer-contact-item__value {
        font-size: 24px;
    }

    .footer-address {
        font-size: 21.5px;
        max-width: 360px;
    }

    .footer-menu {
        gap: 0;
        height: 100%;
        justify-content: space-between;
    }

    .footer-menu a {
        font-size: 20px;
    }

    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: 100%;
        justify-content: space-between;
    }

    .footer-strip {
        height: 100px;
        display: flex;
        align-items: center;
    }

    .footer-strip__text {
        font-size: 16px;
    }
}.banner-section {
    width: 100%;
    position: relative;
}

.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slider__track {
    position: relative;
    width: 100%;
}

.banner-slider__slide {
    display: none;
    width: 100%;
}

.banner-slider__slide.is-active {
    display: block;
}

.banner-slider__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-slider__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.banner-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.banner-slider__dot:hover {
    transform: scale(1.2);
}

.banner-slider__dot.is-active {
    background: #FFEA3D;
}

@media (min-width: 768px) {
    .banner-slider__dots {
        bottom: 15px;
        gap: 15px;
    }

    .banner-slider__dot {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 1200px) {
    .banner-slider__dots {
        gap: 15px;
    }
}.produto-card {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.produto-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.produto-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #F5F5F5;
}

.produto-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.produto-card__image--placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.produto-card__tag {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 80px;
    height: 18px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    z-index: 10;
    white-space: nowrap;
}

.produto-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px 12px;
    text-align: center;
}

.produto-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2B2E34;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.produto-card__description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #5E5E5E;
    margin: 0 0 10px 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.produto-card__price {
    margin: 0 0 12px 0;
}

.produto-card__price .price,
.produto-card__price .login-prompt-text,
.produto-card__price .price-unavailable {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.produto-card__price .price {
    color: #25D366;
    font-size: 18px;
}

.produto-card__price .login-prompt-text {
    color: #25D366;
    font-size: 14px;
}

.produto-card__price .price-unavailable {
    color: #999;
    font-size: 18px;
}

.produto-card__button {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.produto-card__button:hover {
    opacity: 0.9;
}

.produto-card__button:active {
    transform: scale(0.98);
}

@media (min-width: 480px) {
    .produto-card__image-wrapper {
        padding-top: 85%;
    }
    
    .produto-card__tag {
        top: 10px;
        right: 10px;
        min-width: 90px;
        height: 20px;
        font-size: 11px;
        border-radius: 13px;
    }
    
    .produto-card__title {
        font-size: 18px;
    }
    
    .produto-card__description {
        font-size: 12px;
    }
    
    .produto-card__price .price {
        font-size: 20px;
    }
    
    .produto-card__button {
        height: 44px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .produto-card {
        width: 413px;
        height: 555px;
    }
    
    .produto-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .produto-card__image-wrapper {
        height: 370px;
        padding-top: 0;
    }
    
    .produto-card__tag {
        top: 12px;
        right: 12px;
        width: 100px;
        height: 20px;
        min-width: auto;
        padding: 0;
        font-size: 12px;
        border-radius: 15px;
    }
    
    .produto-card__content {
        padding: 20px 15px 15px;
    }
    
    .produto-card__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .produto-card__description {
        font-size: 12px;
        max-width: 383px;
        margin-bottom: 12px;
    }
    
    .produto-card__price {
        margin-bottom: 15px;
    }
    
    .produto-card__price .price {
        font-size: 20px;
    }
    
    .produto-card__price .login-prompt-text,
    .produto-card__price .price-unavailable {
        font-size: 16px;
    }
    
    .produto-card__button {
        width: 383px;
        height: 45px;
        font-size: 14px;
    }
}

@media (min-width: 1440px) {
    .produto-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
}.categorias-section {
    background: #EBF3F5;
    padding: 20px 0 30px;
}

.categorias-wrapper {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 15px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.categoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.categoria-item:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.categoria-item__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    contain: layout style paint;
}

.categoria-item__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.categoria-item__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2B2E34;
    margin: 0 0 6px 0;
    line-height: 1.2;
    min-height: 1.2em;
}

.categoria-item__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #5E5E5E;
    margin: 0;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
}

@media (min-width: 768px) {
    .categorias-section {
        padding: 30px 0 40px;
    }

    .categorias-wrapper {
        border-radius: 50px;
        padding: 20px 15px;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .categoria-item__icon {
        margin-bottom: 10px;
    }

    .categoria-item__title {
        font-size: 15px;
        margin-bottom: 8px;
        min-height: 1.2em;
    }

    .categoria-item__subtitle {
        font-size: 11px;
        min-height: calc(1.3em * 2);
    }
}

@media (min-width: 1200px) {
    .categorias-section {
        padding: 35px 0 50px;
    }

    .categorias-wrapper {
        max-width: 954px;
        height: 150px;
        margin: 0 auto;
        border-radius: 100px;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 85px;
    }

    .categoria-item {
        flex: 0 0 auto;
        padding: 0;
    }

    .categoria-item__icon {
        margin-bottom: 10px;
    }

    .categoria-item__title {
        font-size: 16px;
        margin-bottom: 8px;
        min-height: 1.2em;
    }

    .categoria-item__subtitle {
        font-size: 12px;
        min-height: calc(1.3em * 2);
    }
}.categoria-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

.categoria-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--categoria-cor, #00BCD4) 0%, 
        var(--categoria-cor, #00BCD4) 40%, 
        #FFFFFF 40%, 
        #FFFFFF 100%);
    z-index: 0;
}

.categoria-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.categoria-banner__image-wrapper {
    width: 100%;
    max-width: 300px;
    height: 300px;
    flex-shrink: 0;
    background-color: #F2F2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.categoria-banner__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.categoria-banner__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.categoria-banner__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.categoria-banner__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    color: var(--categoria-cor, #00BCD4);
    margin: 0;
}

.categoria-banner__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    color: #2B2E34;
    margin: 0;
}

.categoria-banner__description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #5e5e5e;
    margin: 0;
    max-width: 600px;
}

.categoria-banner__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 350px;
    height: 50px;
    background: #25D366;
    border-radius: 5px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.categoria-banner__button:hover {
    opacity: 0.9;
}

.categoria-banner__button:active {
    transform: scale(0.98);
}

.categoria-banner__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .categoria-banner {
        min-height: 500px;
        padding: 50px 0;
    }

    .categoria-banner__background {
        background: linear-gradient(to bottom, 
            var(--categoria-cor, #00BCD4) 0%, 
            var(--categoria-cor, #00BCD4) 45%, 
            #FFFFFF 45%, 
            #FFFFFF 100%);
    }

    .categoria-banner__image-wrapper {
        max-width: 400px;
        height: 400px;
        padding: 30px;
    }

    .categoria-banner__title {
        font-size: 34px;
    }

    .categoria-banner__subtitle {
        font-size: 28px;
    }

    .categoria-banner__description {
        font-size: 18px;
    }

    .categoria-banner__button {
        max-width: 450px;
        height: 52px;
        font-size: 18px;
    }

    .categoria-banner__icon {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 1200px) {
    .categoria-banner {
        min-height: 600px;
        padding: 0;
    }

    /* aqui é pra ficar bem no meio da imagem! nao mexer! */
    .categoria-banner__background {
        background: linear-gradient(to right, 
            var(--categoria-cor, #00BCD4) 0%, 
            var(--categoria-cor, #00BCD4) max(327.5px, calc(50vw - 312.5px)), 
            #FFFFFF max(327.5px, calc(50vw - 312.5px)), 
            #FFFFFF 100%);
    }

    .categoria-banner__content {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 70px;
    }

    .categoria-banner__image-wrapper {
        max-width: 500px;
        width: 500px;
        height: 500px;
        margin-left: 75px;
        padding: 40px;
    }

    .categoria-banner__text {
        align-items: flex-start;
        text-align: left;
        flex: 1;
        max-width: 710px;
    }

    .categoria-banner__title {
        font-size: 40px;
    }

    .categoria-banner__subtitle {
        font-size: 36px;
    }

    .categoria-banner__description {
        font-size: 23px;
        max-width: none;
    }

    .categoria-banner__button {
        max-width: 627px;
        height: 55px;
        font-size: 24px;
        margin-top: 10px;
    }

    .categoria-banner__icon {
        width: 30px;
        height: 30px;
    }
}.breadcrumbs {
    padding: 40px 0;
    background: #EBF3F5;
}

.breadcrumbs__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs__link,
.breadcrumbs__current {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #5e5e5e;
    text-decoration: none;
    line-height: 1;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__separator {
    width: 10px;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .breadcrumbs__container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .breadcrumbs__container {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
}.produto-gallery__slider {
    position: relative;
    width: 100%;
    height: 400px;
    background: #D9D9D9;
    overflow: hidden;
}

.produto-gallery__tag {
    position: absolute;
    top: 8px;
    left: 8px;
    min-width: 80px;
    height: 18px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    z-index: 10;
    white-space: nowrap;
}

.produto-gallery__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-gallery__slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.produto-gallery__slide.is-active {
    display: flex;
}

.produto-gallery__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.produto-gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #D9D9D9;
    border: 2px solid #5E5E5E;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.produto-gallery__btn--prev {
    left: 25px;
}

.produto-gallery__btn--next {
    right: 25px;
}

.produto-gallery__btn:hover {
    background: #C0C0C0;
}

.produto-gallery__btn:active {
    transform: translateY(-50%) scale(0.95);
}

.produto-gallery__btn-icon {
    width: 24px;
    height: 24px;
}

.produto-gallery__btn-icon--prev {
    transform: rotate(90deg);
}

.produto-gallery__btn-icon--next {
    transform: rotate(-90deg);
}

.produto-gallery__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.produto-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5E5E5E;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.produto-gallery__dot:hover {
    transform: scale(1.2);
}

.produto-gallery__dot.is-active {
    background: #FFEA3D;
}

@media (min-width: 480px) {
    .produto-gallery__tag {
        top: 10px;
        left: 10px;
        min-width: 90px;
        height: 20px;
        font-size: 11px;
        border-radius: 13px;
    }
}

@media (min-width: 768px) {
    .produto-gallery__slider {
        height: 500px;
    }

    .produto-gallery__dot {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 1024px) {
    .produto-gallery {
        display: flex;
        flex-direction: column;
    }

    .produto-gallery__slider {
        height: auto;
        min-height: 600px;
        flex: 1;
    }

    .produto-gallery__tag {
        top: 20px;
        left: 15px;
        width: 100px;
        height: 20px;
        min-width: auto;
        padding: 0;
        font-size: 12px;
        border-radius: 15px;
    }
}.produto-content {
    background: #FFFFFF;
    padding: 20px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-content__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2b2e34;
    margin: 0;
    line-height: 1.3;
}

.produto-content__description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #5e5e5e;
    margin: 0;
    line-height: 1.5;
}

.produto-content__code {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #5e5e5e;
    margin: 0;
}

.produto-content__price-table {
    width: 100%;
}

.price-table {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
}

.price-table__header {
    height: 50px;
    background: #EBF3F5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 63px;
}

.price-table__header span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #2b2e34;
}

.price-table__body {
    max-height: 200px;
    overflow-y: auto;
}

.price-table__body::-webkit-scrollbar {
    width: 8px;
}

.price-table__body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.price-table__body::-webkit-scrollbar-thumb {
    background: #5e5e5e;
    border-radius: 4px;
}

.price-table__body::-webkit-scrollbar-thumb:hover {
    background: #2b2e34;
}

.price-table__row {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 0 63px;
    background: #FFFFFF;
}

.price-table__row--even {
    background: #EBF3F5;
}

.price-table__quantity {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2b2e34;
}

.price-table__price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #2b2e34;
}

.produto-content__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.produto-content__quantity-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.produto-quantity {
    width: 117px;
    height: 53px;
    border: 2px solid #2b2e34;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.produto-quantity__btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.produto-quantity__btn:hover {
    opacity: 0.6;
}

.produto-quantity__btn-icon--minus {
    transform: rotate(90deg);
}

.produto-quantity__btn-icon--plus {
    transform: rotate(-90deg);
}

.produto-quantity__number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #2b2e34;
    min-width: 24px;
    text-align: center;
    user-select: none;
}

.produto-btn-cart {
    width: 100%;
    height: 53px;
    background: #25D366;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.produto-btn-cart:hover {
    background: #1db954;
}

.produto-btn-cart span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #FFFFFF;
}

.produto-content__whatsapp-note {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #5e5e5e;
    margin: 0;
}

.produto-btn-doubt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 53px;
    background: #FFFFFF;
    border: 2px solid #25D366;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.produto-btn-doubt:hover {
    background: #f0fdf4;
}

.produto-btn-doubt span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #25D366;
}

.produto-content__login-prompt {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
}

.produto-content__login-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: 5px;
}

.produto-content__login-message img {
    flex-shrink: 0;
    margin-top: 2px;
}

.produto-content__login-message p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #EF4444;
    margin: 0;
    line-height: 1.5;
}

.produto-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 53px;
    background: #2B2E34;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.produto-btn-login:hover {
    background: #1a1c20;
}

.produto-btn-login:active {
    transform: scale(0.98);
}

.produto-btn-login img {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.produto-btn-login span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .produto-content__quantity-row {
        flex-direction: row;
        gap: 20px;
    }

    .produto-btn-cart {
        width: auto;
        flex: 1;
    }
}

@media (min-width: 768px) {
    .produto-content {
        padding: 24px 30px 14px;
        gap: 25px;
    }

    .produto-content__title {
        font-size: 22px;
    }

    .produto-content__description,
    .produto-content__code {
        font-size: 15px;
    }

    .price-table__header span,
    .price-table__quantity,
    .price-table__price {
        font-size: 15px;
    }

    .produto-btn-cart span {
        font-size: 16px;
    }

    .produto-content__whatsapp-note {
        font-size: 15px;
    }

    .produto-btn-doubt span {
        font-size: 16px;
    }

    .produto-content__login-prompt {
        gap: 25px;
        padding-top: 25px;
    }

    .produto-content__login-message {
        padding: 18px;
    }

    .produto-content__login-message p {
        font-size: 15px;
    }

    .produto-btn-login span {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .produto-content {
        padding: 28px 45px 16px;
        min-height: 600px;
        gap: 30px;
    }

    .produto-content__title {
        font-size: 24px;
    }

    .produto-content__description,
    .produto-content__code {
        font-size: 16px;
    }

    .price-table__header span,
    .price-table__quantity,
    .price-table__price {
        font-size: 16px;
    }

    .produto-btn-cart span {
        font-size: 20px;
    }

    .produto-content__whatsapp-note {
        font-size: 16px;
    }

    .produto-btn-doubt span {
        font-size: 20px;
    }
    
    .produto-content__login-prompt {
        gap: 30px;
        padding-top: 30px;
    }

    .produto-content__login-message {
        padding: 20px;
    }

    .produto-content__login-message p {
        font-size: 16px;
    }

    .produto-btn-login span {
        font-size: 20px;
    }
}.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(235, 243, 245, 0.9);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
}

.loading-overlay.is-active {
    display: flex;
    pointer-events: all;
}

.loading-overlay__spinner {
    width: 56px;
    height: 56px;
    border: 5px solid #D9D9D9;
    border-top-color: #00B8D4;
    border-radius: 50%;
    animation: spinner-rotate 0.7s linear infinite;
}

@keyframes spinner-rotate {
    to { transform: rotate(360deg); }
}