/*
Theme Name: IdeiasBlah Future
Theme URI: https://ideiasblah.com.br
Description: 2026 Design Trend - Spatial & Intelligent UI
Version: 2.1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===============================
   SYSTEM TOKENS (Design Core)
================================ */
:root {
    --deep-space: #0B0B0E;
    --surface-dark: #121214;
    --glass-border: rgba(255, 255, 255, 0.06);

    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);

    --neon-purple: #8A2BE2;
    --cyber-yellow: #FFD700;
    --system-cyan: #00f2ff;
}

/* ===============================
   GLOBAL BASE
================================ */
body {
    background: var(--deep-space);
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;

    background-image:
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.05), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.03), transparent 40%);
}

/* ===============================
   TYPOGRAPHY
================================ */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.text-muted {
    color: var(--text-muted);
    font-weight: 300;
}

/* ===============================
   SYSTEM LABELS (Mono)
================================ */
.system-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.55;
}

.system-label.core {
    color: var(--neon-purple);
}

.system-label.infra {
    color: var(--cyber-yellow);
}

.system-label.base {
    color: var(--system-cyan);
}

.system-label.muted {
    opacity: 0.35;
}

/* ===============================
   LAYOUT CONTAINERS
================================ */
.wp-block-group {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   HERO (Spatial Core)
================================ */
.hero-section {
    position: relative;
    padding: 140px 20px 260px;
    /* Increased bottom padding for overlap */
    overflow: visible;
    /* Changed to visible for overlap */
    mask-image: none;
    /* Removed mask to allow overlap */
    -webkit-mask-image: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .hero-layout {
        grid-template-columns: 1.4fr 0.6fr;
        align-items: center;
    }
}

.system-status {
    position: absolute;
    top: -80px;
    /* Adjusted for new layout relative position */
    right: 0;
    text-align: right;
}

.hero-content {
    max-width: 100%;
    /* Reset max-width as grid handles it */
    text-align: left;
    /* Force left alignment */
}

/* Override WP center alignment if needed */
.hero-content .has-text-align-center {
    text-align: left !important;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.95;
    text-align: left;
    /* Left align */
    background: linear-gradient(180deg, #fff 0%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: left;
}

.hero-microcopy {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.5;
    text-align: left;
}

.hero-cta {
    margin-top: 3rem;
    justify-content: flex-start !important;
    /* Left align buttons */
}

.hero-cta .wp-block-buttons {
    justify-content: flex-start !important;
}

/* New Hero Right Column (Visual Space) */
.hero-visual {
    display: none;
    position: relative;
    height: 100%;
}

@media (min-width: 992px) {
    .hero-visual {
        display: block;
    }
}

/* ===============================
   BENTO GRID (Staggered)
================================ */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    max-width: 1200px;
    margin: -120px auto 100px;
    /* Aggressive negative margin overlap */
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 2;
        transform: translateY(-40px);
        /* The Structural Offset */
    }

    /* Push the third column down to create rhythm */
    .bento-grid>div:nth-child(2) {
        /* First small card */
        margin-top: 40px;
    }
}

/* ===============================
   BENTO CARDS (System Glass)
================================ */
.bento-item {
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;
    overflow: hidden;

    transition: transform .4s ease, border-color .4s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Glow Interaction */
.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.04),
            transparent 40%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.bento-item:hover::before {
    opacity: 1;
}

/* Card Typography */
.bento-item h2 {
    font-size: 2.6rem;
    margin: 0.5rem 0 1rem;
}

.bento-item h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ===============================
   BUTTONS (Pill System)
================================ */
.wp-block-button__link {
    background: #fff !important;
    color: #000 !important;
    border-radius: 999px !important;
    padding: 14px 36px !important;
    font-weight: 600;
    box-shadow: none !important;
    transition: transform .2s ease;
}

.wp-block-button__link:hover {
    transform: scale(1.02);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* ===============================
   SECTION HEADERS
 ================================ */
.section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 0%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===============================
   PRODUCT CARDS (Standardized)
 ================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-card {
    background: rgba(18, 18, 20, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #fff;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-card .card-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-purple);
}

/* ===============================
   ACCESSIBILITY & USABILITY ENHANCEMENTS
 ================================ */

/* Enhanced Focus States */
:focus-visible {
    outline: 2px solid var(--neon-purple);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--neon-purple);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Smooth Interactions */
a,
button,
.wp-block-button__link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

a:hover,
button:hover {
    transform: translateY(-1px);
}

/* Enhanced Button States */
.wp-block-button__link:active,
button:active {
    transform: translateY(0) scale(0.98);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Better Mobile Touch Targets */
@media (max-width: 768px) {
    a,
    button,
    .wp-block-button__link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation */
.main-navigation ul li a {
    position: relative;
    overflow: hidden;
}

.main-navigation ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-yellow);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::before,
.main-navigation ul li.current-menu-item a::before {
    width: 100%;
}

/* Progress Indicator for Long Pages */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--neon-purple);
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--neon-purple);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Ensure headings follow order and logical hierarchy */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
}

h2 {
    font-size: clamp(2.2rem, 7vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

/* ===============================
   FOOTER
================================ */
.site-footer {
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

/* ===============================
   SECTION HEADERS
================================ */
.section-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -160px;
    /* Pull up into the visual overlap zone */
    position: relative;
    z-index: 15;
    /* Above hero glow, below bento hover */
    margin-bottom: 40px;
    /* Space before Bento */
}

/* ===============================
   TEXT HIGHLIGHT (Neon Gradients)
================================ */
.text-highlight {
    color: var(--neon-purple);
    position: relative;
    display: inline-block;
}

/* Optional: Gradient Text for "IA" */
.text-highlight {
    background: linear-gradient(135deg, #8A2BE2 0%, #FF00FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

/* ===============================
   REFINED HERO PILLS (Floating)
================================ */
.system-status {
    /* Repositioned to match "Floating" look */
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    z-index: 10;
}

@media (max-width: 991px) {
    .system-status {
        position: relative;
        top: 0;
        transform: none;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
}


.status-pill {
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.status-pill:hover {
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
}

.status-dot.green {
    background-color: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

/* ===============================
   PRICING (Scoped)
================================ */
.blah-pricing-wrapper * {
    box-sizing: border-box;
}

.blah-pricing-wrapper {
    background-color: #3b0c2c;
    color: #faf4e0;
    padding: 80px 20px;
    line-height: 1.6;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.blah-header {
    text-align: center;
    margin-bottom: 60px;
}

.blah-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #faf4e0;
    margin: 0 0 14px 0;
}

.blah-header p {
    color: #faf4e0;
    opacity: 0.85;
    font-size: 1.05rem;
    max-width: 760px;
    margin: 0 auto;
}

.blah-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blah-card {
    background-color: rgba(250, 244, 224, 0.06);
    border: 1px solid rgba(250, 244, 224, 0.16);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
}

.blah-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.55);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.blah-card.featured {
    border-color: rgba(255, 215, 0, 0.65);
    background-color: rgba(250, 244, 224, 0.09);
}

.blah-badge {
    background-color: #ffd700;
    color: #2b091f;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    position: absolute;
    top: 16px;
    left: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.blah-card h3 {
    color: #faf4e0;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 8px 0 6px 0;
}

.blah-subtitle {
    margin: 0 0 16px 0;
    opacity: 0.85;
}

.blah-price {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 18px 0;
}

.blah-price span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.85;
    margin-left: 6px;
}

.blah-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex-grow: 1;
}

.blah-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #faf4e0;
    opacity: 0.92;
}

.blah-list li::before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
}

.blah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 999px;
    background-color: #ffd700;
    color: #2b091f;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform 0.18s ease, filter 0.18s ease, background-color 0.18s ease;
}

.blah-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.blah-btn-outline {
    background-color: transparent;
    color: #faf4e0;
    border-color: rgba(250, 244, 224, 0.35);
}

.blah-btn-outline:hover {
    background-color: rgba(250, 244, 224, 0.08);
}

.blah-footnote {
    text-align: center;
    opacity: 0.75;
    margin: 18px 0 0 0;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .blah-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   LANDING (landing-infra)
================================ */
.wp-custom-template-landing-infra .wp-site-blocks {
    padding-top: 0;
}

.blah-lp {
    padding-top: 28px;
    padding-bottom: 90px;
}

.blah-lp-topbar {
    margin-bottom: 60px;
}

.blah-lp-hero {
    margin-bottom: 60px;
}

.blah-lp-title {
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.blah-lp-subtitle {
    color: var(--text-muted);
    max-width: 72ch;
    margin-bottom: 22px;
}

.blah-lp-micro {
    margin-top: 18px;
    opacity: 0.65;
    font-size: 0.95rem;
}

.blah-lp-section {
    margin-top: 70px;
}

.blah-lp-final {
    margin-top: 80px;
    padding: 55px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ensure details (FAQ) looks good on dark background */
.wp-custom-template-landing-infra details.wp-block-details {
    background: rgba(18, 18, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 14px;
}

.wp-custom-template-landing-infra details.wp-block-details summary {
    cursor: pointer;
    font-weight: 700;
}

.wp-custom-template-landing-infra details.wp-block-details p {
    color: var(--text-muted);
    margin-top: 12px;
}

/* ===============================
   WOOCOMMERCE CONSISTENCY
 ================================ */
.woocommerce span.onsale {
    background-color: var(--neon-purple);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
}

.woocommerce ul.products li.product {
    background: rgba(18, 18, 20, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .button {
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 999px !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
    background: rgba(18, 18, 20, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 999px !important;
}
/* ===============================
   BOUTIQUE LIGHT THEME (Light Mode)
================================ */
.theme-boutique {
    --bg-boutique: #faf4e0;
    --text-dark: #0B0B0E;
    --accent-yellow: #ffff00;
    --border-dark: rgba(0, 0, 0, 0.1);
    
    background-color: var(--bg-boutique) !important;
    color: var(--text-dark) !important;
    background-image: none !important;
}

.theme-boutique .site-header {
    background: var(--bg-boutique);
    border-bottom: 2px solid var(--text-dark);
}

.theme-boutique .site-header .site-title a {
    color: var(--text-dark) !important;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.05em;
}

.theme-boutique .main-navigation ul li a {
    color: var(--text-dark) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* WooCommerce Table Styling for Boutique Theme */
.theme-boutique .woocommerce-cart-form table.shop_table,
.theme-boutique .woocommerce-checkout #order_review table.shop_table,
.theme-boutique .woocommerce-checkout #customer_details table.shop_table {
    background: transparent !important;
    border: 2px solid var(--text-dark) !important;
    border-radius: 0 !important;
}

.theme-boutique .shop_table th {
    background: transparent !important;
    border-bottom: 2px solid var(--text-dark) !important;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.theme-boutique .shop_table td {
    border-bottom: 1px solid var(--border-dark) !important;
    color: var(--text-dark);
}

.theme-boutique .cart_totals {
    background: transparent !important;
    border: 2px solid var(--text-dark) !important;
    border-radius: 0 !important;
}

/* Buttons */
.theme-boutique .button,
.theme-boutique .wp-block-button__link,
.theme-boutique .checkout-button,
.theme-boutique #place_order {
    background-color: var(--accent-yellow) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--text-dark) !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 15px 30px !important;
}

.theme-boutique input[type="text"],
.theme-boutique input[type="email"],
.theme-boutique input[type="tel"],
.theme-boutique textarea,
.theme-boutique select {
    background: transparent !important;
    border: 1px solid var(--text-dark) !important;
    border-radius: 0 !important;
    color: var(--text-dark) !important;
    padding: 10px !important;
}

/* ===============================
   ANTIGRAVITY ANIMATIONS
================================ */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--cyber-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    opacity: 0;
}

body:hover .mouse-follower {
    opacity: 1;
}

.theme-boutique .mouse-follower {
    background: var(--text-dark);
    mix-blend-mode: multiply;
    opacity: 0.15;
}

/* Smooth Button Hover (Antigravity Style) */
.wp-block-button__link, .button {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wp-block-button__link:hover, .button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.wp-block-button__link::after, .button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: -1;
}

.wp-block-button__link:hover::after, .button:hover::after {
    width: 300px;
    height: 300px;
}

/* Page Transitions */
.ib-page {
    animation: fadeInPage 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Force Header/Footer Visibility */
.site-header, .site-footer {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.theme-boutique .site-header {
    margin-bottom: 0;
    padding: 20px 0;
}

/* ===============================
   REFINED HEADER & LOGO (Classic)
================================ */
.boutique-header {
    background: transparent;
    padding: 30px 0;
    width: 100%;
    z-index: 100;
}

.theme-boutique .boutique-header {
    background: var(--bg-boutique);
    border-bottom: 2px solid var(--text-dark);
}

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

.logo-text {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #fff;
    text-transform: uppercase;
}

.theme-boutique .logo-text {
    color: var(--text-dark);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.theme-boutique .main-navigation ul li a {
    color: var(--text-dark);
}

.header-tools .cart-contents {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
}

.theme-boutique .header-tools .cart-contents {
    color: var(--text-dark);
}

/* Footer Refinements */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.social-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.ib-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===============================
   LOGO STYLING
================================ */
.site-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.theme-boutique .site-logo {
    filter: brightness(0) saturate(100%);
}

@media (max-width: 768px) {
    .site-logo {
        height: 45px;
        max-width: 150px;
    }
}

/* Site Branding Container */
.site-branding {
    display: flex;
    align-items: center;
}

/* ===============================
   HEADER FINALIZATION
================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.theme-boutique .site-header {
    background: rgba(250, 244, 224, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--text-dark);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
}

@media (max-width: 768px) {
    .site-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .header-inner {
        padding: 10px 0;
    }
}

/* Navigation Styling */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation ul li a:hover {
    color: var(--cyber-yellow);
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-yellow);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

.theme-boutique .main-navigation ul li a {
    color: var(--text-dark);
}

.theme-boutique .main-navigation ul li a:hover {
    color: var(--accent-yellow);
}

/* Cart Icon Styling */
.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-contents {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cart-contents:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyber-yellow);
    transform: translateY(-2px);
}

.theme-boutique .cart-contents {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.theme-boutique .cart-contents:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-yellow);
}

.cart-icon {
    width: 20px;
    height: 20px;
}

.cart-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-navigation ul {
        gap: 20px;
    }
    
    .main-navigation ul li a {
        font-size: 0.75rem;
    }
    
    .cart-label {
        display: none;
    }
}

/* ===============================
   OPTIMIZED IMAGE SYSTEM
================================ */

/* Base Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Placeholder */
.image-placeholder {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Bento Background Images */
.bento-item[class*="bento-"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .bento-item[class*="bento-"] {
        background-attachment: scroll;
    }
}

/* Product Card Image Improvements */
.product-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.product-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-image::before {
    opacity: 1;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

/* Optimized Responsive Images */
@media (max-width: 768px) {
    .product-card .card-image {
        height: 160px;
        border-radius: 8px;
    }

    .bento-item[class*="bento-"] {
        background-attachment: scroll;
    }
}

/* Hero Visual Placeholder */
.hero-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 20px;
    overflow: hidden;
}

.hero-visual::before {
    content: '🚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

/* Image Loading States */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===============================
   BENTO GRID WITH BACKGROUND IMAGES & DARK OVERLAY
================================ */
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 250px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-item.large {
    min-height: 400px;
}

/* Dark overlay mask - 80% transparency */
.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 14, 0.8);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Content layer above overlay */
.bento-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item.large .bento-content {
    padding: 40px;
}

/* Hover effects */
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-item:hover .bento-overlay {
    background: rgba(11, 11, 14, 0.6);
}

/* Text styling within bento items */
.bento-content h2,
.bento-content h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.bento-content h2 {
    font-size: 2.5rem;
}

.bento-content h3 {
    font-size: 1.5rem;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.bento-content a:not(.wp-block-button__link) {
    color: var(--cyber-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.bento-content a:not(.wp-block-button__link):hover {
    color: #fff;
    transform: translateX(5px);
}

/* System labels within bento */
.bento-content .system-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.bento-content .system-label.core {
    color: var(--neon-purple);
}

.bento-content .system-label.infra {
    color: var(--cyber-yellow);
}

.bento-content .system-label.base {
    color: #00d4ff;
}

/* Boutique theme variant */
.theme-boutique .bento-overlay {
    background: rgba(250, 244, 224, 0.85);
}

.theme-boutique .bento-item:hover .bento-overlay {
    background: rgba(250, 244, 224, 0.7);
}

.theme-boutique .bento-content h2,
.theme-boutique .bento-content h3 {
    color: var(--text-dark);
}

.theme-boutique .bento-content p {
    color: rgba(11, 11, 14, 0.8);
}

.theme-boutique .bento-content a:not(.wp-block-button__link) {
    color: var(--accent-yellow);
}

.theme-boutique .bento-content a:not(.wp-block-button__link):hover {
    color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bento-item {
        min-height: 200px;
    }
    
    .bento-item.large {
        min-height: 300px;
    }
    
    .bento-content {
        padding: 20px;
    }
    
    .bento-content h2 {
        font-size: 1.8rem;
    }
    
    .bento-content h3 {
        font-size: 1.2rem;
    }
}

/* Animation on scroll (optional enhancement) */
@keyframes bentoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-item {
    animation: bentoFadeIn 0.6s ease forwards;
}

.bento-item:nth-child(2) { animation-delay: 0.1s; }
.bento-item:nth-child(3) { animation-delay: 0.2s; }
.bento-item:nth-child(4) { animation-delay: 0.3s; }
.bento-item:nth-child(5) { animation-delay: 0.4s; }
.bento-item:nth-child(6) { animation-delay: 0.5s; }

/* ===============================
   BENTO GRID - SPECIFIC BACKGROUND IMAGES
================================ */
.bento-aibrands {
    background-image: url('/wp-content/themes/ideiasblah-modern/assets/images/aibrands-preview.png') !important;
}

.bento-smartcontent {
    background-image: url('/wp-content/themes/ideiasblah-modern/assets/images/smartcontent-preview.png') !important;
}

.bento-lemohost {
    background-image: url('/wp-content/uploads/2024/11/dall-e-2024-11-11-20.11.31-an-illustrative-image-representing-the-services-of-a-marketing-and-advertising-agency-showcasing-creativity-and-professionalism.-the-design-prominent.webp') !important;
}

.bento-branding {
    background-image: url('/wp-content/uploads/2025/01/dall-e-2025-01-06-20.58.15-a-modern-and-minimalist-illustration-representing-branding-services-for-e-commerce-focused-on-logo-design-brand-identity-and-visual-positioning-to-.webp') !important;
}

.bento-social {
    background-image: url('/wp-content/uploads/2025/01/dall-e-2025-01-09-19.47.50-a-modern-minimalistic-and-illustrative-square-image-representing-social-media-services.-the-design-features-elements-such-as-a-smartphone-with-app-i.webp') !important;
}

.bento-blog {
    background-image: url('/wp-content/uploads/2025/01/dall-e-2025-01-10-17.39.20-a-modern-minimalist-and-square-illustration-representing-a-blog-about-digital-technology-innovation-and-marketing.-the-design-features-a-clean-lay.webp') !important;
}

/* Ensure background images display correctly */
.bento-item[class*="bento-"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ===============================
   PLUGIN STYLING - CLICK TO CHAT (WHATSAPP)
================================ */
/* WhatsApp floating button */
.cht-position-br,
.cht-position-bl,
.cht-position-tr,
.cht-position-tl {
    z-index: 9998 !important;
}

.cht-whatsapp-icon {
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cht-whatsapp-icon:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* WhatsApp popup/chat box */
.cht-popup {
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ===============================
   PLUGIN STYLING - WOOCOMMERCE ENHANCEMENTS
================================ */
/* Product badges */
.woocommerce .onsale {
    background: var(--cyber-yellow) !important;
    color: var(--text-dark) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 0 !important;
    padding: 8px 15px !important;
}

/* Add to cart buttons */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.button.add_to_cart_button,
.woocommerce .single_add_to_cart_button {
    background: var(--cyber-yellow) !important;
    color: var(--text-dark) !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 15px 30px !important;
    transition: all 0.3s ease !important;
}

.woocommerce a.button.add_to_cart_button:hover,
.woocommerce button.button.add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background: var(--text-dark) !important;
    color: var(--cyber-yellow) !important;
    transform: translateY(-2px) !important;
}

/* Product price */
.woocommerce .price {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    color: var(--cyber-yellow) !important;
}

.woocommerce .price del {
    color: rgba(255, 255, 255, 0.4) !important;
}

.woocommerce .price ins {
    text-decoration: none !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace !important;
    padding: 10px !important;
    text-align: center !important;
}

/* ===============================
   PLUGIN STYLING - STRIPE PAYMENT
================================ */
.wc-stripe-elements-field,
.wc-stripe-card-group {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
}

.wc-stripe-card-group label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Inter', sans-serif !important;
}

/* ===============================
   PLUGIN STYLING - BRAZILIAN CHECKOUT FIELDS
================================ */
#billing_cpf_field,
#billing_cnpj_field,
#billing_persontype_field,
#billing_neighborhood_field,
#billing_number_field,
#billing_cellphone_field {
    margin-bottom: 20px !important;
}

#billing_cpf_field input,
#billing_cnpj_field input,
#billing_number_field input,
#billing_neighborhood_field input,
#billing_cellphone_field input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    font-family: 'Inter', sans-serif !important;
}

/* ===============================
   PLUGIN STYLING - SEOPRESS
================================ */
/* SEOPress meta box styling */
.seopress-metabox-content {
    background: var(--bg-dark) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===============================
   PLUGIN STYLING - CLASSIC EDITOR (for admin)
================================ */
body.wp-admin .wp-editor-container {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===============================
   PLUGIN STYLING - ELEMENTOR (if used)
================================ */
/* Ensure Elementor sections work with theme */
.elementor-section {
    max-width: 100% !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px !important;
}

/* Elementor buttons to match theme */
.elementor-button {
    font-family: 'JetBrains Mono', monospace !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
}

/* ===============================
   PLUGIN STYLING - MERCADOPAGO
================================ */
.wc-mp-checkout-custom-container,
.mp-checkout-container {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 20px !important;
}

/* ===============================
   ENHANCED PAGE STYLES
================================ */

/* Contact Page Enhancements */
.enhanced-contact-form {
    position: relative;
}

.enhanced-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 24px;
    z-index: -1;
}

.form-grid {
    gap: 1.5rem !important;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.enhanced-contact-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-method {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-method:last-child {
    border-bottom: none;
}

/* Product Page Enhancements */
.product-categories {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.category-filters {
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-muted) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-purple) !important;
    border-color: var(--neon-purple) !important;
    color: white !important;
    transform: translateY(-2px);
}

.enhanced-products-grid .product-card {
    height: auto !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-products-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-features {
    margin: 1rem 0;
}

.product-features div {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Service Page Enhancements */
.service-category-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-purple), var(--cyber-yellow), var(--system-cyan));
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.service-features div {
    padding: 0.25rem 0;
    opacity: 0.9;
}

/* Process Section */
.process-step {
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--glass-border);
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        display: block;
    }

    .process-step:last-child::after {
        display: none;
    }
}

/* Stats Cards */
.stat-card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

/* Value Cards Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.value-card h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .enhanced-contact-form {
        padding: 2rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .enhanced-contact-card {
        position: static !important;
        margin-top: 2rem;
    }

    .product-categories .category-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 6px 16px !important;
        font-size: 0.8rem !important;
    }

    .service-category-card {
        padding: 2rem !important;
    }

    .process-step::after {
        display: none !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* ===============================
   BOUTIQUE THEME PLUGIN OVERRIDES
================================ */
.theme-boutique .woocommerce .onsale {
    background: var(--accent-yellow) !important;
    color: var(--text-dark) !important;
}

.theme-boutique .woocommerce .price {
    color: var(--text-dark) !important;
}

.theme-boutique .woocommerce .price del {
    color: rgba(11, 11, 14, 0.4) !important;
}

.theme-boutique .woocommerce .quantity .qty {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: var(--text-dark) !important;
    color: var(--text-dark) !important;
}

.theme-boutique #billing_cpf_field input,
.theme-boutique #billing_cnpj_field input,
.theme-boutique #billing_number_field input,
.theme-boutique #billing_neighborhood_field input,
.theme-boutique #billing_cellphone_field input {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: var(--text-dark) !important;
    color: var(--text-dark) !important;
}

/* ===============================
   WOOCOMMERCE SHOP & ARCHIVES
================================ */
.woocommerce-products-archive .page-header {
    background: var(--bg-cream);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.theme-boutique .page-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.theme-boutique .page-subtitle {
    font-size: 1.1rem;
    color: rgba(11, 11, 14, 0.7);
    margin: 0;
}

/* Product grid */
.wp-block-woocommerce-product-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.woocommerce .wc-block-grid__product {
    background: #fff;
    border: 2px solid var(--text-dark);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce .wc-block-grid__product:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--text-dark);
}

.woocommerce .wc-block-grid__product-image {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--text-dark);
}

.woocommerce .wc-block-grid__product-title {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 10px 0 !important;
    padding: 0 20px;
}

.woocommerce .wc-block-grid__product-price {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin: 0 0 15px 0 !important;
    padding: 0 20px;
}

.woocommerce .wc-block-grid__product-add-to-cart {
    padding: 0 20px 20px;
}

/* Sorting and results */
.woocommerce-result-count,
.woocommerce-ordering {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 60px 0;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: inline-flex;
    gap: 10px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 2px solid var(--text-dark);
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: #fff;
    color: var(--text-dark);
    padding: 12px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--text-dark);
    color: var(--cyber-yellow);
}

/* ===============================
   SINGLE PRODUCT PAGE
================================ */
.woocommerce-single-product {
    min-height: 100vh;
}

.product-main {
    margin: 60px 0;
}

.woocommerce div.product .product-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.woocommerce div.product p.price {
    font-size: 2rem !important;
    margin: 0 0 30px 0 !important;
}

.woocommerce div.product .product-short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
    color: rgba(11, 11, 14, 0.8);
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
    margin: 60px 0;
    border-top: 2px solid var(--text-dark);
    padding-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    color: var(--text-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--cyber-yellow);
}

/* Related products */
.related-products {
    margin: 80px 0;
}

.woocommerce .related h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

/* ===============================
   LOGIN / MY ACCOUNT
================================ */
.login-page {
    min-height: 100vh;
}

.woocommerce-account .woocommerce {
    max-width: 500px;
    margin: 0 auto;
}

.woocommerce form.login,
.woocommerce form.register {
    background: #fff;
    border: 2px solid var(--text-dark);
    padding: 40px;
    margin-bottom: 30px;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px 0;
}

.woocommerce form .form-row input.input-text {
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
}

.woocommerce form .form-row input.input-text:focus {
    background: #fff;
    border-color: var(--cyber-yellow);
}

/* ===============================
   BLOG & POSTS
================================ */
.blog-archive .page-header {
    background: var(--bg-cream);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.post-card {
    background: #fff;
    border: 2px solid var(--text-dark);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--text-dark);
}

.post-card-image {
    border-bottom: 2px solid var(--text-dark);
}

.post-card-content {
    padding: 30px;
}

.post-card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 15px 0;
}

.post-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--cyber-yellow);
}

.post-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11, 11, 14, 0.6);
    margin-bottom: 15px;
}

.post-excerpt {
    line-height: 1.7;
    color: rgba(11, 11, 14, 0.8);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--cyber-yellow);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--cyber-yellow);
}

/* Single post */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.single-post-header {
    margin-bottom: 40px;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(11, 11, 14, 0.9);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 40px 0 20px 0;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--text-dark);
    border-bottom: 2px solid var(--cyber-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--cyber-yellow);
}

/* ===============================
   RESPONSIVE IMPROVEMENTS
================================ */

/* Mobile First - Base Styles */
@media (max-width: 480px) {
    :root {
        --ib-space-xs: 6px;
        --ib-space-sm: 12px;
        --ib-space-md: 20px;
        --ib-space-lg: 32px;
        --ib-space-xl: 48px;
    }

    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .ib-container {
        padding: 0 var(--ib-space-sm);
    }

    /* Hero Mobile */
    .hero-section {
        padding: 120px 20px 120px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .hero-cta .wp-block-button__link {
        padding: 12px 24px !important;
        font-size: 0.9rem;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin: -60px auto 60px;
        padding: 16px;
    }

    .bento-item.large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        transform: none !important;
        margin-top: 0;
    }

    .bento-content {
        padding: 24px 20px;
    }

    .bento-content h2 {
        font-size: 1.8rem;
    }

    /* Header Mobile */
    .header-inner {
        padding: 12px 0;
        flex-direction: column;
        gap: 16px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .main-navigation ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-navigation ul li a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .header-tools {
        gap: 12px;
    }

    /* Product Grid Mobile */
    .product-grid,
    .ib-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin: 40px 0 30px;
        padding: 0 var(--ib-space-sm);
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .theme-boutique .page-title {
        font-size: 2.5rem;
    }

    .wp-block-woocommerce-product-collection {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-main {
        margin: 30px 0;
    }

    .woocommerce div.product .product-title {
        font-size: 2rem;
    }

    .single-post-title {
        font-size: 2rem;
    }

    /* Improved Navigation Mobile */
    .main-navigation ul {
        gap: 20px;
    }

    .main-navigation ul li a {
        font-size: 0.85rem;
    }

    /* Better Spacing */
    section {
        padding: 60px 0;
    }

    .ib-cta-global {
        margin: 60px 0;
        padding: 40px var(--ib-space-md);
    }
}

/* Tablet Improvements */
@media (min-width: 481px) and (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: -80px auto 80px;
    }

    .bento-item.large {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        transform: translateY(-20px) !important;
    }

    .hero-layout {
        gap: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ib-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
    .ib-container {
        max-width: 1400px;
    }

    .hero-section {
        padding: 160px 20px 300px;
    }

    .bento-grid {
        max-width: 1400px;
        grid-template-columns: repeat(4, 1fr);
    }

    .bento-item.large {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }
}

/* ===============================
   DESIGN SYSTEM GLOBAL - IDEIASBLAH
   Desenvolvimento, Hospedagem e Performance
================================ */

/* Tokens Globais */
:root {
    /* Cores Base */
    --ib-bg-dark: #0b0b10;
    --ib-bg-card: #14141d;
    --ib-border: #242432;
    
    /* Cores de Marca */
    --ib-primary: #8b3dff;
    --ib-accent: #c8ff1a;
    --ib-orange: #ee551f;
    --ib-cream: #faf4e0;
    
    /* Texto */
    --ib-text-main: #f5f5f7;
    --ib-text-muted: #a1a1b3;
    --ib-text-dark: #0b0b0e;
    
    /* Tipografia */
    --ib-font-title: 'Inter', 'JetBrains Mono', system-ui, sans-serif;
    --ib-font-text: 'Inter', system-ui, sans-serif;
    
    /* Escalas */
    --ib-h1: clamp(2.8rem, 5vw, 4rem);
    --ib-h2: clamp(2.2rem, 4vw, 3rem);
    --ib-h3: 1.6rem;
    --ib-h4: 1.3rem;
    --ib-base: 1rem;
    --ib-small: 0.85rem;
    
    /* Espaçamento */
    --ib-space-xs: 8px;
    --ib-space-sm: 16px;
    --ib-space-md: 32px;
    --ib-space-lg: 64px;
    --ib-space-xl: 96px;
}

/* Reset e Base Global */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--ib-font-text);
    font-size: var(--ib-base);
    line-height: 1.6;
    color: var(--ib-text-main);
    background-color: var(--ib-bg-dark);
    margin: 0;
    padding: 0;
}

/* Tipografia Global - 20% menor conforme solicitado */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ib-font-title);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--ib-space-md) 0;
}

h1 { font-size: calc(var(--ib-h1) * 0.8); }
h2 { font-size: calc(var(--ib-h2) * 0.8); }
h3 { font-size: calc(var(--ib-h3) * 0.8); }
h4 { font-size: calc(var(--ib-h4) * 0.8); }
h5 { font-size: calc(var(--ib-base) * 0.8); }
h6 { font-size: calc(var(--ib-small) * 0.8); }

/* Links - tamanho igual ao texto */
a {
    color: var(--ib-primary);
    text-decoration: none;
    font-size: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ib-accent);
}

/* Container Global */
.ib-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ib-space-md);
}

/* Seções */
section {
    padding: var(--ib-space-xl) 0;
}

/* Hero Interno Padrão */
.page-hero {
    background: var(--ib-bg-dark);
    padding: var(--ib-space-xl) 0 var(--ib-space-lg);
    text-align: center;
    border-bottom: 1px solid var(--ib-border);
}

.page-hero h1 {
    margin-bottom: var(--ib-space-sm);
}

.page-hero p {
    color: var(--ib-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Unificados */
.ib-card {
    background: var(--ib-bg-card);
    border: 1px solid var(--ib-border);
    border-radius: 12px;
    padding: var(--ib-space-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ib-card:hover {
    transform: translateY(-5px);
    border-color: var(--ib-accent);
}

.ib-card h3 {
    color: var(--ib-primary);
    margin-bottom: var(--ib-space-sm);
}

.ib-card p {
    color: var(--ib-text-muted);
    margin-bottom: var(--ib-space-md);
}

/* Meta Técnica */
.ib-meta {
    font-size: var(--ib-small);
    color: var(--ib-accent);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--ib-space-sm);
}

/* Botões Globais */
.ib-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--ib-font-title);
    font-weight: 700;
    font-size: var(--ib-small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.ib-btn-primary {
    background: var(--ib-primary);
    color: #fff;
    border: none;
}

.ib-btn-primary:hover {
    background: var(--ib-accent);
    color: var(--ib-text-dark);
}

.ib-btn-accent {
    background: var(--ib-accent);
    color: var(--ib-text-dark);
    border: none;
}

.ib-btn-accent:hover {
    background: var(--ib-orange);
    color: #fff;
}

.ib-btn-outline {
    background: transparent;
    border: 2px solid var(--ib-accent);
    color: var(--ib-accent);
}

.ib-btn-outline:hover {
    background: var(--ib-accent);
    color: var(--ib-text-dark);
}

/* Grid Responsivo */
.ib-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--ib-space-md);
}

.ib-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.ib-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Formulários Padronizados */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ib-border);
    border-radius: 8px;
    color: var(--ib-text-main);
    font-family: var(--ib-font-text);
    font-size: var(--ib-base);
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--ib-accent);
}

/* CTA Global */
.ib-cta-global {
    background: var(--ib-bg-card);
    padding: var(--ib-space-xl) var(--ib-space-md);
    text-align: center;
    margin: var(--ib-space-xl) 0;
    border-radius: 16px;
    border: 1px solid var(--ib-border);
}

.ib-cta-global h2 {
    margin-bottom: var(--ib-space-sm);
}

.ib-cta-global p {
    color: var(--ib-text-muted);
    margin-bottom: var(--ib-space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade Global */
@media (max-width: 1200px) {
    :root {
        --ib-base: 15px;
    }
}

@media (max-width: 992px) {
    :root {
        --ib-base: 14px;
        --ib-space-xl: 64px;
    }
    
    .ib-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --ib-base: 13px;
        --ib-space-lg: 48px;
        --ib-space-xl: 48px;
    }
    
    .ib-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: var(--ib-space-lg) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --ib-base: 12px;
        --ib-space-md: 24px;
    }
    
    .ib-container {
        padding: 0 var(--ib-space-sm);
    }
}

/* Override para Tema Boutique (páginas light) */
body.theme-boutique,
.theme-boutique {
    background-color: var(--ib-cream) !important;
    color: var(--ib-text-dark) !important;
}

.theme-boutique .ib-card {
    background: #fff !important;
    border-color: var(--ib-text-dark) !important;
}

.theme-boutique h1,
.theme-boutique h2,
.theme-boutique h3 {
    color: var(--ib-text-dark) !important;
}

.theme-boutique a {
    color: var(--ib-text-dark) !important;
}

.theme-boutique a:hover {
    color: var(--ib-primary) !important;
}

/* Páginas de Serviço/Produto Padronizadas */
.service-page,
.product-page {
    min-height: 100vh;
}

.service-header,
.product-header {
    background: var(--ib-bg-card);
    padding: var(--ib-space-xl) 0;
    text-align: center;
    margin-bottom: var(--ib-space-lg);
}

.service-features,
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ib-space-md);
    margin: var(--ib-space-lg) 0;
}

/* Fix para WooCommerce Cart All in One - Títulos 20% menores */
.woo-cart-all-in-one h1,
.woo-cart-all-in-one h2,
.woo-cart-all-in-one h3 {
    font-size: calc(1em * 0.8) !important;
}

/* Navegação Leve e Intuitiva */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--ib-space-md);
}

nav a {
    font-weight: 600;
    padding: var(--ib-space-xs) 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ib-accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ===============================
   RESULTS & TESTIMONIALS SECTION
================================ */
.results-section {
    position: relative;
}

.stat-card-large {
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-5px);
}

.stat-card-large div[style*="font-size: 4rem"] {
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.testimonial-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card h4 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .results-section .section-header {
        margin-bottom: 3rem;
    }
    
    .stat-card-large div[style*="font-size: 4rem"] {
        font-size: 3rem !important;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
}


/* ===============================
   HEADER REWORK
================================ */
.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.boutique-header .ib-container {
    padding-top: 0;
    padding-bottom: 0;
}

.header-brand {
    flex: 0 1 auto;
    min-width: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    text-decoration: none;
    color: var(--text-main);
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: none;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95), rgba(0, 242, 255, 0.7));
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: 0 18px 36px rgba(138, 43, 226, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    opacity: 0.6;
}

.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0;
    text-decoration: none;
    color: var(--text-main);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.72;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    opacity: 0.9;
}

.header-menu a:hover,
.header-menu a:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
}

.header-menu a:hover::after,
.header-menu a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.18), rgba(0, 242, 255, 0.08));
    color: var(--text-main);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(138, 43, 226, 0.24);
}

.header-nav .mobile-menu-toggle {
    display: none !important;
}

.hero-title,
.section-title,
.blah-lp-title {
    text-wrap: balance;
}

@media (max-width: 991px) {
    .header-shell {
        gap: 1rem;
    }

    .header-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-shell {
        display: grid;
        grid-template-columns: 1fr auto;
        row-gap: 0.9rem;
        align-items: center;
        min-height: auto;
        padding: 0.85rem 0;
    }

    .header-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        display: block;
    }

    .header-nav .mobile-menu-toggle {
        display: none !important;
    }

    .header-menu {
        justify-content: flex-start;
        gap: 0.55rem 0.9rem;
    }

    .header-menu a {
        font-size: 0.7rem;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .header-cta {
        padding: 0 0.95rem;
        min-height: 40px;
    }
}

@media (max-width: 560px) {
    .header-shell {
        grid-template-columns: 1fr;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-tagline {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .header-actions {
        justify-content: flex-start;
    }
}
