﻿:root {
    --font-family: "Source Sans Pro", sans-serif;
}

:root {
    --color-primary: #ff4b51; /* vermelho/rosa marca */
    --color-primary-light: #f5a302; /* amarelo/laranja destaque */
    --color-secondary: #edb721; /* amarelo secundário */
    --color-header-bg: #020a53; /* azul bem escuro (header/footer) */
    --color-header-font: #d1d1d1; /* texto principal no header */
    --color-header-font-2: #bdbdbd; /* texto secundário no header */
    --color-footer-bg: #020a53; /* mesmo do header */
    --color-footer-font: #d1d1d1;
    --color-footer-font-2: #bdbdbd;
    --color-footer-highlight: #ff4b51;
    --color-seal: #ff4b51; /* selos/badges */
    --color-seal-bg: #020a53;
}

body {
    background-color: white;
    font-family: Arial, sans-serif;

}

body,
.banner-centro,
.footer {
    font-family: var(--font-family);
}

/* topo */
.topo-tabloide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-header-bg);
    color: #fff;
    padding: 12px 20px;
}

.banner-esquerda img,
.banner-direita img {
    max-height: 200px;
    width: auto;
    display: block;
}

/* centro */
.banner-centro {
    flex: 1;
    padding: 0 24px;
    text-align: center;
}

    .banner-centro .titulo {
        margin: 0 0 12px;
        font-size: clamp(22px, 3vw, 34px);
        font-weight: 800;
        letter-spacing: 0.6px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
        border-bottom: 2px solid rgba(255, 255, 255, 0.18);
        display: inline-block;
        padding-bottom: 6px;
    }

        .banner-centro .titulo strong {
            color: var(--color-primary);
        }

    .banner-centro .contatos {
        margin-top: 18px;
    }

    .banner-centro .linha {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 6px 0;
    }

    .banner-centro .cta {
        font-weight: 700;
        background: rgba(255, 255, 255, 0.12);
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .banner-centro .zap {
        height: 48px;
        width: auto;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    }
    /* ícone maior */
    .banner-centro .fone {
        font-size: clamp(14px, 1.8vw, 18px);
    }

/* responsivo */
@media (max-width: 768px) {
    .banner-esquerda img,
    .banner-direita img {
        max-height: 64px;
    }

    .banner-centro {
        padding: 0 10px;
    }

        .banner-centro .zap {
            height: 22px;
        }
}


/* PRODUTO */
.produto-card {
    width: 100%;
    max-width: 360px;
    min-height: 300px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;    
}


.produto-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

.produto-container img {
        width: 100%;
        height: 100%;
        object-fit: contain; 
        image-rendering: -webkit-optimize-contrast;
}

/* Balões ajustados pra não passar por cima feio em telas pequenas */
.balao-preco, .balao-promocao {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 2;
    max-width: 80%;

}

.balao-preco {
    
    background-color: var(--color-header-bg);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.balao-promocao {
    background-color: #f59f00;
    color: #001c54;
    border-radius: 12px;
    padding: 8px 10px;
    font-weight: bold;
    width: 160px;
    text-align: left;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .balao-promocao .linha-1 {
        padding: 5px 0px;
        font-size: 0.75rem;
        margin-bottom: 0px;
    }

    .balao-promocao .linha-2 {       
        font-size: 0.85rem;        
    }

.small-text {
    font-size: 0.6rem;
    font-weight: 400;
}

.medium-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.med-text {
    font-size: 0.7rem;
}

.grande-preco {
    font-size: 20px;
    font-weight: 1000;
    color: #c82333;
}

.composicao {
    font-size: 0.75rem;
    color: #555;
    font-style: italic;
    margin-top: 4px;
}

.btn-carrinho {
    position: fixed;
    right: 50px;
    bottom: 16px;
    z-index: 1060; 
    padding: 14px 22px;
    font-size: 50px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* maior em desktop: */
@media (min-width: 992px) {
    .btn-carrinho {
        padding: 16px 26px;
        font-size: 20px;
    }
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #0e0256;
    padding: 10px 20px;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    flex-wrap: wrap;
}

    .footer .logo img {
        display: block;
        max-height: 40px;
    }
    .footer p {
        margin: 0;
        text-align: right;
    }

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

        .footer p {
            text-align: center;
        }
}

/*impressao pdf*/
.pdf-capture .no-pdf {
    display: none !important;
}


/*MODAL FINALIZAR PEDIDO*/
/* Controles grandes de quantidade */
.qty-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: transform .05s ease, box-shadow .15s ease, border-color .15s ease;
}

.qty-minus {
    color: #c62828;
    border-color: #ffcdd2;
    background: #fff5f5;
}

.qty-plus {
    color: #2e7d32;
    border-color: #c8e6c9;
    background: #f3fff3;
}

.qty-btn:active {
    transform: scale(.96);
}

.qty-btn:focus-visible {
    outline: 3px solid #2962ff;
    outline-offset: 2px;
}

.qty-display {
    min-width: 48px;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 10px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

@media (max-width:576px) {
    .qty-btn {
        width: 56px;
        height: 56px;
        font-size: 30px;
    }

    .qty-display {
        min-width: 54px;
        font-size: 22px;
    }
}

   

   





