/* ================================================
   BASE
   ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --font-primary: 'Montserrat', sans-serif;
    --color-primary: #020202;
    --color-text: #212529;
    --color-muted: #6c757d;
    --color-bg: #d43224;
    --color-card-bg: #d43224;
    --border-radius: 0.75rem;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ================================================
   TIPOGRAFIA
   ================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

strong {
    font-weight: 600;
}

/* ================================================
   CARD DO PRODUTO
   ================================================ */
.card {
    border: none;
    border-radius: var(--border-radius);
    background-color: transparent;
}

.card-body {
    padding: 1.5rem 0;
}

.list-group {
    background: transparent;
    border: none;
    padding: 0;
}

.list-group-item {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.list-group-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f7a81b;
    border-radius: 50%;
}

#titulo-produto {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: normal;
}

#subtitulo-produto {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: normal;
}

#imagem-produto {
    width: 100%;
    max-width: 400px;
}

/* ================================================
   LOGO
   ================================================ */
.logo-img {
    width: 40vh;
}

.logo-texto {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    line-height: 1;
    margin-bottom: 0;
}

/* ================================================
   DISPONIBILIDADE
   ================================================ */
.disponibilidade {
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.55rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    max-width: 100%;
}

.disponibilidade__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.disponibilidade__dot--disponivel {
    background-color: #3ddc84;
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
    animation: pulse-green 1.8s ease-in-out infinite;
}

.disponibilidade__dot--indisponivel {
    background-color: #ff6b6b;
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.6);
    animation: pulse-red 1.8s ease-in-out infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(61, 220, 132, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.disponibilidade__label {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.disponibilidade__divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}

.disponibilidade__estoque {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.9rem;
}

.disponibilidade__estoque strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .disponibilidade {
        font-size: 0.85rem;
        padding: 0.45rem 1rem;
    }

    .disponibilidade__divider {
        display: none;
    }

    .disponibilidade__estoque {
        font-size: 0.82rem;
    }
}

/* ================================================
   CONTEÚDO PRINCIPAL
   ================================================ */
main {
    position: relative;
    z-index: 1;
}

/* ================================================
   DECORAÇÕES DE FUNDO
   ================================================ */
.bg-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-texture {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.035) 0px,
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px,
            transparent 20px);
}

.bg-diamond {
    position: absolute;
    border-radius: 20px;
    transform: rotate(45deg);
    border: 36px solid rgba(255, 255, 255, 0.07);
}

.bg-diamond--tr {
    width: 440px;
    height: 440px;
    top: -200px;
    right: -200px;
}

.bg-diamond--bl {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    border-color: rgba(0, 0, 0, 0.09);
}

.bg-lines {
    position: absolute;
    bottom: 80px;
    right: 5%;
    width: 160px;
    height: 160px;
    background-image: repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.09) 0px,
            rgba(255, 255, 255, 0.09) 2px,
            transparent 2px,
            transparent 18px);
}

.bg-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.bg-wave-bottom svg {
    display: block;
    width: 100%;
    height: 130px;
}

/* ================================================
   RESPONSIVIDADE — TABLET/SM (576px–767px)
   ================================================ */
@media (max-width: 767.98px) and (min-width: 576px) {
    .list-group-item {
        font-size: 1.1rem;
    }
}

/* ================================================
   RESPONSIVIDADE — MOBILE (<576px)
   ================================================ */
@media (max-width: 575.98px) {
    .list-group-item {
        font-size: 0.95rem;
    }

    .card-body {
        padding: 0.5rem 0;
    }

    .disponibilidade {
        font-size: 0.82rem;
        padding: 0.4rem 0.9rem;
        border-radius: 40px;
    }

    .disponibilidade__divider {
        display: none;
    }

    .disponibilidade__estoque {
        font-size: 0.8rem;
    }

    .bg-diamond--tr {
        width: 240px;
        height: 240px;
        top: -110px;
        right: -110px;
        border-width: 22px;
    }

    .bg-diamond--bl {
        width: 170px;
        height: 170px;
        bottom: -85px;
        left: -85px;
    }

    .bg-lines {
        width: 100px;
        height: 100px;
        bottom: 60px;
        right: 3%;
    }

    #imagem-produto {
        max-width: 100%;
    }
}

/* ================================================
   RESPONSIVIDADE — MOBILE GERAL (<768px)
   ================================================ */
@media (max-width: 767.98px) {
    .disponibilidade {
        font-size: 0.85rem;
        padding: 0.45rem 1rem;
    }

    .disponibilidade__estoque {
        font-size: 0.82rem;
    }
}

@media (max-width: 992px) and (min-width: 576px) {
    .disponibilidade__divider {
        display: none;
    }
}

@media (max-width: 576px) and (min-width: 350px) {
    .disponibilidade__divider {
        display: block;
    }
}