/* ==========================================================================
   MONTE CRISTO BEBIDAS — DESIGN SYSTEM & REQUINTE (CANTOS SUTIS)
   ========================================================================== */

:root {
    /* Brand Palette (From Official Logo) */
    --primary: #0E4663;
    --primary-hover: #083248;
    --primary-light: #F0F7FA;
    
    --teal: #1B7588;
    --teal-light: #EBF6F8;
    
    --emerald: #059669;
    --emerald-light: #ECFDF5;
    
    --amber: #D97706;
    --amber-light: #FFFBEB;
    
    --bg-page: #FFFFFF;
    --bg-surface: #FAFCFF;
    --bg-card: #FFFFFF;
    
    --text-dark: #0F172A;
    --text-main: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    
    --border: #E2E8F0;
    --border-subtle: #F1F5F9;
    --border-dark: #CBD5E1;
    
    /* Requinte Radius (Menos Redondos) */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    
    /* Elegant Shadows */
    --shadow-sm: 0 1px 3px rgba(14, 70, 99, 0.05);
    --shadow-md: 0 4px 12px rgba(14, 70, 99, 0.08);
    --shadow-lg: 0 8px 24px rgba(14, 70, 99, 0.12);
    --shadow-drawer: -8px 0 32px rgba(15, 23, 42, 0.2);
    
    /* Typography */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* O drawer do pedido fica estacionado fora da tela à direita; sem isso
       ele gera barra de rolagem horizontal no celular. */
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement Bar */
.top-bar {
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.82rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E2E8F0;
}

.top-info i {
    width: 14px;
    height: 14px;
    color: #38BDF8;
}

.top-info .divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-wa {
    color: #34D399;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.top-wa:hover {
    opacity: 0.85;
}

/* Header */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo-img {
    height: 60px;
    max-width: 200px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--teal);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
    border-radius: var(--radius-xs);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--emerald-light);
    border: 1px solid rgba(5, 150, 105, 0.25);
    border-radius: var(--radius-sm);
    color: #047857;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Cart Toggle Button Header */
.cart-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-toggle-btn:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-md);
}

.cart-count {
    background: var(--amber);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-xs);
}

/* Hero e quick-strip removidos: a primeira dobra agora é a barra de compra. */

.section {
    padding: 64px 0;
}

.section-header {
    margin-bottom: 36px;
}

.section-header.text-center {
    text-align: center;
}

.subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filters */
/* ==========================================================================
   BARRA DE COMPRA — substitui o hero. Busca e categorias grudadas no topo,
   para que a primeira dobra já seja o catálogo.
   ========================================================================== */
.shop-bar {
    position: sticky;
    top: 80px;
    z-index: 90;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 14px 0 12px 0;
    box-shadow: 0 4px 14px rgba(14, 70, 99, 0.05);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
    will-change: transform;
}

.shop-bar.bar-hidden {
    transform: translateY(-135%);
    opacity: 0;
    pointer-events: none;
}

.shop-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.shop-search {
    position: relative;
    flex: 1;
    min-width: 0;
}

.shop-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.shop-search-input {
    width: 100%;
    height: 46px;
    padding: 0 42px 0 42px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: all 0.2s;
}

.shop-search-input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(27, 117, 136, 0.12);
}

.shop-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.shop-search-clear.visible {
    display: flex;
}

.shop-search-clear:hover {
    background: var(--border-subtle);
    color: var(--text-dark);
}

.shop-view {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.shop-section {
    padding: 22px 0 90px 0;
}

.shop-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

#results-count {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.shop-meta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Chips de categoria: rolagem horizontal, como app */
/* Chips de categoria: no desktop usa wrap suave sem rolagem aninhada; no mobile mantém scroll horizontal nativo */
.category-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
}

@media (min-width: 992px) {
    .category-filters {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    .category-filters::-webkit-scrollbar {
        display: none;
    }
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: 9999px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--bg-surface);
    border-color: var(--teal);
    color: var(--teal);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* Menu Grid & Product Cards (REQUINTE DESIGN - MENOS REDONDO) */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
    gap: 14px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
}

.product-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.product-image-box {
    width: 100%;
    height: 152px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.product-img {
    max-height: 132px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Garrafas vetoriais geradas em bottles.js */
.bottle-svg {
    height: 128px;
    width: auto;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 6px 10px rgba(14, 70, 99, 0.10));
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center bottom;
}

.product-card:hover .bottle-svg {
    transform: translateY(-4px) scale(1.05);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.product-info {
    padding: 12px 13px 13px 13px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 5px;
    min-height: 2.6em;
}

.product-volume-strip {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-amount small {
    font-size: 0.8rem;
    font-weight: 700;
}

/* Seletor Varejo x Atacado no Card (Opção 2: Tab Selector + Botão Único Amplo) */
.card-unit-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: #F1F5F9;
    padding: 3px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

.card-tab {
    padding: 6px 2px;
    border-radius: var(--radius-xs);
    border: none;
    background: transparent;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.card-tab:hover {
    color: var(--text-dark);
}

.card-tab.active {
    background: #FFFFFF;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 800;
}

.product-price-box {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

.price-amount-display {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.price-amount-display small {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.price-subtext-display {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.price-subtext-display strong {
    color: #166534;
}

/* Botão Único Amplo e Respirado */
.btn-add-main {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
    border: none;
}

.btn-add-main i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-add-main.unit-mode {
    background: var(--primary-light);
    border: 1px solid var(--teal);
    color: var(--primary);
}

.btn-add-main.unit-mode:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(14, 70, 99, 0.2);
}

.btn-add-main.box-mode {
    background: #0E4663;
    border: 1px solid #0E4663;
    color: #FFFFFF;
}

.btn-add-main.box-mode:hover {
    background: #1B7588;
    border-color: #1B7588;
    box-shadow: 0 4px 12px rgba(27, 117, 136, 0.3);
}

/* ==========================================================================
   CARD NATIVO DE CONSIGNAÇÃO 20% NA VITRINE (DESTAQUE COMERCIAL MASTER)
   ========================================================================== */
.consignacao-native-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #072635 0%, #0E4663 55%, #155370 100%);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 28px -4px rgba(14, 70, 99, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.08);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.consignacao-native-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.25) 0%, rgba(14, 70, 99, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consignacao-native-card:hover {
    border-color: #38BDF8;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -4px rgba(14, 70, 99, 0.4);
}

.consignacao-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.consignacao-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(56, 189, 248, 0.45);
    color: #7DD3FC;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.consignacao-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.consignacao-card-title span {
    color: #38BDF8;
}

.consignacao-card-desc {
    font-size: 0.88rem;
    color: #CBD5E1;
    line-height: 1.45;
    margin-bottom: 14px;
}

.consignacao-card-desc strong {
    color: #F8FAFC;
}

.consignacao-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.22);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.consignacao-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #E2E8F0;
    font-weight: 600;
}

.consignacao-benefit-item i {
    width: 15px;
    height: 15px;
    color: #34D399;
    flex-shrink: 0;
}

.consignacao-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-consignacao-wa {
    flex: 1;
    min-width: 170px;
    background: #25D366;
    color: #064E3B;
    border: none;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}

.btn-consignacao-wa:hover {
    background: #22C55E;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.38);
    color: #022C22;
}

.btn-consignacao-info {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-consignacao-info:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Modal Explicativa de Consignação */
.modal-consignacao-box {
    max-width: 490px !important;
    text-align: left !important;
    padding: 26px 24px 22px !important;
}

.modal-consignacao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.modal-consignacao-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 70, 99, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-consignacao-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.modal-consignacao-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 20px 0;
}

.modal-step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.modal-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-step-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.modal-step-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.modal-consignacao-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .consignacao-native-card {
        grid-column: 1 / -1 !important;
        padding: 18px 15px;
    }
    .consignacao-card-title {
        font-size: 1.1rem;
    }
    .consignacao-card-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-consignacao-wa, .btn-consignacao-info {
        width: 100%;
        text-align: center;
    }
    .modal-consignacao-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .modal-consignacao-actions button,
    .modal-consignacao-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* Badges do item no carrinho */
.cart-item-tag {
    font-size: 0.74rem;
    font-weight: 700;
    margin-top: 2px;
    margin-bottom: 2px;
}

.cart-item-tag.box-tag {
    color: #047857;
}

.cart-item-tag.unit-tag {
    color: #475569;
}

/* Quantity selector inside card when added */
.card-qty-control {
    display: flex;
    align-items: center;
    background: var(--primary-light);
    border: 1px solid var(--teal);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.card-qty-btn {
    width: 28px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.card-qty-btn:hover {
    background: rgba(27, 117, 136, 0.15);
}

.card-qty-val {
    padding: 0 8px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
}

/* Special Highlight Section */
.special-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.special-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    box-shadow: var(--shadow-md);
}

.special-img-box {
    background: linear-gradient(135deg, #0E4663 0%, #1B7588 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.special-img {
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.3));
}

.special-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.special-desc {
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 24px;
}

.special-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* About Section */
.about-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
    border-left: 3px solid var(--teal);
    padding-left: 18px;
    font-style: italic;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--emerald);
}

/* Contact / Location Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--teal-light);
    border: 1px solid rgba(27, 117, 136, 0.2);
    border-radius: var(--radius-md);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-detail p, .contact-detail a {
    color: var(--text-main);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--teal);
}

/* ==========================================================================
   SEÇÃO DE PILARES DE ATENDIMENTO & DIFERENCIAIS B2B
   ========================================================================== */
.pillars-section {
    padding: 60px 0;
    background: #F8FAFC;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillars-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.pillars-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(14, 70, 99, 0.08);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pillars-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.pillars-subtitle {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 70, 99, 0.08);
    border-color: #CBD5E1;
}

.pillar-card.highlight {
    border: 2px solid #38BDF8;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

.pillar-badge-top {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #0284C7;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pillar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(14, 70, 99, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-card.highlight .pillar-icon-box {
    background: #E0F2FE;
    color: #0284C7;
}

.pillar-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.pillar-card-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    flex: 1;
}

.pillar-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL MASTER
   ========================================================================== */
.footer {
    background: #082638;
    color: #FFFFFF;
    padding: 60px 0 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-master-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-brand .footer-logo {
    height: 54px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-col-brand p {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #E2E8F0;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #38BDF8;
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav-list a:hover {
    color: #38BDF8;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #94A3B8;
}

.footer-contact-item i {
    color: #38BDF8;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-item a:hover {
    color: #38BDF8;
    text-decoration: underline;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: #38BDF8;
    color: #082638;
    border-color: #38BDF8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.82rem;
    color: #64748B;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 992px) {
    .footer-master-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-master-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TABELA DE PRODUTOS VIEW (MODO TABELA DE BEBIDAS COM FOTOS REAIS)
   ========================================================================== */

/* Alternador grade / lista — só ícone, na barra de compra */
.btn-view-mode {
    width: 46px;
    height: 46px;
    padding: 0;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-view-mode i {
    width: 19px;
    height: 19px;
}

.btn-view-mode.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.products-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.products-table th {
    background: var(--bg-surface);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 14px 18px;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.products-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.products-table tr:hover {
    background: var(--bg-surface);
}

.table-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.table-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* A garrafa vetorial se ajusta a qualquer moldura de miniatura */
.table-thumb .bottle-svg,
.cart-item-img .bottle-svg {
    height: 100%;
    max-height: 100%;
    width: auto;
    filter: none;
    transform: none;
}

.cart-thumb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.table-name {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    font-size: 0.98rem;
}

.table-volume {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.table-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--primary);
}

/* ==========================================================================
   SHOPPING CART DRAWER — ESTILO CLAEM (PADRÃO ESCURO PREMIUM MANTIDO)
   ========================================================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -520px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: var(--primary); /* Mesma cor do botão Pedido da home: #0E4663 */
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    right: 0;
}

/* Header do Carrinho */
.cart-header {
    background: #083248;
    color: #FFFFFF;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cart-title i {
    color: #38BDF8 !important;
}

/* Orange Continue Button (Padrão CLAEM) */
.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.15) !important;
    border: 1px solid #F59E0B !important;
    border-radius: 9999px;
    color: #F59E0B !important;
    font-size: 0.84rem;
    font-weight: 800;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.1);
}

.btn-continue-shopping:hover {
    background: #F59E0B !important;
    color: #000000 !important;
    border-color: #F59E0B !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: #A1A1AA;
    font-size: 1.4rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-close-btn:hover {
    color: #FFFFFF;
}

/* Cart Body (Mesma cor do botão pedido da home: var(--primary) #0E4663) */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 20px;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.cart-body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

/* Nenhum bloco do corpo pode encolher: o .cart-body é um flex column e sem
   isto a lista de itens colapsa e passa por baixo do formulário. */
.cart-body > * {
    flex-shrink: 0;
}

.cart-section-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #E2E8F0;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* "Limpar tudo" dentro do drawer escuro: pílula clara com texto vermelho
    escuro (#FECACA teria contraste, mas some no hover). Fundo branco com
    vermelho escuro #B91C1C garante leitura em todos os estados. */
.btn-clear-cart {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: #FFFFFF;
    border: 1px solid #FECACA;
    border-radius: 9999px;
    color: #B91C1C;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-cart:hover {
    background: #DC2626;
    border-color: #DC2626;
    color: #FFFFFF;
}

/* Lixeira do cabecalho, vizinha do botao Pedido. So icone, contornada e
   apagada: precisa estar a mao para zerar o pedido entre um cliente e outro
   no balcao, sem nunca parecer um botao de acao principal. */
.cart-clear-btn {
    display: none;                 /* o JS liga quando ha itens */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-clear-btn i {
    width: 17px;
    height: 17px;
}

.cart-clear-btn:hover {
    color: #DC2626;
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.06);
}

/* --- Confirmacao de acao destrutiva --- */
.confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.confirm-overlay[hidden] {
    display: none;
}

.confirm-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
    padding: 26px 24px 20px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.confirm-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-icon i {
    width: 22px;
    height: 22px;
}

.confirm-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.confirm-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.confirm-warning {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.confirm-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.confirm-btn {
    flex: 1;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Manter o pedido e o caminho seguro, entao e ele que fica solido. */
.confirm-cancel {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #FFFFFF;
}

.confirm-cancel:hover {
    background: var(--primary-hover);
}

.confirm-ok {
    background: transparent;
    border: 1px solid #FCA5A5;
    color: #DC2626;
}

.confirm-ok:hover {
    background: #DC2626;
    border-color: #DC2626;
    color: #FFFFFF;
}

@media (max-width: 380px) {
    .confirm-actions {
        flex-direction: column-reverse;
    }
}

.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cart-empty-msg {
    text-align: center;
    padding: 40px 20px;
    color: #A1A1AA;
}

.cart-empty-msg i {
    width: 48px;
    height: 48px;
    color: #3F3F46;
    margin-bottom: 12px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.cart-item-img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex-shrink: 0 !important;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
    position: relative !important;
}

/* Restrição absoluta para thumbnails dentro do item do carrinho */
.cart-item-img img, 
.cart-item-img svg, 
.cart-item-img .bottle-svg, 
.cart-item-thumb-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    position: static !important;
    transform: none !important;
    filter: none !important;
}

.cart-item-img .bottle-svg:hover,
.cart-item:hover .bottle-svg {
    transform: none !important;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 3px;
}

.cart-item-unit {
    font-size: 0.78rem;
    color: #475569;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #047857;
    font-weight: 800;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Controle de quantidade sobre o card branco do item */
.cart-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F1F5F9;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid #CBD5E1;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid #94A3B8;
    color: #0E4663;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
}

.cart-qty-btn:hover {
    background: #0E4663;
    border-color: #0E4663;
    color: #FFFFFF;
}

.cart-qty-num {
    font-weight: 800;
    font-size: 0.85rem;
    color: #0F172A;
    min-width: 34px;
    text-align: center;
}

.btn-remove-item {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    color: #B91C1C;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-remove-item:hover {
    background: #DC2626;
    border-color: #DC2626;
    color: #FFFFFF;
}

/* Grupos de opção do pedido (entrega, dados, pagamento) */
.cart-option-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-dark {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: rgba(5, 26, 38, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: #FFFFFF;
    font-family: var(--font-body);
}

.input-dark::placeholder {
    color: #94A3B8;
}

.input-dark:focus {
    outline: none;
    border-color: #38BDF8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.25);
}

/* Alternadores de entrega e pagamento */
.delivery-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Informação fixa de entrega (sem seletor: politica de entrega após as 24h úteis) */
.delivery-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(8, 38, 54, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.delivery-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-info-box i,
.delivery-info-box svg,
.delivery-icon-wrap i,
.delivery-icon-wrap svg {
    width: 24px !important;
    height: 24px !important;
    color: #38BDF8 !important;
    stroke: #38BDF8 !important;
    stroke-width: 2.2 !important;
    flex-shrink: 0;
}

.delivery-info-box p {
    margin: 0;
    font-size: 0.83rem;
    color: #F1F5F9;
    line-height: 1.45;
    font-weight: 500;
}

/* Aviso B2B Reserva Comercial */
.cart-b2b-notice {
    background: rgba(8, 38, 54, 0.78);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 8px;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #38BDF8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.notice-badge i {
    width: 14px;
    height: 14px;
}

.notice-text {
    font-size: 0.81rem;
    color: #E2E8F0;
    line-height: 1.45;
    margin: 0;
}

.notice-text strong {
    color: #FFFFFF;
}

.payment-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    background: rgba(8, 38, 54, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    color: #CBD5E1;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pay-btn i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pay-btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
}

.pay-btn.active {
    background: rgba(56, 189, 248, 0.14);
    border-color: #38BDF8;
    color: #38BDF8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

/* Caixa do Pix */
.pix-lock-box {
    margin-top: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 14px;
}

.pix-lock-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #10B981;
}

.pix-lock-title i {
    width: 16px;
    height: 16px;
}

/* QR a esquerda, valor e botao a direita. O markup ja previa a divisao em
   .pix-qr-code e .pix-qr-info, mas as regras nunca foram escritas e o bloco
   empilhava, empurrando o botao de copiar para fora da primeira dobra. */
.pix-qr-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pix-qr-code {
    width: 132px;
    height: 132px;
    flex-shrink: 0;
    background: #FFFFFF;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: block;
}

.pix-qr-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Em tela estreita nao cabe lado a lado: volta a empilhar, centralizado. */
@media (max-width: 420px) {
    .pix-qr-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .pix-qr-code {
        align-self: center;
    }
}

.pix-lock-desc {
    font-size: 0.82rem;
    color: #A1A1AA;
    line-height: 1.5;
    margin-bottom: 10px;
}

.pix-lock-desc strong {
    color: #FFFFFF;
    font-weight: 800;
}

.pix-key-val span {
    color: #71717A;
}

.pix-key-val {
    font-family: monospace;
    font-size: 0.82rem;
    background: #0B0B0C;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #38BDF8;
    margin-bottom: 10px;
    word-break: break-all;
}

/* CYAN COPY PIX BUTTON WITH SUCCESS GREEN FEEDBACK */
.btn-copy-pix {
    width: 100%;
    padding: 10px;
    background: rgba(56, 189, 248, 0.12) !important;
    border: 1px solid rgba(56, 189, 248, 0.4) !important;
    color: #38BDF8 !important;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-copy-pix:hover {
    background: #0284C7 !important;
    color: #FFFFFF !important;
    border-color: #0284C7 !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-copy-pix.copied {
    background: #10B981 !important;
    color: #000000 !important;
    border-color: #10B981 !important;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

/* Cart Summary CLAEM Style */
.cart-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.summary-line span:first-child {
    color: #FFFFFF;
    font-weight: 600;
}

/* Total Price rendered in Emerald Green (#10B981) */
.summary-line.total {
    font-size: 1.25rem;
    font-weight: 900;
    color: #10B981 !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 10px;
    margin-top: 4px;
}

/* Signature Onira Labs CLAEM */
/* Botao de envio do pedido — o CTA final do carrinho.
   As classes .btn e .btn-block do markup ficaram orfas na reconstrucao do
   carrinho e nunca tiveram regra: sem isto, o botao cai no branco padrao do
   navegador bem no passo mais importante do fluxo. */
.btn-whatsapp {
    width: 100%;
    padding: 14px 16px;
    background: #25D366 !important;
    border: 1px solid #25D366 !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.32);
    transition: all 0.25s ease;
}

.btn-whatsapp i {
    width: 19px;
    height: 19px;
    stroke-width: 2.4;
}

.btn-whatsapp:hover {
    background: #1EBE5A !important;
    border-color: #1EBE5A !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.onira-signature {
    text-align: center;
    padding: 14px 0 6px 0;
    font-size: 0.78rem;
    color: #71717A;
}

.onira-signature strong {
    color: #F59E0B !important;
    font-weight: 800;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3);
}

/* Floating Mobile Cart Bar */
.floating-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 80;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-cart-bar.active {
    transform: translateY(0);
}

.floating-cart-info {
    display: flex;
    flex-direction: column;
}

.floating-count {
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 600;
}

.floating-total {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #34D399;
}

.btn-open-cart-floating {
    background: var(--amber);
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    pointer-events: none;
}

.toast-box {
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 32px);
    white-space: normal;
    text-align: center;
    word-break: break-word;
    animation: toastFadeIn 0.3s ease forwards;
}

@keyframes toastFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .special-card {
        grid-template-columns: 1fr;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 900px) {
    /* A barra superior comia metade da primeira dobra no celular.
       Sobra so o contato do vendedor, numa linha. */
    .top-info {
        display: none;
    }
    .top-bar-content {
        justify-content: center;
    }
    .top-contacts {
        gap: 14px;
        font-size: 0.78rem;
    }

    /* Header encolhe no celular; a barra de compra tem que colar logo abaixo */
    .header-container {
        height: 64px;
    }
    .shop-bar {
        top: 64px;
    }
    .brand-logo-img {
        height: 48px;
        max-width: 150px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 10px; /* Reduz padding lateral da página de 20px para 10px, dando 20px a mais de respiro */
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    .product-image-box {
        height: 124px;
    }
    .bottle-svg {
        height: 104px;
    }
    .product-title {
        font-size: 0.84rem;
    }
    .price-amount {
        font-size: 1.05rem;
    }
    .shop-section {
        padding: 16px 0 96px 0;
    }
    /* Preco em cima, botao ocupando a largura toda — padrao de app */
    .product-price-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .btn-add-card {
        width: 100%;
        justify-content: center;
        padding: 9px 10px;
    }
    .product-info {
        padding: 10px 8px;
    }

    /* Seletor Varejo x Atacado no Card (Garrafa vs Caixa) desobstruído */
    .card-unit-tabs {
        padding: 2px;
        gap: 2px;
        margin-bottom: 8px;
    }
    .card-tab {
        padding: 5px 2px;
        font-size: 0.70rem;
        letter-spacing: -0.15px;
        gap: 2px;
    }

    .hero-title {
        font-size: 2rem;
    }
    /* No celular o header só comporta logo + botão de pedido */
    .status-badge,
    .cart-total-header {
        display: none;
    }
    .cart-toggle-btn {
        padding: 10px 14px;
    }
}

/* Accessibility Focus Visible Ring */
button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px !important;
}



/* Mobile First: Oculta Hero no Mobile para focar direto no Cardápio / Catálogo */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }
    .hero, .hero-section {
        display: none !important;
    }
    .menu-section, #cardapio, #catalogo {
        padding-top: 20px !important;
    }
}

/* Dynamic Pricing & Stock Simulation Styles */
.product-card.is-paused {
    opacity: 0.72;
    filter: grayscale(0.2);
}

.product-status-tag-paused {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 4;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.btn-add-main.paused-btn {
    background: #F1F5F9 !important;
    color: #94A3B8 !important;
    border: 1px solid #CBD5E1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.sim-floating-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0F172A;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid #10B981;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}

.sim-floating-bar a {
    color: #38BDF8;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 800;
}

.sim-floating-bar .btn-reset-sim {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.76rem;
    cursor: pointer;
    font-weight: 700;
}

.sim-floating-bar .btn-reset-sim:hover {
    background: #EF4444;
}

/* ==========================================================================
   PILARES DE ATENDIMENTO & DIFERENCIAIS COMERCIAIS
   ========================================================================== */
.pillars-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillars-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.pillars-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(14, 70, 99, 0.08);
    border: 1px solid rgba(14, 70, 99, 0.18);
    border-radius: 9999px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pillars-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pillars-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(14, 70, 99, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 70, 99, 0.08);
    border-color: rgba(14, 70, 99, 0.2);
}

.pillar-card.highlight {
    border: 2px solid #38BDF8;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.14);
}

.pillar-badge-top {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0284C7;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.pillar-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(14, 70, 99, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pillar-card.highlight .pillar-icon-box {
    background: rgba(56, 189, 248, 0.14);
    color: #0284C7;
}

.pillar-card-title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pillar-card-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.pillar-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

/* ==========================================================================
   RODAPÉ INSTITUCIONAL MASTER (DARK NAVY LUXURY)
   ========================================================================== */
.footer {
    background: #041824;
    color: #E2E8F0;
    border-top: 2px solid rgba(56, 189, 248, 0.22);
    padding: 56px 0 28px 0;
}

/* Linha Superior da Marca (Logo & Assinatura) */
.footer-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-header .footer-logo {
    height: 76px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-brand-tagline {
    font-size: 0.74rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grade Master: 4 Colunas 100% Alinhadas no Mesmo Topo */
.footer-master-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.05fr 1.2fr;
    gap: 36px;
    align-items: start;
}

/* Coluna 1: Sobre a Empresa */
.footer-col-about {
    display: flex;
    flex-direction: column;
}

.footer-brand-text {
    font-size: 0.80rem;
    color: #94A3B8;
    line-height: 1.62;
    margin-bottom: 16px;
}

.footer-brand-text strong {
    color: #CBD5E1;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    color: #38BDF8;
    width: fit-content;
}

.footer-trust-badge i {
    width: 14px;
    height: 14px;
    color: #38BDF8;
    flex-shrink: 0;
}

/* Títulos de Coluna (Subordinados ao Logo) */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 0;
    border: none;
}

/* ==========================================================================
   ACCORDION INTERATIVO DO RODAPÉ (MISSÃO, VISÃO, VALORES & ÁREAS)
   ========================================================================== */
.footer-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-accordion {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.2s ease;
}

.footer-accordion:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.2);
}

.footer-accordion[open] {
    background: rgba(8, 38, 54, 0.7);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 11px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #CBD5E1;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.15s ease;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion summary:hover {
    color: #38BDF8;
}

.footer-accordion summary .summary-left {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.footer-accordion summary .summary-icon {
    width: 14px;
    height: 14px;
    color: #38BDF8;
    flex-shrink: 0;
}

.footer-accordion.highlight summary .summary-icon {
    color: #F59E0B;
}

.footer-accordion summary .chevron-icon {
    width: 12px;
    height: 12px;
    color: #64748B;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 6px;
}

.footer-accordion[open] summary .chevron-icon {
    transform: rotate(180deg);
    color: #38BDF8;
}

.footer-accordion-content {
    padding: 0 11px 8px 11px;
    font-size: 0.75rem;
    color: #94A3B8;
    line-height: 1.5;
    animation: fadeIn 0.2s ease;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    margin-top: 2px;
    padding-top: 7px;
}

.footer-accordion-content strong {
    color: #E2E8F0;
}

/* Coluna 4: Canais Oficiais & WhatsApp Ativo */
.footer-wa-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(14, 70, 99, 0.35) 100%);
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: var(--radius-sm);
    text-decoration: none;
    margin-bottom: 14px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.footer-wa-card:hover {
    transform: translateY(-1px);
    border-color: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18) 0%, rgba(14, 70, 99, 0.45) 100%);
}

.footer-wa-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
}

.footer-wa-icon .wa-traditional-logo {
    width: 19px;
    height: 19px;
    display: block;
}

.footer-wa-icon i {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
}

.footer-wa-content {
    display: flex;
    flex-direction: column;
}

.footer-wa-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.66rem;
    font-weight: 700;
    color: #A7F3D0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
    display: inline-block;
}

.footer-wa-cta {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-item i {
    width: 14px;
    height: 14px;
    color: #38BDF8;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-lbl {
    display: block;
    font-size: 0.66rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1px;
}

.contact-link {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 0.15s;
    white-space: nowrap;
}

.contact-link:hover {
    color: #38BDF8;
    text-decoration: underline;
}

.footer-contact-item span:not(.contact-lbl) {
    font-size: 0.78rem;
    color: #94A3B8;
}

.footer-social-wrap {
    margin-top: 10px;
}

.social-lbl {
    display: block;
    font-size: 0.66rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}

.footer-social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: #CBD5E1;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn .social-svg-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: inline-block;
}

.footer-social-btn:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38BDF8;
    color: #38BDF8;
    transform: translateY(-1px);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: #64748B;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-admin-link {
    color: #38BDF8;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.15s;
}

.footer-admin-link:hover {
    color: #7DD3FC;
    text-decoration: underline;
}

.footer-credit {
    color: #94A3B8;
}

.footer-credit strong {
    color: #F59E0B;
}

/* ==========================================================================
   RESPONSIVIDADE DOS PILARES E DO RODAPÉ
   ========================================================================== */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-master-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 680px) {
    .pillars-section {
        padding: 44px 0;
    }

    .pillars-title {
        font-size: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 44px 0 24px 0;
    }

    .footer-brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 18px;
        margin-bottom: 22px;
    }

    .footer-brand-header .footer-logo {
        height: 60px;
    }

    .footer-master-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
