/* ==========================================================================
   BALANCE FOOT — MODERN E-COMMERCE DESIGN SYSTEM (COMPACT MOBILE CARDS V2.5)
   ========================================================================== */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-deep: #134e4a;
    --primary-light: #ccfbf1;
    --primary-subtle: #f0fdfa;
    --accent: #e6076f;
    --accent-hover: #c9055e;
    --whatsapp: #25D366;
    --whatsapp-dark: #1ebc59;
    --whatsapp-shadow: rgba(37, 211, 102, 0.35);
    
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-card: #ffffff;
    --bg-wine-footer: #5b132b;
    
    --text-main: #0f172a;
    --text-muted: #334155;
    --text-subtle: #64748b;
    --text-light: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-card: #e2e8f0;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 28px -6px rgba(0, 0, 0, 0.12);
    --shadow-card-hover: 0 10px 22px -3px rgba(15, 23, 42, 0.12);
    
    --font-main: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Signika', sans-serif;
    --font-badge: 'Manrope', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.55;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. TOPBAR DE ENTREGA EXPRESSA
   ========================================================================== */
.top-notice-bar {
    background-color: var(--accent);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
}

.top-notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-notice-inner img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   2. HEADER COM LOGO & MENU DESKTOP + MENU HAMBÚRGUER MOBILE
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.brand-logo:hover {
    transform: scale(1.02);
}

/* Menu Desktop */
.header-nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 6px 4px;
    position: relative;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-nav-link:hover {
    color: var(--primary);
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.2s ease;
}
.header-nav-link:hover::after {
    width: 100%;
}

.header-nav-link.btn-nav-teste {
    background-color: var(--primary-light);
    color: var(--primary-deep);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(13, 148, 136, 0.25);
}
.header-nav-link.btn-nav-teste:hover {
    background-color: var(--primary);
    color: #ffffff;
}
.header-nav-link.btn-nav-teste::after {
    display: none;
}

/* Botão Hambúrguer Mobile */
.hamburger-toggle-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text-main);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.hamburger-toggle-btn:hover {
    background-color: var(--bg-subtle);
    color: var(--primary);
}
.hamburger-toggle-btn svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* Drawer Mobile Menu */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 310px;
    max-width: 86vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 100000;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 18px;
}

.mobile-drawer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.mobile-drawer-close {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-main);
}
.mobile-drawer-close:hover {
    background: #e2e8f0;
    color: var(--accent);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.mobile-drawer-group-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin: 12px 0 4px;
    padding-left: 8px;
}

.mobile-drawer-link {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.mobile-drawer-link:hover, .mobile-drawer-link:active {
    background-color: var(--primary-light);
    color: var(--primary-deep);
}

.mobile-drawer-link.sub-item {
    font-size: 0.9rem;
    font-weight: 600;
    padding-left: 22px;
    color: var(--text-muted);
}
.mobile-drawer-link.sub-item:hover {
    color: var(--primary-deep);
    background-color: #f0fdfa;
}

.mobile-drawer-link.highlight {
    background-color: #f0fdfa;
    color: var(--primary-dark);
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.mobile-drawer-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.btn-drawer-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 13px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 10px var(--whatsapp-shadow);
    text-align: center;
}
.btn-drawer-whatsapp img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    padding: 45px 0 40px;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-v2-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-v2-badge {
    align-self: flex-start;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-badge);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-v2-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-main);
}
.hero-v2-title span.highlight-pink {
    color: var(--accent);
}

.hero-v2-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-v2-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.btn-hero-primary {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulseZap 2.2s infinite;
    transition: all 0.2s ease;
}
.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border: 2px solid var(--border-color);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #ffffff;
}

.hero-video-container {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000000;
    border: 3px solid #ffffff;
}

.hero-local-video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   4. ATALHOS DE CATEGORIAS ABAIXO DA HERO
   ========================================================================== */
.hero-nav-bar {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 2px solid var(--primary);
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.hero-nav-card {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.hero-nav-card:hover {
    background-color: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hero-nav-card .nav-icon {
    font-size: 1.35rem;
    display: block;
}

.hero-nav-card .nav-label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   5. CATÁLOGO DE PRODUTOS — CARDS COMPACTOS & PREÇO/BOTÃO NA MESMA LINHA
   ========================================================================== */
.catalog-v2 {
    padding: 50px 0 70px;
}

.catalog-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-title-main {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 6px;
}

.catalog-subtitle-main {
    font-size: 1.15rem;
    color: var(--text-subtle);
}

/* Destaque das Categorias */
.category-block-main {
    margin-bottom: 60px;
}

.category-banner-header {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--accent);
}

.category-banner-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-banner-badge {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: var(--font-badge);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.subcategory-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin: 26px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.amazon-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.amazon-product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.amazon-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 148, 136, 0.45);
}

/* Área da Foto Reduzida em ~20% */
.product-image-box {
    background-color: #ffffff;
    height: 155px; /* Reduzido de 190px (~20% menor) */
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    cursor: zoom-in;
}

.product-image-box img {
    max-height: 118px; /* Proporcional e compacto */
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    background-color: #ffffff;
    transition: transform 0.25s ease;
}

.amazon-product-card:hover .product-image-box img {
    transform: scale(1.05);
}

.zoom-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.product-image-box:hover .zoom-badge {
    opacity: 1;
}

.product-info-box {
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Nome do Produto com Espaçamento Mantido */
.product-name-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px; /* Espaçamento ideal preservado */
    line-height: 1.3;
    min-height: 2.6em;
}

/* Texto com "Ver mais" Inline ao Final da 3ª Linha */
.product-text-wrapper {
    margin-bottom: 10px;
    flex-grow: 1;
}

.product-original-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.48;
    margin-bottom: 0;
}

.text-continuation {
    display: none;
}
.text-continuation.is-visible {
    display: inline !important;
}

.text-ellipsis {
    display: inline;
}

.btn-inline-more {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
    display: inline;
    margin-left: 3px;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.btn-inline-more:hover {
    color: var(--accent);
}

/* Linha de Links de Bula e Vídeo */
.product-meta-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    min-height: 20px;
}

.link-action-bula {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-subtle);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.link-action-bula:hover {
    color: var(--primary-dark);
}

.link-action-video {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.link-action-video:hover {
    color: var(--accent-hover);
}

/* Preço e Botão "Reservar" alinhados na MESMA LINHA */
.product-purchase-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.price-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price-number-bold {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-badge);
    white-space: nowrap;
}

.btn-reserve-compact {
    background-color: var(--whatsapp);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px var(--whatsapp-shadow);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-reserve-compact:hover {
    background-color: var(--whatsapp-dark);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
    color: #ffffff;
    transform: translateY(-2px);
}
.btn-reserve-compact img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   6. TESTE DA PISADA COMPUTADORIZADO
   ========================================================================== */
.teste-pisada-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    color: #ffffff;
    padding: 75px 0 85px;
    border-radius: 0 !important;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
    margin-bottom: 55px;
}

.teste-intro-v2 {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 45px;
}

.teste-tag-pill {
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-family: var(--font-badge);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.teste-title-v2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.teste-title-v2 small {
    display: block;
    font-size: 0.6em;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 6px;
}

.teste-desc-v2 {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

.teste-differentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.diff-item-original {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 6px;
    transition: transform 0.2s ease;
}
.diff-item-original:hover {
    transform: translateY(-4px);
}

.diff-original-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    background: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.diff-text-v2 {
    font-size: 0.94rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
}
.diff-text-v2 b {
    font-weight: 800;
    color: #fef08a;
}

.teste-cta-row {
    text-align: center;
}

.btn-agendar-teste {
    background-color: var(--whatsapp);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px var(--whatsapp-shadow);
    transition: all 0.2s ease;
}
.btn-agendar-teste:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    color: #ffffff;
}
.btn-agendar-teste img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   7. BANNER FALE COM ESPECIALISTA
   ========================================================================== */
.contact-banner-v2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
    margin: 30px auto 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: var(--shadow-md);
}

.contact-text-v2 h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.contact-text-v2 p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.btn-contact-zap-v2 {
    background-color: #ffffff;
    color: #059669;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.btn-contact-zap-v2:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    color: #047857;
}
.btn-contact-zap-v2 img,
.btn-contact-zap-v2 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   8. ATENDIMENTO & RODAPÉ
   ========================================================================== */
.site-footer-v2 {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 55px 0 45px;
}

.footer-main-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
}
.footer-brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-brand-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-col-v2 h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-col-v2 p {
    font-size: 1.02rem;
    color: var(--text-main);
    line-height: 1.5;
}

.footer-phone-big {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: inline-block;
    margin-top: 6px;
    transition: color 0.2s ease;
}
.footer-phone-big:hover {
    color: var(--primary);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}
.footer-social-link:hover {
    color: var(--accent-hover);
}

.footer-bottom-wine-bar {
    background-color: var(--bg-wine-footer);
    color: #ffffff;
    padding: 35px 0 45px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary);
}

.footer-copyright-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    opacity: 0.98;
}

.stamina-footer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: transparent;
    padding: 0;
    margin: 0;
    z-index: 10;
    pointer-events: none;
}

.stamina-badge-link {
    pointer-events: auto;
    width: fit-content;
    max-width: 90%;
    background-color: #252525;
    border-radius: 14px 14px 0 0;
    border: none;
    padding: 9px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-badge);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
}

.stamina-badge-logo {
    height: 11px;
    width: auto;
    display: block;
    transform: translateY(-2px);
}

/* ==========================================================================
   9. MODAL LIGHTBOX PARA ZOOM NAS FOTOS DOS PRODUTOS
   ========================================================================== */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}

.image-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.zoom-modal-dialog {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 580px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomModalIn 0.3s ease;
}

@keyframes zoomModalIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zoom-modal-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: #f1f5f9;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.zoom-modal-close-btn:hover {
    background: #e2e8f0;
    color: var(--accent);
}

.zoom-modal-img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

.zoom-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
}

/* ==========================================================================
   10. BOTÃO FLUTUANTE DE WHATSAPP COM BALÃO DE FALA FÚCSIA
   ========================================================================== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.whatsapp-float-wrapper.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.whatsapp-speech-bubble {
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font-badge);
    font-size: 0.86rem;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(230, 7, 111, 0.45);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
    animation: floatBubble 2.5s ease-in-out infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-speech-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid var(--accent);
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.whatsapp-float-btn {
    position: static;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.whatsapp-float-btn:hover {
    transform: scale(1.08);
    color: #FFF;
}
.whatsapp-float-btn img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    display: block;
}

.pulsozap {
    animation: pulsozap 2s infinite;
}
@keyframes pulsozap {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseZap {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   RESPONSIVIDADE & AJUSTES MOBILE DEDICADOS
   ========================================================================== */
@media (max-width: 1024px) {
    .amazon-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .teste-differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-v2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 860px) {
    .header-nav-menu {
        display: none;
    }
    .hamburger-toggle-btn {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .top-notice-bar {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
    .top-notice-inner {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
    }
    .top-notice-inner img {
        height: 15px;
    }

    .brand-logo {
        height: 52px;
    }

    .hero-v2-title {
        font-size: 2.1rem;
    }

    .hero-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-banner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 18px;
    }
    .category-banner-title {
        font-size: 1.35rem;
    }

    .teste-differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .diff-item-original:nth-child(5) {
        grid-column: span 2;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-banner-v2 {
        flex-direction: column;
        text-align: center;
        padding: 28px 18px;
    }

    .footer-main-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        align-items: center;
    }

    .footer-brand-box {
        align-items: center;
        text-align: center;
    }
    .footer-brand-logo {
        margin: 0 auto;
    }

    .footer-col-v2 {
        text-align: center;
    }
    .footer-social-link {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .amazon-product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Área da foto 20% menor no mobile */
    .product-image-box {
        height: 145px;
        padding: 10px;
    }
    .product-image-box img {
        max-height: 108px;
    }

    .product-info-box {
        padding: 14px 15px 12px;
    }

    .product-name-title {
        font-size: 1.18rem;
        margin-bottom: 6px;
        min-height: auto;
    }

    .product-original-text {
        font-size: 0.94rem;
    }

    .price-number-bold {
        font-size: 1.38rem;
    }

    .btn-reserve-compact {
        padding: 7px 14px;
        font-size: 0.88rem;
    }

    .hero-v2-title {
        font-size: 1.75rem;
    }
    .hero-v2-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-v2-actions a {
        width: 100%;
        justify-content: center;
    }

    .teste-differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .diff-original-img {
        width: 65px;
        height: 65px;
    }
    .diff-text-v2 {
        font-size: 0.85rem;
    }
}
