body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
    color: #e60000;
    font-weight: bold;
}

.hero {
    background: url('https://jjac.com.br//images/shutterstock_2308375833.jpg') no-repeat center;
    background-size: cover;
    height: 350px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
}

.product-section {
    padding: 60px 0;
}

.product {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.product img {
    width: 250px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product img:hover {
    transform: scale(1.03);
}

.product h3 {
    margin-top: 15px;
}

.btn-orcamento {
    background-color: #e60000;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-orcamento:hover {
    background-color: #b80000;
}

footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    font-size: 16px;
}

footer li {
    font-size: 16px;
}

footer h6 {
    font-weight: bold;
}

.product img {
    border-radius: 8px;
    transition: transform 0.3s;
}

.product img:hover {
    transform: scale(1.03);
}

.product {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}



/* WhatsApp */

/* =========================
        WHATSAPP FLOAT (FIX ANTI-BLOQUEIO)
        - Container com área ZERO (não tapa a página)
        - Botão e painel posicionados ABSOLUTAMENTE
        - Painel fechado não recebe foco/clique (visibility:hidden)
        ========================= */

.wa-float {
    position: fixed;
    right: 10px;
    bottom: 18px;
    z-index: 9999;
    /* ✅ CRÍTICO: área de toque do container = zero */
    width: 0;
    height: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Botão sempre clicável */
.wa-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(0,0,0,.28);
    display: grid;
    place-items: center;
    transition: transform .15s ease, box-shadow .15s ease;
    animation: waWiggle 4.8s infinite;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

    .wa-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,.34);
    }

    .wa-btn:active {
        transform: translateY(0) scale(.98);
    }

    .wa-btn svg {
        width: 30px;
        height: 30px;
        fill: #fff;
    }

@keyframes waWiggle {
    0%,86% {
        transform: translateY(0) rotate(0deg);
    }

    88% {
        transform: translateY(-2px) rotate(-8deg);
    }

    90% {
        transform: translateY(0) rotate(8deg);
    }

    92% {
        transform: translateY(-2px) rotate(-6deg);
    }

    94% {
        transform: translateY(0) rotate(6deg);
    }

    96% {
        transform: translateY(-1px) rotate(-4deg);
    }

    98% {
        transform: translateY(0) rotate(4deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Painel: fica ao lado do botão (não cria área gigante) */
.wa-panel {
    position: absolute;
    right: 70px; /* distância do botão */
    bottom: 0;
    width: min(320px, calc(100vw - 110px));
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.16);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
    overflow: hidden;
    opacity: 0;
    transform: translateX(18px);
    /* ✅ CRÍTICO: fechado = não existe pra clique/foco */
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

    .wa-panel.is-open {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
        transition: opacity .22s ease, transform .22s ease, visibility 0s;
    }

.wa-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(44,43,43,0.94);
    color: #fff;
}

.wa-panel-title {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
}

.wa-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: .9;
}

    .wa-close:hover {
        opacity: 1;
    }

.wa-form {
    padding: 12px 14px 14px;
}

.wa-label {
    display: block;
    font-size: 12px;
    margin: 8px 0 6px;
    color: #222;
}

.wa-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}

    .wa-input:focus {
        border-color: rgba(0,0,0,0.25);
        box-shadow: 0 0 0 3px rgba(0,0,0,.08);
    }

.wa-send {
    width: 100%;
    margin-top: 12px;
    border: 0;
    border-radius: 12px;
    padding: 11px 12px;
    background: #dc3545;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease;
}

    .wa-send:hover {
        filter: brightness(.98);
        transform: translateY(-1px);
    }

    .wa-send:active {
        transform: translateY(0) scale(.99);
    }

.wa-hint {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(0,0,0,.65);
    line-height: 1.35;
}

@media (max-width: 420px) {
    .wa-float {
        right: 8px;
        bottom: 12px;
    }

    /* no mobile, sobe o painel pra cima do botão (sem invadir a tela toda) */
    .wa-panel {
        right: 0;
        bottom: 70px;
        transform: translateY(10px);
    }

        .wa-panel.is-open {
            transform: translateY(0);
        }

    /* evita painel enorme */
    .wa-panel {
        max-height: 60vh;
        overflow: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-btn {
        animation: none;
    }

    .wa-panel {
        transition: none;
    }
}