.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
        url('https://fornosdepizza.com.br/images/orcamento-jjac.jpg') center/cover no-repeat;
    /*background: url('../images/shutterstock_2431092831.jpg') center/cover no-repeat;); */
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.carousel img {
    border-radius: 10px;
    object-fit: cover;
    height: 420px;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    color: #b80000;
    font-weight: bold;
}

.img-zoom {
    overflow: hidden;
    cursor: pointer;
}

.img-zoom img {
    transition: transform 0.5s ease;
    border: none !important;
    box-shadow: none;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 85%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: none !important;
    box-shadow: none;
}

.form-control,
.form-select {
    border-radius: 8px;
}

/* =========================
       WHATSAPP FLOAT
       Botão na direita, perto da scrollbar
       Painel abre da direita->esquerda com fade in/out
       Borda cinza claro
       ========================= */
.wa-float {
    position: fixed;
    right: 10px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    flex-direction: row;
}

.wa-btn {
    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;
}

.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
}

.wa-btn:active {
    transform: translateY(0px) 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 */
.wa-panel {
    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);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.wa-panel.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.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(0px) 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;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .wa-panel {
        transform: translateY(10px);
    }

    .wa-panel.is-open {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-btn {
        animation: none;
    }

    .wa-panel {
        transition: none;
    }
}


/* ====== QR Codes no rodapé (Serviços) ====== */
.footer-qr-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    /* quebra no mobile */
    align-items: flex-start;
}

.footer-qr-item {
    width: clamp(110px, 45%, 140px);
    /* lado a lado e responsivo */
    text-align: center;
}

.footer-qr-item img {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .12);
}

.footer-qr-label {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
}