/* Header Styles for MemoPezil Official */
:root {
    --primary-blue: #000B2E;
    --text-white: #ffffff;
    --accent-color: #ffafff; /* Matching the memory/focus span in hero */
    --buy-now-bg: #ffd814; /* Yellow CTA button */
    --buy-now-color: #000000; /* Black text on yellow */
}

header.site-header {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-family: 'Montserrat', sans-serif, Arial;
    transition: top 0.35s cubic-bezier(0.22,1,0.36,1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-color);
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-white) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.buy-now-btn {
    background-color: var(--buy-now-bg) !important;
    color: var(--buy-now-color) !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 3px solid #000000 !important;
    animation: headerPulse 2s infinite;
}

.buy-now-btn:hover {
    background-color: #fccd15 !important;
    color: #000 !important;
    transform: scale(1.05);
}

@keyframes headerPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 216, 20, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 216, 20, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 216, 20, 0); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-blue);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

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

.mobile-menu-overlay .nav-link {
    font-size: 20px;
    margin-bottom: 25px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--text-white);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* ============================================================
   CORREÇÃO E MELHORIA DOS BOTÕES DE COMPRA (2, 3, 6 POTES)
   ============================================================ */

/* Seletores para os botões de oferta no index.html */
.elementor-element-95ffbcd .elementor-button, /* 2 Bottles */
.elementor-element-4768b9be .elementor-button, /* 6 Bottles */
.elementor-element-7e11ae4d .elementor-button, /* 3 Bottles (Corrigido) */
.elementor-element-2cd19154 .elementor-button, /* 3 Bottles (Alternativo) */
.elementor-element-1d0a1dbf .elementor-button, /* 6 Bottles (Alternativo) */
.elementor-element-5846494c .elementor-button  /* 3 Bottles (Alternativo) */ {
    background-color: #ffd814 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    /* Efeito de Glow Pulsante Sutil */
    animation: subtleGlowPulse 2s infinite ease-in-out !important;
}

.elementor-element-95ffbcd .elementor-button:hover,
.elementor-element-4768b9be .elementor-button:hover,
.elementor-element-7e11ae4d .elementor-button:hover,
.elementor-element-2cd19154 .elementor-button:hover,
.elementor-element-1d0a1dbf .elementor-button:hover,
.elementor-element-5846494c .elementor-button:hover {
    background-color: #fccd15 !important;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 216, 20, 0.6) !important;
}

/* Keyframes para o Glow Pulsante Sutil */
@keyframes subtleGlowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 216, 20, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 216, 20, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 216, 20, 0.4);
    }
}
