body {
    padding-top: 88px;
    /* padding-bottom: 70px; Removed for sticky footer */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1020;
}

.bg-primary {
    background-color: #1e3a8a !important;
}

.text-primary mb-4 {
    color: black;
}

.text-warning {
    color: #fd7e14 !important;
}

.btn-warning {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
}

.hover-text-warning:hover {
    color: #ffc107 !important;
}

.vh-70 {
    height: 70vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.display-1 {
    font-size: 6rem;
}

.bg-dark {
    background-color: #0c1944 !important;
}

.partner-logo {
    width: 14rem;
    height: 14rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.venz-logo-img {
    width: 80%;
}

.valedourado-logo {
    max-width: 250px;
}

.table-nutri-border-bottom {
    border-bottom: 1px solid #ed7000;
}

.product-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 0.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-img-small {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 1rem;
}

.product-detail-img {
    max-height: 350px;
    /* Reduced from 500px */
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 4rem;
    }

    .partner-logo {
        width: 10rem;
        height: 10rem;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 3rem;
    }

    .partner-logo {
        width: 8rem;
        height: 8rem;
    }
}


/* ===============================
   ESTILO GERAL
================================ */
body {
    background-color: #ffffff;
    scroll-behavior: smooth;
}

.hover-text-warning:hover {
    color: #ffca2c !important;
}

/* ===============================
   TÍTULOS DE CATEGORIAS (IDÊNTICO AO SITE VALEDOURADO)
================================ */
.section-title {
    color: #fd7e14;
    /* Laranja da marca */
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        text-align: left;
        border-bottom: 3px solid #f0f0f0;
        padding-bottom: 12px;
        margin-left: 5px;
    }
}

/* ===============================
   GRID DOS PRODUTOS
================================ */
.row.g-4 {
    row-gap: 30px !important;
    /* Reduced from 60px */
}

/* ===============================
   ITEM DE PRODUTO
================================ */
.product-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .2s ease-in-out;
    background-color: #ffffff;
}

.product-item:hover {
    transform: scale(1.04);
}

/* ===============================
   IMAGENS
================================ */
.product-item img {
    width: 100%;
    max-width: 250px;
    /* Increased from 200px */
    height: 230px;
    /* Increased from 180px */
    margin-bottom: 12px;
    object-fit: contain;
    /* Removed filter: drop-shadow */
}

/* ===============================
   NOME DO PRODUTO
================================ */
.product-name {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* ===============================
   PESO
================================ */
.product-weight {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
}

/* ===============================
   CORES DAS CATEGORIAS
================================ */
.cor-marrom {
    color: #777;
}

.cor-laranja {
    color: #777;
}

.cor-vermelho {
    color: #777;
}

.cor-amarelo {
    color: #777;
}

.cor-integral {
    color: #777;
}

.cor-roxo {
    color: #777;
}

.cor-verde {
    color: #777;
}

/* ===============================
   RESPONSIVIDADE
================================ */
@media (max-width: 768px) {
    .product-item img {
        max-width: 200px;
    }
}

.card-missao-visao-valores {
    text-align: center;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.unidades-title {
    text-align: center;
}

.unidades-card {
    height: 100%;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#whatsapp-icon svg {
    width: 35px;
    height: 35px;
}

/* WhatsApp Dropdown */
#whatsapp-dropdown {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1001;
    background-color: #fefefe;
    padding: 10px;
    border: 1px solid #888;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* ===============================
   ANIMAÇÕES E UTILITÁRIOS
================================ */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.1);
    /* Primary color with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #1e3a8a;
    /* Primary color */
    font-size: 1.5rem;
}

.page-header {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('../img/h1_hero1.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

/* ===============================
   CARROSSEL INFINITO
================================ */
.slider {
    height: 250px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 15);
    /* 5 logos * 3 sets */
    animation: scroll 40s linear infinite;
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.slide img {
    width: 100%;
    transition: transform 1s;
}

.slide img:hover {
    transform: translateZ(20px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

    /* Move by width of one set */
}

/* ===============================
   MAPA
================================ */
.map-container svg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.map-container svg:hover {
    transform: scale(1.02);
}

/* ===============================
   MAPA INTERATIVO
================================ */
.state {
    fill: #ff9933;
    /* Orange matching reference */
    stroke: #000000;
    /* Black stroke */
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.state:hover {
    fill: #e68a00;
    /* Darker orange on hover */
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

#state-tooltip {
    pointer-events: none;
    color: #555;
}

.list-benefits .bi-check-circle-fill {
    color: #fd7e14;
    /* Laranja da marca */
    font-size: 1.1rem;
}

.table-tech th {
    background-color: #1e3a8a;
    color: white;
    border: none;
}

.table-tech td {
    vertical-align: middle;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #fd7e14;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

/* ===============================
   ESTILOS DE PÁGINAS DE PRODUTOS
   ================================ */
.hero-brand {
    background: linear-gradient(135deg, #1e3a8a 0%, #0c1944 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    border-radius: 0 0 50px 50px;
    border-bottom: none;
}

.product-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem;
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* ===============================
   ANIMAÇÕES E UTILITÁRIOS
================================ */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.1);
    /* Primary color with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #1e3a8a;
    /* Primary color */
    font-size: 1.5rem;
}

.page-header {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('../img/h1_hero1.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

/* ===============================
   CARROSSEL INFINITO
================================ */
.slider {
    height: 250px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 15);
    /* 5 logos * 3 sets */
    animation: scroll 40s linear infinite;
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.slide img {
    width: 100%;
    transition: transform 1s;
}

.slide img:hover {
    transform: translateZ(20px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

    /* Move by width of one set */
}

/* ===============================
   MAPA
================================ */
.map-container svg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.map-container svg:hover {
    transform: scale(1.02);
}

/* ===============================
   MAPA INTERATIVO
================================ */
.state {
    fill: #ff9933;
    /* Orange matching reference */
    stroke: #000000;
    /* Black stroke */
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.state:hover {
    fill: #e68a00;
    /* Darker orange on hover */
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

#state-tooltip {
    pointer-events: none;
    color: #555;
}

.list-benefits .bi-check-circle-fill {
    color: #fd7e14;
    /* Laranja da marca */
    font-size: 1.1rem;
}

.table-tech th {
    background-color: #1e3a8a;
    color: white;
    border: none;
}

.table-tech td {
    vertical-align: middle;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #fd7e14;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

/* ===============================
   ESTILOS DE PÁGINAS DE PRODUTOS
   ================================ */
.hero-brand {
    background: linear-gradient(135deg, #1e3a8a 0%, #0c1944 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    border-radius: 0 0 50px 50px;
    border-bottom: none;
}

.product-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem;
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.product-title {
    color: #fd7e14;
    /* Laranja */
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fd7e14;
    display: inline-block;
    padding-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name {
    color: #555 !important;
    /* Preto/Cinza normal */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-align: center;
    /* Centralizando texto */
}

.list-benefits .list-group-item {
    border: none;
    padding-left: 0;
    font-size: 0.95rem;
    color: #555;
}

/* ===============================
   WIDGET WHATSAPP (ESTILO CHAT)
================================ */
.whatsapp-chat-widget {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-chat-header {
    background-color: #075e54;
    /* WhatsApp Dark Green */
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.btn-close-custom {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.btn-close-custom:hover {
    opacity: 1;
}

.whatsapp-chat-body {
    background-color: #e5ddd5;
    /* WhatsApp Chat Background Color */
    padding: 10px 0;
}

.whatsapp-contact-list {
    display: flex;
    flex-direction: column;
}

.whatsapp-contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: white;
    margin: 5px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s, transform 0.2s;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-contact-item:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.5rem;
    background-image: linear-gradient(to bottom right, #ccc, #999);
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.whatsapp-name {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

.whatsapp-role {
    font-size: 0.8rem;
    color: #666;
}

.whatsapp-status-indicator {
    width: 10px;
    height: 10px;
    background-color: #25D366;
    /* Online Green */
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px white;
}