:root {
    --mc-blue: #0b16ff;
    --mc-dark: #07106d;
    --mc-soft: #eef2ff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #212529;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.mc-navbar,
.footer-section,
.page-banner {
    background: linear-gradient(135deg, var(--mc-dark), var(--mc-blue));
}

.nav-logo,
.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
}

.hero-section {
    min-height: 75vh;
    background: linear-gradient(rgba(7, 16, 109, 0.82), rgba(11, 22, 255, 0.82));
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
}

/* CARDS */
.info-card,
.form-box,
.contact-highlight {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(9, 22, 95, 0.10);
}

.light-section {
    background: var(--mc-soft);
}

.form-control {
    border-radius: 12px;
    padding: 12px 14px;
}

.btn {
    border-radius: 12px;
}

/* BANNER */
.banner-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-label {
    background: #fff;
    color: #222;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.whatsapp-button {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PRODUTOS */
.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* 🔥 IMAGEM CORRIGIDA (SEM CORTE) */
.product-image-box {
    width: 100%;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 260px;
}

.product-img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    display: block;
}

/* TEXTO */
.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-code {
    font-size: 13px;
    color: #777;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #0d6efd;
}

.product-stock {
    font-size: 14px;
}

.stock-ok {
    color: #198754;
}

.stock-low {
    color: #dc3545;
}

/* MOBILE */
@media (max-width: 576px) {
    .banner-img {
        height: 280px;
    }

    .product-image-box {
        min-height: 220px;
        padding: 10px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-price {
        font-size: 22px;
    }
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: #0b16ff;
}