/* ==========================================================================
   Base de Design • Tokens & Resets
   ========================================================================== */

:root {
    /* Cores */
    --c-bg-app: #101e2b;
    --c-bg-page: #292929;
    --c-brand: #f1cd1c;
    --c-brand-contrast: #101e2b;
    --c-text: #e5e5e5;
    --c-text-weak: #cfd3d8;
    --c-white: #fff;
    --c-black: black;

    /* Shadows */
    --shadow-md: 0 8px 18px rgba(0, 0, 0, .30);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .45);

    /* Tipografia */
    --ff: 'Overpass', sans-serif;
    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-19: 19px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-28: 28px;
    --fs-30: 30px;
    --fs-32: 32px;
    --fs-34: 34px;
    --fs-36: 36px;
    --fs-38: 38px;
    --fs-40: 40px;
    --fs-42: 42px;
    --fs-55: 55px;

    /* Dimensões comuns */
    --radius-3: 3px;
    --radius-8: 8px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-14: 14px;
    --space-16: 16px;
    --space-18: 18px;
    --space-20: 20px;
    --space-25: 25px;
    --space-30: 30px;
    --space-40: 40px;
    --space-70: 70px;

    /* Alturas chave */
    --h-hero: 355px;
    --h-hero-xl: 420px;
    --h-borex-banner: 470px;
}

/* Preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Reset básico e base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--c-bg-page);
    color: var(--c-text);
    font-family: var(--ff);
    line-height: 1.4;
}

/* ==========================================================================
   Banner Esteira (carrossel “esteira” de imagens)
   ========================================================================== */

#banner-esteira {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(0.25turn, var(--c-brand), var(--c-bg-app)) 1;
}

#banner-esteira img {
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   PDD (Produto do Dia) • Hero e Carrossel
   ========================================================================== */

/* Base do banner */
.pdd-hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 330px;
    max-height: var(--h-hero);
    overflow: hidden;
    background: var(--c-black);
}

/* Fundo */
.pdd-bg,
.pdd-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pdd-bg img {
    object-fit: cover;
    z-index: 1;
}

/* Coluna esquerda (imagem grande/mascote) */
.pdd-left {
    flex: 0 0 42%;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    margin-right: var(--space-20);
    overflow: hidden;
}

.pdd-left img {
    display: block;
    width: 100%;
    height: 85%;
    object-fit: contain;
    object-position: left bottom;
}

/* Coluna direita (viewport do carrossel) */
.pdd-right {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 0 var(--space-6) 0 var(--space-12);
    overflow: hidden;
}

/* Trilho do carrossel */
.pdd-track {
    display: flex;
    height: 100%;
    backface-visibility: hidden;
    will-change: transform;
    transform: translate3d(0,0,0);
    transition: transform 600ms ease;
}

/* Slide (info + produto) */
.pdd-slide {
    flex: 0 0 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 44%);
    grid-auto-rows: auto;
    align-items: start;
    align-content: end;
    column-gap: var(--space-10);
    min-width: 0;
    overflow: hidden;
    contain: layout paint;
}

/* Bloco de informações (avisos, badge, termos) */
.pdd-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 360px;
    margin: 0;
    padding: 0;
    text-align: center;
    justify-self: center;
}

.promo-warning {
    display: block;
    width: 150px;
    margin: 0 auto var(--space-40);
    color: var(--c-text-weak);
    text-align: center;
    white-space: nowrap;
    font-style: italic;
    font-weight: 600;
    font-size: var(--fs-12);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Badge de desconto */
.discount-badge {
    width: 150px;
    height: 75px;
    gap: var(--space-6);
    padding: 0 var(--space-16);
    margin: 0 auto var(--space-30);
    background: #ffcc00;
    color: var(--c-black);
    border-radius: var(--radius-3);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 0 0 auto;
}

.discount-value {
    font-weight: 800;
    font-style: italic;
    font-size: var(--fs-55);
    line-height: 1;
    color: var(--c-black);
}

.discount-symbol {
    font-weight: 800;
    font-style: italic;
    font-size: var(--fs-18);
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    transform: translateY(3px);
}

/* Termos */
.promo-terms {
    max-width: 360px;
    margin: 0;
    color: #e9eef3;
    font-weight: 500;
    font-size: var(--fs-12);
    line-height: 1.4;
    text-shadow: var(--shadow-sm);
    text-align: center;
    white-space: nowrap;
}

.promo-terms p {
    text-align: justify;
}

.promo-terms b {
    color: var(--c-white);
    font-weight: 800;
}

/* Produto (título + imagem) */
.pdd-product {
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: var(--space-10);
    align-content: end;
    justify-items: stretch;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.pdd-title {
    margin: 0;
    color: var(--c-white);
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}

.pdd-product img,
.pdd-slide img {
    display: block;
    align-self: end;
    justify-self: end;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* Dots do carrossel */
.pdd-dots {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-8);
    z-index: 5;
}

.pdd-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}

.pdd-dot:hover {
    background: rgba(255, 255, 255, .7);
    transform: scale(1.2);
}

.pdd-dot.active {
    background: var(--c-brand);
    transform: scale(1.2);
}

/* Esconde dots se houver apenas 1 item */
.pdd-dots:has(.pdd-dot:nth-child(1):last-child) {
    display: none;
}

/* ==========================================================================
   BANNER COMBO BOREX
   ========================================================================== */

.banner-combo {
    position: relative;
    display: flex;
    width: 100%;
    height: 390px;
    overflow: hidden;

    border-top: 2px solid transparent;
    border-image: linear-gradient(0.25turn, var(--c-brand), var(--c-bg-app)) 1;

    background: linear-gradient(
            110deg,
            #101e2b 0%,
            #101e2b 40%,
            #182d3d 50%,
            #29495e 65%,
            #416a82 80%,
            #557d96 100%
    );
}


/* =========================
   PRODUTOS
   ========================= */

.banner-combo .products-container {
    position: relative;
    width: 550px;
    flex-shrink: 0;
}

.banner-combo .products-container > img {
    display: block;

    width: 100%;
    height: 390px;

    object-fit: contain;
    object-position: left center;
}

.banner-combo .products-container .description {
    position: absolute;

    bottom: 8px;
    left: -50px;

    width: 100%;

    text-align: center;

    font-size: 11px;
    line-height: 1.3;

    color: #fff;

    z-index: 2;
}

.banner-combo .products-container .description strong {
    color: var(--c-brand);
}


/* =========================
   TÍTULO
   ========================= */

.banner-combo .title-container {
    display: flex;
    flex: 1;

    align-items: center;
    justify-content: center;

    min-width: 0;
}

.banner-combo .title-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 750px;

    /* ajuste óptico */
    transform: translateX(40px);
}

.banner-combo .title-content > img {
    display: block;

    width: 600px;
    max-width: 80%;
    height: auto;

    transform: translateY(-15px);
}


/* =========================
   DESCRIÇÃO DO TÍTULO
   ========================= */

.banner-combo .title-content .description {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    font-size: 22px;

    color: var(--c-text);

    transform: translateY(-35px);
}

.banner-combo .title-content .description .text {
    font-style: italic;
    font-weight: 400;
}

.banner-combo .title-content .description strong {
    color: var(--c-brand);

    font-style: italic;
    font-weight: 700;
}


/* =========================
   CATEGORIAS
   ========================= */

.banner-combo .title-content .text-categories {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 12px;

    font-style: italic;
    font-weight: 600;

    white-space: nowrap;
}

.banner-combo .title-content .text-categories img {
    width: 35px;
    height: auto;

    flex-shrink: 0;
}

/* ==========================================================================
   “Sobre a Borex” (vídeo + conteúdo)
   ========================================================================== */

.banner-a-borex {
    position: relative;
    width: 100%;
    min-height: var(--h-borex-banner);
    overflow: hidden;
    background: var(--c-bg-app);
}

.banner-a-borex__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-a-borex__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(
                    90deg,
                    rgba(14, 26, 37, 0.94) 0%,
                    rgba(14, 26, 37, 0.88) 24%,
                    rgba(14, 26, 37, 0.45) 48%,
                    rgba(14, 26, 37, 0.08) 72%,
                    rgba(14, 26, 37, 0) 100%
            );
}

.banner-a-borex__content {
    position: relative;
    z-index: 2;
    min-height: var(--h-borex-banner);
    max-width: 760px;
    padding: 56px 20px 56px 32px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-a-borex__content h1 {
    margin: 0 0 18px;
    max-width: 680px;

    color: var(--c-text);
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.2;
    font-weight: 700;
}

.banner-a-borex__content h1 span {
    font-style: italic;
    font-weight: 800;
}

.banner-a-borex__content p {
    margin: 0 0 28px;
    max-width: 620px;

    color: var(--c-text);
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.65;
    text-align: left;
}

.banner-a-borex__content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 156px;
    height: 46px;
    padding: 0 22px;

    border: 1px solid rgba(17, 26, 43, 0.10);
    border-radius: 999px;

    background: var(--c-brand);
    color: var(--c-bg-app);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;

    box-shadow: 0 10px 22px rgba(227, 197, 49, 0.22);
    overflow: hidden;

    transition:
            transform 0.22s ease,
            box-shadow 0.22s ease,
            filter 0.22s ease;
}

.banner-a-borex__content a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.28) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-22deg);
    transition: left 0.45s ease;
}

.banner-a-borex__content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(227, 197, 49, 0.30);
    filter: brightness(1.02);
}

.banner-a-borex__content a:hover::after {
    left: 140%;
}

.banner-a-borex__content a:active {
    transform: translateY(0);
}

.banner-a-borex__content a:focus {
    outline: none;
    box-shadow:
            0 0 0 4px rgba(227, 197, 49, 0.20),
            0 14px 28px rgba(227, 197, 49, 0.30);
}

@media (max-width: 991px) {
    .banner-a-borex__overlay {
        background: linear-gradient(
                90deg,
                rgba(14, 26, 37, 0.95) 0%,
                rgba(14, 26, 37, 0.82) 42%,
                rgba(14, 26, 37, 0.35) 70%,
                rgba(14, 26, 37, 0.06) 100%
        );
    }

    .banner-a-borex__content {
        max-width: 640px;
        padding: 48px 20px 48px 24px;
    }

    .banner-a-borex__content p {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .banner-a-borex {
        min-height: auto;
    }

    .banner-a-borex__video {
        object-position: center;
    }

    .banner-a-borex__overlay {
        background: linear-gradient(
                180deg,
                rgba(14, 26, 37, 0.88) 0%,
                rgba(14, 26, 37, 0.76) 38%,
                rgba(14, 26, 37, 0.58) 100%
        );
    }

    .banner-a-borex__content {
        min-height: auto;
        max-width: 100%;
        padding: 44px 16px 42px;
    }

    .banner-a-borex__content h1 {
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.15;
    }

    .banner-a-borex__content p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.6;
    }

    .banner-a-borex__content a {
        min-width: 148px;
        height: 44px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Produtos Borex (bandas/insumos)
   ========================================================================== */

.produtos-borex {
    background-color: var(--c-bg-app);
    height: 700px;
    background-image: linear-gradient(0deg, rgba(227,197,49,0.4291) 0%, var(--c-bg-app) 5%);
}

.produtos-borex .produtos-borex-header {
    padding: var(--space-25);
}

.produtos-borex .produtos-borex-header img {
    margin: 15px 0 0 25px;
    height: 130px;
    width: 180px;
}

.produtos-borex .produtos {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

.produtos-borex .produtos h1 {
    color: var(--c-text);
    font-style: italic;
    font-size: var(--fs-30);
    font-weight: 700;
    text-align: center;
}

.produtos-borex .produtos .bandas,
.produtos-borex .produtos .insumos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produtos-borex .produtos .bandas .content,
.produtos-borex .produtos .insumos .content {
    flex: 1;

    width: 410px;
    margin-bottom: 28px;

    display: flex;
    flex-direction: column;

    padding: 22px 0 0;
    box-sizing: border-box;
    overflow: hidden;

    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to top, var(--c-brand), rgba(0, 0, 0, 0)) 1;
}

.produtos-borex .produtos .bandas .content p,
.produtos-borex .produtos .insumos .content p {
    margin: 0 0 18px;
    height: 96px;
    padding: 0 20px;

    color: var(--c-text);
    font-size: var(--fs-15);
    line-height: 1.55;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    overflow-wrap: break-word;
    box-sizing: border-box;
    letter-spacing: 0.2px;
}

.produtos-borex .produtos .produto-imagem {
    margin-top: auto;
    width: 100%;
}

.produtos-borex .produtos .bandas .content img {
    width: 400px;
}

.produtos-borex .produtos .insumos .content img {
    width: 402px;
    height: 132px;
}

.produtos-borex .produtos .bandas a,
.produtos-borex .produtos .insumos a {
    margin-top: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(17, 26, 43, 0.10);
    border-radius: 999px;
    background: var(--c-brand);
    color: #111a2b;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(227, 197, 49, 0.22);
    overflow: hidden;
    transition:
            transform 0.22s ease,
            box-shadow 0.22s ease,
            filter 0.22s ease,
            background-color 0.22s ease;
}

/* ==========================================================================
   Novidades Borex (YouTube/Instagram)
   ========================================================================== */

.novidades-borex {
    background-color: var(--c-bg-app);
    height: 700px;
    background-image: linear-gradient(180deg, rgba(227,197,49,0.4291) 0%, var(--c-bg-app) 5%);
}

.novidades-borex .novidades-borex-header {
    padding: var(--space-25);
}

.novidades-borex .novidades-borex-header img {
    margin: 30px 0 0 25px;
    height: 130px;
    width: 180px;
}

.novidades-borex .conteudo p {
    color: var(--c-text);
    font-size: var(--fs-20);
    text-align: center;
}

.novidades-borex .conteudo .redes-sociais {
    margin-top: var(--space-70);
    display: flex;
    justify-content: space-evenly;
}

.novidades-borex .conteudo .redes-sociais .youtube,
.novidades-borex .conteudo .redes-sociais .instagram {
    width: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.novidades-borex .conteudo .redes-sociais iframe {
    width: 410px;
    border: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--c-brand), rgba(0,0,0,0)) 1;
}

.novidades-borex .conteudo .redes-sociais .youtube h1,
.novidades-borex .conteudo .redes-sociais .instagram h1 {
    color: var(--c-text);
    font-style: italic;
    font-size: var(--fs-30);
    font-weight: 700;
}

/* ==========================================================================
   Contato (informações + formulário)
   ========================================================================== */
.contato {
    background-color: var(--c-bg-app);
    background-image: linear-gradient(0deg, rgba(227, 197, 49, 0.7232) -3%, var(--c-bg-app) 36%);
    color: var(--c-text);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 72px;
    padding: 80px 24px;
    min-height: 650px;
}

.contato .informacoes,
.contato .formulario {
    width: 100%;
    max-width: 470px;
}

.contato .informacoes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato .informacoes .contato-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--c-brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contato .informacoes h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    font-style: italic;
    color: #fff;
}

.contato .informacoes p {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    max-width: 420px;
}

.contato .contato-canais {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contato .contato-canais .canal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.contato .contato-canais .canal-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--c-brand);
    flex-shrink: 0;
}

.contato .contato-canais .email-contato {
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    word-break: break-word;
}

.contato .formulario {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.contato .formulario .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.contato .formulario input,
.contato .formulario select,
.contato .formulario textarea {
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: all 0.25s ease;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.contato .formulario input,
.contato .formulario select {
    min-height: 52px;
    border-radius: 16px;
}

.contato .formulario textarea {
    min-height: 130px;
    border-radius: 18px;
    resize: vertical;
}

.contato .formulario input::placeholder,
.contato .formulario textarea::placeholder {
    color: rgba(255, 255, 255, 0.70);
}

.contato .formulario select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
            linear-gradient(45deg, transparent 50%, var(--c-brand) 50%),
            linear-gradient(135deg, var(--c-brand) 50%, transparent 50%);
    background-position:
            calc(100% - 18px) calc(50% - 3px),
            calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.contato .formulario input:focus,
.contato .formulario select:focus,
.contato .formulario textarea:focus {
    border-color: var(--c-brand);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 4px rgba(227, 197, 49, 0.14);
}

.contato .formulario .full {
    grid-column: span 2;
}

.contato .formulario .termo_de_autorizacao {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.5;
}

.contato .formulario .termo_de_autorizacao input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: auto;
    padding: 0;
    margin: 0 4px 0 0;
    accent-color: var(--c-brand);
    box-shadow: none;
    border: none;
    flex-shrink: 0;
}

.contato .formulario .termo_de_autorizacao label {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.contato .formulario .termo_de_autorizacao a {
    color: var(--c-brand);
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.contato .formulario .termo_de_autorizacao a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.contato .formulario #enviar-mensagem {
    min-height: 50px;
    padding: 0 28px !important;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(180deg, #f6d94c 0%, #f1cd1c 100%);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 10px 24px rgba(227, 197, 49, 0.28);
}

/* Hover */
.contato .formulario #enviar-mensagem:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 28px rgba(227, 197, 49, 0.34);
}

/* Active */
.contato .formulario #enviar-mensagem:active {
    transform: translateY(0);
}

/* Focus */
.contato .formulario #enviar-mensagem:focus {
    outline: none;
    box-shadow:
            0 14px 28px rgba(227, 197, 49, 0.34),
            0 0 0 4px rgba(227, 197, 49, 0.16);
}

/* Estado loading */
.contato .formulario #enviar-mensagem.is-loading {
    cursor: not-allowed;
    opacity: 0.9;
    filter: grayscale(0.1);
}

.contato .formulario #enviar-mensagem.is-loading:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(227, 197, 49, 0.28);
}

/* Spinner */
.contato .formulario #enviar-mensagem .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(16, 30, 43, 0.25);
    border-top: 2px solid #101e2b;
    border-radius: 50%;
    animation: contatoBtnSpin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes contatoBtnSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contato .formulario select option {
    color: #1b2430;
    background: #fff;
}

/* <= 1499px (ajustes legados) */
@media (max-width: 1499px) {
    .produtos .descricao p {
        font-size: 10px;
    }

    .produtos .produtos-info .produto p {
        font-size: 1.5rem;
    }
}

/* <= 1280px */
@media (max-width: 1280px) {
    .pdd-left {
        flex: 0 0 44%;
        margin-right: 14px;
    }

    .discount-badge {
        width: 170px;
        height: 56px;
    }

    .promo-warning {
        width: 170px;
    }

    .discount-value {
        font-size: var(--fs-40);
    }

    .discount-symbol {
        font-size: 16px;
    }

    .banner-combo {
        height: 350px;
    }

    .banner-combo .products-container {
        width: 490px;
    }

    .banner-combo .products-container > img {
        width: 490px;
        height: 350px;
    }

    .banner-combo .products-container .description {
        left: -40px;

        font-size: 10px;
    }

    .banner-combo .title-content {
        transform: translateX(25px);
    }

    .banner-combo .title-content .description {
        font-size: 19px;

        transform: translateY(-28px);
    }

    .banner-combo .title-content .text-categories img {
        width: 30px;
    }
}

/* <= 1200px */
@media (max-width: 1200px) {
    .pdd-left {
        flex: 0 0 44%;
        margin-right: 18px;
    }

    .pdd-hero {
        height: 340px;
        max-height: 340px;
    }

    .pdd-slide {
        column-gap: var(--space-10);
    }

    .pdd-product {
        row-gap: var(--space-10);
    }

    .discount-badge {
        width: 160px;
        height: 58px;
    }

    .promo-warning {
        width: 160px;
    }

    .discount-value {
        font-size: var(--fs-42);
    }

    .discount-symbol {
        font-size: 17px;
    }

    .banner-combo {
        height: 330px;
    }

    .banner-combo .products-container {
        width: 460px;
    }

    .banner-combo .products-container > img {
        width: 460px;
        height: 330px;
    }

    .banner-combo .products-container .description {
        left: -35px;

        font-size: 10px;
    }

    .banner-combo .title-content {
        transform: translateX(20px);
    }

    .banner-combo .title-content > img {
        width: 80%;
        height: auto;
    }

    .banner-combo .title-content .description {
        font-size: 18px;

        transform: translateY(-25px);
    }

    .banner-combo .title-content .text-categories {
        gap: 7px;

        font-size: 14px;
    }

    .banner-combo .title-content .text-categories img {
        width: 28px;
    }
}

/* <= 1024px */
@media (max-width: 1024px) {
    .pdd-left {
        flex: 0 0 46%;
        margin-right: 16px;
    }

    .pdd-hero {
        height: 320px;
        max-height: 320px;
    }

    .discount-badge {
        width: 150px;
        height: 56px;
        padding: 0 14px;
    }

    .promo-warning {
        width: 150px;
    }

    .discount-value {
        font-size: var(--fs-38);
    }

    .discount-symbol {
        font-size: 16px;
        transform: translateY(3px);
    }

    .pdd-title {
        font-size: var(--fs-19);
        line-height: 1.1;
    }

    .promo-terms {
        font-size: 11.5px;
    }

    .banner-combo {
        height: 300px;
    }

    .banner-combo .products-container {
        width: 410px;
    }

    .banner-combo .products-container > img {
        width: 410px;
        height: 300px;
    }

    .banner-combo .products-container .description {
        left: -25px;

        font-size: 8.5px;
    }

    .banner-combo .title-content {
        transform: translateX(5px);
    }

    .banner-combo .title-content > img {
        width: 85%;
    }

    .banner-combo .title-content .description {
        font-size: 16px;

        transform: translateY(-18px);
    }

    .banner-combo .title-content .text-categories {
        gap: 6px;

        font-size: 12px;
    }

    .banner-combo .title-content .text-categories img {
        width: 23px;
    }
}

@media (max-width: 991px) {
    .contato {
        flex-direction: column;
        gap: 36px;
        padding: 64px 20px;
        min-height: auto;
    }

    .contato .informacoes,
    .contato .formulario {
        max-width: 100%;
    }

    .contato .informacoes {
        text-align: center;
        align-items: center;
    }

    .contato .informacoes .contato-tag {
        align-self: center;
    }

    .contato .informacoes p {
        max-width: 100%;
    }

    .contato .contato-canais {
        width: 100%;
        align-items: center;
    }
}

/* <= 900px */
@media (max-width: 900px) {
    .pdd-left {
        flex: 0 0 48%;
        margin-right: 14px;
    }

    .pdd-hero {
        height: 300px;
        max-height: 300px;
    }

    .discount-badge {
        width: 144px;
        height: 52px;
        padding: 0 var(--space-12);
    }

    .promo-warning {
        width: 144px;
    }

    .discount-value {
        font-size: var(--fs-36);
    }

    .discount-symbol {
        font-size: 15px;
    }

    .pdd-title {
        font-size: var(--fs-18);
    }

    .promo-terms {
        font-size: var(--fs-11);
    }

    .banner-combo {
        height: 280px;
    }

    .banner-combo .products-container {
        width: 380px;
    }

    .banner-combo .products-container > img {
        width: 380px;
        height: 280px;
    }

    .banner-combo .products-container .description {
        left: -20px;
        bottom: 5px;

        font-size: 8px;
    }

    .banner-combo .title-content {
        transform: none;
    }

    .banner-combo .title-content > img {
        width: 85%;
        height: auto;

        transform: translateY(-5px);
    }

    .banner-combo .title-content .description {
        font-size: 14px;

        transform: translateY(-12px);
    }

    .banner-combo .title-content .text-categories {
        gap: 5px;

        margin-top: 7px;

        font-size: 11px;
    }

    .banner-combo .title-content .text-categories img {
        width: 20px;
    }
}

@media (max-width: 768px) {
    .pdd-left {
        flex: 0 0 50%;
        margin-right: var(--space-12);
    }

    .pdd-hero {
        height: auto !important;
        max-height: none !important;
        flex-direction: column;
    }

    .discount-badge {
        width: 138px;
        height: 50px;
        padding: 0 var(--space-10);
    }

    .promo-warning {
        width: auto !important;
        max-width: 90%;
        margin: 0 auto var(--space-18) !important;
        text-align: center !important;
        white-space: normal;
        display: block;
        font-size: 11.5px;
    }

    .discount-value {
        font-size: 34px;
    }

    .discount-symbol {
        font-size: 14px;
    }

    .pdd-title {
        font-size: 17.5px;
    }

    .promo-terms {
        font-size: 10.8px;
    }

    .banner-combo {
        height: auto;
        max-height: none;

        flex-direction: column;

        padding-bottom: 25px;
    }

    .banner-combo .products-container {
        width: 100%;
    }

    .banner-combo .products-container > img {
        width: 100%;
        height: auto;
    }

    .banner-combo .products-container .description {
        left: 0;
        bottom: 8px;

        width: 100%;

        padding: 0 15px;

        box-sizing: border-box;

        font-size: 9px;
    }

    .banner-combo .title-container {
        width: 100%;

        padding: 25px 15px 0;

        box-sizing: border-box;

        justify-content: center;
    }

    .banner-combo .title-content {
        width: 100%;
        max-width: none;

        transform: none;
    }

    .banner-combo .title-content > img {
        width: 85%;
        max-width: 500px;
        height: auto;

        transform: none;
    }

    .banner-combo .title-content .description {
        margin-top: 10px;

        font-size: 17px;

        transform: none;
    }

    .banner-combo .title-content .text-categories {
        flex-wrap: wrap;

        gap: 6px;

        margin-top: 12px;

        font-size: 13px;

        white-space: normal;
    }

    .banner-combo .title-content .text-categories img {
        width: 24px;
    }

    .contato .formulario .form-grid {
        grid-template-columns: 1fr;
    }

    .contato .formulario .full {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .pdd-left {
        flex: 0 0 52%;
        margin-right: var(--space-10);
    }

    .pdd-hero {
        height: 270px;
        max-height: 270px;
    }

    .discount-badge {
        width: 130px;
        height: 46px;
        padding: 0 var(--space-10);
    }

    .promo-warning {
        width: auto !important;
        max-width: 100%;
        margin: 0 auto 16px !important;
        white-space: normal;
    }

    .discount-value {
        font-size: var(--fs-32);
    }

    .discount-symbol {
        font-size: 13px;
    }

    .pdd-title {
        font-size: 17px;
    }

    .promo-terms {
        font-size: 10.6px;
    }

    .banner-combo .products-container .description {
        left: 0;

        padding: 0 15px;

        box-sizing: border-box;

        font-size: 8px;
    }

    .banner-combo .title-content > img {
        width: 90%;
    }

    .banner-combo .title-content .description {
        font-size: 16px;
    }

    .banner-combo .title-content .text-categories {
        font-size: 12px;
        gap: 5px;
    }

    .banner-combo .title-content .text-categories img {
        width: 21px;
    }

    .contato {
        padding: 56px 16px;
        gap: 28px;
    }

    .contato .informacoes h1 {
        font-size: 30px;
    }

    .contato .informacoes p {
        font-size: 15px;
        line-height: 1.6;
    }

    .contato .contato-canais .canal-item {
        font-size: 16px;
        align-items: flex-start;
    }

    .contato .contato-canais .email-contato {
        font-size: 15px;
    }

    .contato .formulario {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .contato .formulario input,
    .contato .formulario select,
    .contato .formulario textarea {
        font-size: 14px;
    }

    .contato .formulario #enviar-mensagem {
        width: 100%;
    }

    .contato .formulario .termo_de_autorizacao {
        align-items: flex-start;
    }
}

/* <= 540px (PDD ajusta colunas) */
@media (max-width: 540px) {
    .pdd-hero {
        height: auto;
        max-height: none;
        flex-direction: column;
    }

    .pdd-left {
        flex: 0 0 auto;
        width: 100%;
        margin: 0;
        justify-content: center;
        align-items: flex-end;
        overflow: hidden;
    }

    .pdd-left img {
        width: auto;
        height: 200px;
        max-width: 100%;
        object-fit: contain;
        object-position: center bottom;
        margin: 0 auto;
        display: block;
    }

    .pdd-right {
        width: 100%;
        padding: 0 var(--space-12);
        margin: var(--space-12) auto 0;
        height: auto;
        overflow: visible;
    }

    .pdd-track {
        height: auto;
        border-radius: var(--radius-8);
    }

    .pdd-slide {
        overflow: visible;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-content: start;
    }

    .pdd-product {
        height: auto;
        row-gap: 12px;
    }

    .pdd-product img,
    .pdd-slide img {
        height: auto;
        max-height: 220px;
        width: 100%;
        object-fit: contain;
    }

    .promo-warning {
        width: auto !important;
        max-width: 100%;
        margin: 0 auto var(--space-18) !important;
        text-align: center !important;
        white-space: normal;
        margin-bottom: 16px;
    }

    .pdd-title {
        font-size: 17px;
    }

    .discount-badge {
        margin-bottom: 16px;
    }

    .banner-combo {
        height: auto;
        flex-direction: column;
    }

    .banner-combo .products-container {
        width: 100%;
    }

    .banner-combo .products-container > img {
        width: 100%;
        height: auto;
    }
}

/* <= 500px */
@media (max-width: 500px) {
    .banner-combo {
        height: auto;
        min-height: 0;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: 24px;
    }

    .banner-combo .products-container {
        width: 100%;
    }

    .banner-combo .products-container > img {
        width: 100%;
        height: auto;
    }

    .banner-combo .products-container .description {
        left: 0;
        bottom: 6px;

        width: 100%;
        padding: 0 12px;

        box-sizing: border-box;

        font-size: 7px;
        line-height: 1.2;
    }

    .banner-combo .title-container {
        width: 100%;
        padding: 20px 10px 0;

        box-sizing: border-box;
    }

    .banner-combo .title-content {
        width: 100%;
        max-width: none;

        transform: none;
    }

    .banner-combo .title-content > img {
        width: 95%;
        max-width: 450px;
        height: auto;

        transform: none;
    }

    .banner-combo .title-content .description {
        margin-top: 8px;

        font-size: 15px;

        transform: none;
    }

    .banner-combo .title-content .text-categories {
        flex-wrap: wrap;

        gap: 5px;

        margin-top: 10px;

        font-size: 11px;
        line-height: 1.4;

        white-space: normal;
    }

    .banner-combo .title-content .text-categories img {
        width: 19px;
    }

    /* Esteira */
    #banner-esteira {
        display: none;
    }

    /* Sobre a Borex */
    .banner-a-borex,
    .banner-a-borex .content {
        height: 220px;
    }

    .banner-a-borex .content h1,
    .banner-a-borex .content p {
        font-size: var(--fs-20);
    }

    .banner-a-borex .content p {
        font-size: var(--fs-12);
    }

    .banner-a-borex .content a {
        width: 95px;
        height: 30px;
        padding: 5px;
        font-size: var(--fs-15);
    }

    /* Produtos Borex */
    .produtos-borex .produtos-borex-header img {
        margin: 0;
    }

    .produtos-borex .produtos {
        flex-direction: column;
    }

    .produtos-borex .produtos .insumos {
        margin-top: 15px;
    }

    .produtos-borex .produtos .bandas .content,
    .produtos-borex .produtos .insumos .content {
        width: 350px;
    }

    .produtos-borex .produtos h1 {
        font-size: var(--fs-24);
    }

    .produtos-borex .produtos .bandas .content p,
    .produtos-borex .produtos .insumos .content p {
        font-size: var(--fs-12);
    }

    .produtos-borex .produtos .bandas .content img,
    .produtos-borex .produtos .insumos .content img {
        width: 340px;
    }

    .produtos-borex {
        height: 985px;
    }

    /* Novidades Borex */
    .novidades-borex {
        height: 835px;
    }

    .novidades-borex .novidades-borex-header img {
        margin-left: 0;
    }

    .novidades-borex .conteudo p {
        font-size: var(--fs-12);
    }

    .novidades-borex .conteudo .redes-sociais {
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
    }

    .novidades-borex .conteudo .redes-sociais iframe,
    .novidades-borex .conteudo .redes-sociais .youtube,
    .novidades-borex .conteudo .redes-sociais .instagram {
        width: 330px;
    }

    .novidades-borex .conteudo .redes-sociais .instagram {
        margin-top: 20px;
    }

    .novidades-borex .conteudo .redes-sociais .youtube h1,
    .novidades-borex .conteudo .redes-sociais .instagram h1 {
        margin-top: 7px !important;
        font-size: var(--fs-24);
    }

    /* Contato */
    .contato {
        flex-direction: column;
        align-items: center;
        height: 880px;
    }

    .contato .informacoes {
        width: 85%;
        margin-top: 20px;
        text-align: center;
    }

    .contato .informacoes h1,
    .contato .informacoes #telefone_email,
    .contato .informacoes #telefone_email #email {
        font-size: var(--fs-24);
    }

    .contato .informacoes #telefone_email #email {
        display: block;
    }

    .contato .informacoes p {
        font-size: var(--fs-12);
    }

    .contato .formulario {
        width: 85%;
        margin-top: 0;
    }

    .contato .formulario a#enviar-messagem {
        margin-top: 10px;
        width: 51%;
    }
}

/* >= 1200px (ajustes legados) */
@media (min-width: 1200px) {
    .promo-diferentes .descricao {
        margin-top: 10%;
    }
}

/* >= 1450px */
@media (min-width: 1450px) {
    .promo-diferentes .descricao {
        margin-top: 12%;
    }
}

/* >= 1500px */
@media (min-width: 1500px) {
    .pdd-hero {
        height: var(--h-hero-xl);
        max-height: var(--h-hero-xl);
    }

    .pdd-left img {
        height: 100%;
        object-fit: contain;
    }

    .pdd-slide {
        column-gap: 80px;
    }

    .pdd-info {
        justify-self: end;
        width: auto;
        max-width: none;
    }

    .pdd-product img {
        max-height: 100%;
    }

    .promo-warning {
        font-size: var(--fs-14);
    }

    .promo-terms {
        font-size: var(--fs-14);
        line-height: 1.6;
    }

    /* Legados */
    .produtos .descricao p {
        width: 65% !important;
        font-size: var(--fs-13) !important;
    }

    .banner-combo {
        height: 390px;
    }

    .banner-combo .products-container {
        width: 550px;
    }

    .banner-combo .products-container > img {
        width: 550px;
        height: 390px;
    }

    .banner-combo .title-content {
        transform: translateX(40px);
    }

    .banner-combo .title-content > img {
        width: 600px;
        max-width: 80%;
    }

    .banner-combo .title-content .description {
        font-size: 22px;

        transform: translateY(-35px);
    }

    .banner-combo .title-content .text-categories img {
        width: 35px;
    }
}

/* >= 1600px */
@media (min-width: 1600px) {
    .promo-diferentes .descricao {
        margin-top: 11%;
    }
}

/* >= 1700px */
@media (min-width: 1700px) {
    .promo-diferentes .descricao {
        margin-top: 9%;
    }

    .banner-produto-do-dia .promo-info {
        margin-left: 100px;
    }

    .banner-combo .products-container {
        width: 700px;
    }

    .banner-combo .products-container > img {
        width: 700px;
        height: 390px;
    }

    .banner-combo .products-container .description {
        left: -50px;
    }

    .banner-combo .title-container {
        flex: 1;

        justify-content: flex-end;

        padding-right: 30px;

        box-sizing: border-box;
    }

    .banner-combo .title-content {
        width: 750px;
        max-width: 750px;

        transform: none;
    }

    .banner-combo .title-content > img {
        width: 600px;
        max-width: 100%;
    }
}