/* Base styles */
:root {
    /* Primária */
    --color-primary: #0B1437;
    --color-primary-mid: #1E1B4B;
    --color-primary-accent: #4338CA;

    /* Conversão */
    --color-cta: #059669;
    --color-urgency: #BE123C;

    /* Apoio */
    --color-accent-tech: #0E7490;
    --color-accent-rating: #D97706;

    /* Neutros */
    --color-surface: #FFFFFF;
    --color-bg: #F1F5F9;
    --color-text-muted: #475569;
    --color-text: #020617;

    /* Feedback */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Text Colors for Contrast */
    --color-text-light: #FFFFFF;
    --color-text-lavender: #C7D2FE;
    --color-text-slate: #94A3B8;

    /* Gradientes Baseados na Nova Paleta */
    --gradient-main: linear-gradient(90deg, var(--color-primary-accent) 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
    --gradient-premium: linear-gradient(135deg, var(--color-primary-accent) 0%, var(--color-primary-mid) 100%);
}

body {
    font-family: 'Inter', sans-serif;
}

.dark body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Custom utilities */
.text-accent {
    color: var(--color-primary-accent);
}

body {
    font-family: 'Inter', sans-serif;
}

.dark body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Custom utilities */
.text-accent {
    color: var(--color-primary-accent);
}

.bg-accent {
    background-color: var(--color-primary-accent);
}

.hover\:bg-accent-hover:hover {
    background-color: #3730A3;
}

/* Card shadow utilities */
.shadow-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.shadow-soft {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
    .shadow-card,
    .shadow-soft {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
}

/* =============================================
   MOBILE OPTIMIZATIONS (max-width: 767px)
   Only affects screens below Tailwind md breakpoint.
   Desktop layout remains completely untouched.
   ============================================= */
@media (max-width: 767px) {

    /* --- Global touch & text --- */
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        scroll-padding-top: 140px;
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        letter-spacing: -0.01em;
        max-width: 100%;
        font-size: 16px;
        /* Base size for readability */
    }

    /* --- Typography Scaling --- */
    h1:not([class*="text-["]) {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.03em !important;
    }

    h2:not([class*="text-["]) {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }

    h3:not([class*="text-["]) {
        font-size: 1.25rem !important;
        line-height: 1.35 !important;
    }

    p:not([class*="text-"]) {
        line-height: 1.6 !important;
        color: #4b5563;
    }

    /* --- Container & Spacing --- */
    .container {
        padding-left: 24px;
        /* More breathing room */
        padding-right: 24px;
    }

    section:not([class*="py-"]) {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* --- Smooth transitions for all interactive elements --- */
    a,
    button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.2s ease;
    }

    /* Ensure CTA buttons have proper touch targets */
    a[href*="hostinger"],
    a[href^="#"],
    .plan-tab,
    button[onclick] {
        min-height: 44px;
    }

    /* Active state feedback */
    .active\:scale-95:active {
        transform: scale(0.96);
    }

    /* --- Cards & Visuals --- */
    .plan-panel .rounded-2xl,
    section > .container .rounded-2xl {
        border-radius: 24px !important;
        /* Softer corners on cards only */
    }



    /* --- Prose overrides --- */
    .prose {
        font-size: 1rem;
    }

    /* --- Form Elements --- */
    input,
    select,
    textarea {
        font-size: 16px !important;
        /* No zoom */
        padding: 14px 16px !important;
        border-radius: 16px !important;
        height: auto !important;
    }

    /* --- Carousel specific --- */
    .plans-carousel-container {
        margin-right: -24px;
        /* Bleed to edge */
        padding-right: 24px;
        /* Compensate */
    }

    .swiper {
        padding-right: 24px !important;
        /* Peek effect */
    }

}

/* --- Mobile Menu (Up to 1023px to match lg:hidden) --- */
@media (max-width: 1023px) {
    #mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 99999 !important;
        background-color: #ffffff !important;
        opacity: 1 !important;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #mobile-menu.active {
        transform: translateX(0) !important;
    }
}

/* === Scroll Reveal Animations === */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal="left"] {
    transform: translateX(-24px);
}
[data-reveal="left"].revealed {
    transform: translateX(0);
}
[data-reveal="right"] {
    transform: translateX(24px);
}
[data-reveal="right"].revealed {
    transform: translateX(0);
}
[data-reveal="scale"] {
    transform: scale(0.95);
}
[data-reveal="scale"].revealed {
    transform: scale(1);
}
/* Staggered delays for cards */
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* === Tab scroll on mobile === */
@media (max-width: 767px) {
    .plan-tabs-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .plan-tabs-wrap::-webkit-scrollbar {
        display: none;
    }
}

/* === Scrollbar-hide utility === */
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* === CRO: Fade in up animation === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out both;
}

/* === FAQ details/summary === */
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }
details[open] summary { border-bottom: 1px solid #f3f4f6; }

/* === CRO: Comparison table highlight column === */
.bg-accent\/5 { background-color: rgba(67, 56, 202, 0.05); }

/* =============================================
   BENTO UI DESIGN SYSTEM
   ============================================= */

/* --- Bento Grid Container --- */
.bento-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-grid { gap: 1.25rem; }
}

/* --- Bento Card Base --- */
.bento-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1.25rem;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .bento-card {
        border-radius: 1.5rem;
        padding: 1.5rem;
    }
}
.bento-card:hover {
    border-color: rgba(67, 56, 202, 0.2);
    box-shadow: 0 8px 30px rgba(11, 20, 55, 0.08);
    transform: translateY(-2px);
}

/* Bento card variants */
.bento-card-soft {
    background: #f9fafb;
    border-color: rgba(0,0,0,0.04);
}
.bento-card-accent {
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.03) 0%, rgba(67, 56, 202, 0.01) 100%);
    border-color: rgba(67, 56, 202, 0.12);
}
.bento-card-navy {
    background: linear-gradient(135deg, var(--color-primary-mid) 0%, var(--color-primary) 100%);
    border-color: rgba(255,255,255,0.08);
    color: #fff;
}
.bento-card-promo {
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.08) 0%, rgba(190, 18, 60, 0.02) 100%);
    border-color: rgba(190, 18, 60, 0.2);
}
.bento-card-glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255,255,255,0.3);
}

/* Bento card sizes */
.bento-card-sm  { padding: 1rem; }
.bento-card-lg  { padding: 1.5rem; }
@media (min-width: 768px) {
    .bento-card-sm  { padding: 1.25rem; }
    .bento-card-lg  { padding: 2rem; }
}

/* Bento card with icon header */
.bento-card-icon {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.bento-card-icon .bento-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}
@media (min-width: 768px) {
    .bento-card-icon .bento-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
        font-size: 1.35rem;
    }
}

/* Bento icon color variants */
.bento-icon-accent  { background: rgba(67, 56, 202, 0.1); color: var(--color-primary-accent); }
.bento-icon-navy    { background: rgba(11, 20, 55, 0.1); color: var(--color-text); }
.bento-icon-promo   { background: rgba(190, 18, 60, 0.12); color: var(--color-urgency); }
.bento-icon-green   { background: rgba(16,185,129,0.1); color: #059669; }
.bento-icon-amber   { background: rgba(245,158,11,0.1); color: #d97706; }
.bento-icon-blue    { background: rgba(59,130,246,0.1); color: #2563eb; }
.bento-icon-red     { background: rgba(239,68,68,0.1); color: #dc2626; }

/* --- Bento Grid Layouts --- */

/* 3 equal columns */
.bento-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-3col {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* 2 columns (60/40) */
.bento-2col-asym {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-2col-asym {
        grid-template-columns: 1.5fr 1fr;
        gap: 1.25rem;
    }
}

/* 2 columns (40/60) */
.bento-2col-asym-rev {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-2col-asym-rev {
        grid-template-columns: 1fr 1.5fr;
        gap: 1.25rem;
    }
}

/* 2 equal columns */
.bento-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* 4 columns */
.bento-4col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-4col {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* Masonry-style: 1 large + 2 small */
.bento-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.25rem;
    }
    .bento-hero-grid .bento-hero-main {
        grid-row: span 2;
    }
}

/* --- Bento Section Headers --- */
.bento-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .bento-section-header {
        margin-bottom: 2rem;
    }
}
.bento-section-header .bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(67, 56, 202, 0.08);
    border: 1px solid rgba(67, 56, 202, 0.15);
    border-radius: 9999px;
    padding: 0.25rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary-accent);
    margin-bottom: 0.625rem;
}
.bento-section-header h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.375rem;
}
.bento-section-header p {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 36rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .bento-section-header h2 { font-size: 1.75rem; }
    .bento-section-header p  { font-size: 0.9375rem; }
}

/* --- Bento Stat Card --- */
.bento-stat {
    text-align: center;
    padding: 1rem;
}
.bento-stat .bento-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary-accent);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.bento-stat .bento-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
@media (min-width: 768px) {
    .bento-stat .bento-stat-value { font-size: 2.25rem; }
    .bento-stat .bento-stat-label { font-size: 0.8125rem; }
}

/* --- Bento Feature Row (icon + text inline) --- */
.bento-feature-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #374151;
}
.bento-feature-row i {
    color: var(--color-primary-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- Bento Divider --- */
.bento-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.06), transparent);
    margin: 1rem 0;
}

/* --- Bento Glass Panel (for overlays/modals) --- */
.bento-glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* --- Bento Hover Lift --- */
.bento-hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(11, 20, 55, 0.12);
}

/* --- Bento Pulse Dot --- */
.bento-pulse {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--color-urgency);
    animation: bentoPulse 2s ease-in-out infinite;
}
@keyframes bentoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- Bento Gradient Text --- */
.bento-gradient-text {
    background: linear-gradient(135deg, var(--color-primary-accent) 0%, var(--color-urgency) 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Bento Shimmer (loading state) --- */
.bento-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: bentoShimmer 1.5s infinite;
}
@keyframes bentoShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Bento Tag / Chip --- */
.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.bento-tag-accent { background: rgba(67, 56, 202, 0.08); color: var(--color-primary-accent); }
.bento-tag-green  { background: rgba(16,185,129,0.08); color: #059669; }
.bento-tag-amber  { background: rgba(245,158,11,0.08); color: #d97706; }
.bento-tag-red    { background: rgba(239,68,68,0.08); color: #dc2626; }

/* --- Bento Price Display --- */
.bento-price {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}
.bento-price .bento-price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}
.bento-price .bento-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.03em;
}
.bento-price .bento-price-cents {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}
.bento-price .bento-price-period {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}
@media (min-width: 768px) {
    .bento-price .bento-price-amount { font-size: 3rem; }
}

/* --- Bento CTA Button --- */
.bento-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-cta);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
    text-decoration: none;
}
.bento-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.42);
    filter: brightness(1.05);
}
.bento-cta:active {
    transform: scale(0.97);
}
.bento-cta-full {
    width: 100%;
}
.bento-cta-promo {
    background: var(--color-cta);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.bento-cta-promo:hover {
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.48);
}

/* --- Bento Testimonial Card --- */
.bento-testimonial { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 1.25rem; padding: 1.25rem; }
.bento-testimonial .bento-stars { display: flex; gap: 0.125rem; color: #fbbf24; font-size: 0.875rem; margin-bottom: 0.75rem; }
.bento-testimonial .bento-quote { font-size: 0.875rem; color: #d1d5db; line-height: 1.6; margin-bottom: 0.75rem; font-style: italic; }
.bento-testimonial .bento-author { font-size: 0.75rem; color: #9ca3af; font-weight: 600; }

/* --- Bento Link Cards (SEO hub style) --- */
.bento-link-card { display: block; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 1rem; padding: 1rem 1.25rem; text-decoration: none; transition: all 0.25s ease; }
.bento-link-card:hover { border-color: rgba(67, 56, 202, 0.25); box-shadow: 0 4px 20px rgba(11, 20, 55, 0.08); transform: translateY(-1px); }
.bento-link-card .bento-link-title { font-weight: 700; font-size: 0.9375rem; color: var(--color-text); margin-bottom: 0.25rem; }
.bento-link-card .bento-link-sub { font-size: 0.75rem; color: #9ca3af; }
@media (min-width: 768px) { .bento-link-card { padding: 1.25rem 1.5rem; } .bento-link-card .bento-link-title { font-size: 1rem; } .bento-link-card .bento-link-sub { font-size: 0.8125rem; } }

/* --- Bento Urgency Banner --- */
.bento-urgency { background: linear-gradient(135deg, var(--color-primary-mid) 0%, var(--color-primary) 100%); border-radius: 1.5rem; padding: 2rem 1.5rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.bento-urgency::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(67, 56, 202, 0.12) 0%, transparent 70%); pointer-events: none; }
.bento-urgency .bento-urgency-badge { display: inline-flex; align-items: center; gap: 0.375rem; background: rgba(190,18,60,0.15); border: 1px solid rgba(190,18,60,0.25); border-radius: 9999px; padding: 0.25rem 0.875rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fca5a5; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.bento-urgency h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; z-index: 1; letter-spacing: -0.02em; }
.bento-urgency p { font-size: 0.9375rem; color: #d1d5db; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.bento-urgency .bento-urgency-updated { font-size: 0.75rem; color: #9ca3af; margin-bottom: 1rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .bento-urgency { padding: 2.5rem 2rem; } .bento-urgency h2 { font-size: 2rem; } .bento-urgency p { font-size: 1.0625rem; } }

/* --- Bento Editorial Bar --- */
.bento-editorial-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem; background: #1f2937; color: #d1d5db; font-size: 0.6875rem; padding: 0.5rem 1rem; }
@media (min-width: 768px) { .bento-editorial-bar { font-size: 0.75rem; padding: 0.625rem 1rem; } }

/* --- Bento Summary Nav --- */
.bento-summary-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #6b7280; padding: 0.75rem 0; }
.bento-summary-nav a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}
.bento-summary-nav a:hover { color: var(--color-primary-accent); }
.bento-summary-nav .bento-summary-sep { color: #d1d5db; }
@media (min-width: 768px) {
    .bento-summary-nav { font-size: 0.8125rem; }
}

/* --- Bento Check List --- */
.bento-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .bento-checklist {
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
    }
}
.bento-checklist label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: #374151;
    padding: 0.5rem;
    border-radius: 0.625rem;
    transition: background 0.2s;
}
.bento-checklist label:hover { background: rgba(67, 56, 202, 0.03); }
.bento-checklist input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1.5px solid #d1d5db;
    accent-color: var(--color-primary-accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* --- Bento 404 --- */
.bento-404 {
    text-align: center;
    padding: 2rem;
}
.bento-404 .bento-404-num {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-primary-accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.bento-404 h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}
.bento-404 p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .bento-404 .bento-404-num { font-size: 9rem; }
    .bento-404 h1 { font-size: 2.5rem; }
    .bento-404 p  { font-size: 1.125rem; }
}

/* --- Bento Mobile Bottom Padding (for sticky nav) --- */
.bento-mobile-pb {
    padding-bottom: 7rem;
}
@media (min-width: 768px) {
    .bento-mobile-pb { padding-bottom: 0; }
}

/* --- Bento CTA Accent Variant --- */
.bento-cta-accent {
    background: linear-gradient(135deg, var(--color-primary-accent) 0%, var(--color-primary-mid) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(67, 56, 202, 0.28);
}
.bento-cta-accent:hover {
    box-shadow: 0 8px 24px rgba(67, 56, 202, 0.42);
}

/* --- Bento Steps Container --- */
.bento-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-steps { gap: 1.25rem; }
}

/* --- Reveal on Scroll (Phase 4 UX) --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering delays for siblings */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }

/* Enhanced Magnetic Hover for CTA */
.bento-cta.magnetic-hover:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.45);
}

/* --- Bento FAQ Component --- */
.bento-faq-item {
    background: #ffffff;
    border: 1px solid rgba(11, 20, 55, 0.08);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.bento-faq-item:hover {
    border-color: rgba(67, 56, 202, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.bento-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-navy);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}
.bento-faq-item summary::-webkit-details-marker {
    display: none;
}
.bento-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: rgba(67, 56, 202, 0.05);
    color: var(--color-accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.bento-faq-icon i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}
.bento-faq-item[open] summary {
    color: var(--color-accent);
}
.bento-faq-item[open] .bento-faq-icon {
    background-color: var(--color-accent);
    color: #fff;
}
.bento-faq-item[open] .bento-faq-icon i {
    transform: rotate(45deg);
}
.bento-faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563; /* gray-600 */
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .bento-faq-item summary {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    .bento-faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.875rem;
    }
    .bento-faq-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    .bento-faq-icon i {
        font-size: 1rem;
    }
}

/* --- Bento Table Component --- */
.bento-table-wrap {
    background: #ffffff;
    border: 1px solid rgba(11, 20, 55, 0.08);
    border-radius: 1rem;
    padding: 1px; /* Para não cortar as bordas arredondadas da tabela */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}
.bento-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.bento-table-wrap th {
    background-color: #f8fafc;
    color: var(--color-navy);
    font-weight: 800;
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(11, 20, 55, 0.05);
}
.bento-table-wrap th:first-child {
    border-top-left-radius: 1rem;
}
.bento-table-wrap th:last-child {
    border-top-right-radius: 1rem;
}
.bento-table-wrap td {
    padding: 1.25rem 1rem;
    color: #4b5563; /* gray-600 */
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(11, 20, 55, 0.05);
    vertical-align: middle;
}
.bento-table-wrap tbody tr:last-child td {
    border-bottom: none;
}
.bento-table-wrap tbody tr:hover {
    background-color: #f8fafc; /* gray-50 */
}
/* Coluna Vencedora */
.bento-table-col-win {
    background-color: rgba(67, 56, 202, 0.04);
    color: var(--color-accent) !important;
    font-weight: 700;
}
.bento-table-wrap th.bento-table-col-win {
    background-color: rgba(67, 56, 202, 0.08);
    color: var(--color-accent);
}
