@keyframes fade-in {
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.82); }
}

@keyframes fade-out {
    from { background-color: rgba(0, 0, 0, 0.82); }
    to { background-color: rgba(0, 0, 0, 0); }
}

@keyframes slide-in {
    from { transform: translateX(500px); }
    to { transform: translateX(0px); }
}

@keyframes slide-out {
    from { transform: translateX(0px); }
    to { transform: translateX(500px); }
}

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

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

@layer base {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        border-color: rgb(var(--border));
    }
    
    body {
        font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background:
            radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 24%),
            radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
            radial-gradient(circle at center, rgba(15, 23, 42, 0.18), transparent 50%),
            #030712;
        color: rgb(var(--foreground));
    }
    
    h1, h2, h3, h4, h5, h6 {
        letter-spacing: -0.03em;
    }
    
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.75);
        border-radius: 9999px;
    }
}

#cart-drawer[data-state="open"] {
    animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
    animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
    animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
    animation: slide-out 0.4s forwards;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.product-card {
    animation: fadeInUp 0.45s ease-out;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.catalog-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.catalog-filter:hover {
    border-color: rgba(239, 68, 68, 0.7);
    color: #ffffff;
}

.catalog-filter.is-active {
    border-color: #dc2626;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.2);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(127, 29, 29, 0.55);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(10, 16, 30, 0.98));
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.22);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.catalog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.95);
    box-shadow: 0 22px 44px rgba(185, 28, 28, 0.18);
}

.catalog-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
    background: linear-gradient(90deg, #b91c1c, #ef4444, #dc2626);
    color: #ffffff;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.catalog-card__link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.catalog-card__media {
    position: relative;
    overflow: hidden;
    background: #020617;
    aspect-ratio: 527 / 312;
}

.catalog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-card__image {
    transform: scale(1.05);
}

.catalog-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1rem;
}

.catalog-card__title {
    display: -webkit-box;
    min-height: 2.8rem;
    overflow: hidden;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card:hover .catalog-card__title {
    color: #f87171;
}

.catalog-card__meta {
    margin-top: 1rem;
}

.catalog-card__discount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.catalog-card__old-price {
    color: #94a3b8;
    font-size: 0.85rem;
    text-decoration: line-through;
}

.catalog-card__discount-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.45rem;
    border-radius: 0.45rem;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
}

.catalog-card__price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.55rem;
}

.catalog-card__price {
    color: #ef4444;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.catalog-card__icons {
    display: flex;
    gap: 0.45rem;
}

.catalog-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.catalog-card__icon img {
    width: 1.35rem;
    height: 1.35rem;
}

.catalog-card__pix {
    color: #94a3b8;
    font-size: 0.78rem;
}

.catalog-card__actions {
    padding: 0 1rem 1rem;
}

.catalog-card__button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.catalog-card__button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.site-header {
    border-color: rgba(56, 189, 248, 0.12);
    background: linear-gradient(180deg, rgba(8, 15, 31, 0.96), rgba(10, 18, 36, 0.92));
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.34);
}

.site-nav {
    gap: 1rem;
}

.site-brand {
    position: relative;
    padding-right: 1rem;
}

.site-brand::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 2.35rem;
    background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.35), transparent);
    transform: translateY(-50%);
}

.site-brand__logo {
    filter: drop-shadow(0 12px 20px rgba(2, 6, 23, 0.24));
}

.site-search input {
    border-color: rgba(56, 189, 248, 0.14);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-search input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.42);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.site-nav__pill {
    border-color: rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.site-nav__pill:hover {
    border-color: rgba(56, 189, 248, 0.24);
    background: rgba(56, 189, 248, 0.07);
}

.site-nav__pill--whatsapp {
    border-color: rgba(16, 185, 129, 0.35) !important;
    background: rgba(16, 185, 129, 0.12) !important;
}

.site-nav__cta {
    background: linear-gradient(180deg, #0ea5e9, #0284c7) !important;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.22);
}

.site-nav__cta:hover {
    background: linear-gradient(180deg, #38bdf8, #0284c7) !important;
}

.site-mobile-menu-btn {
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-overlay {
    backdrop-filter: blur(6px);
}

.mobile-menu-panel {
    width: min(88vw, 320px);
    border-left-color: rgba(56, 189, 248, 0.12);
    background:
        linear-gradient(180deg, rgba(9, 15, 28, 0.98), rgba(10, 18, 36, 0.98)),
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 34%);
    color: #e2e8f0;
    box-shadow: -18px 0 45px rgba(2, 6, 23, 0.42);
}

.mobile-menu-panel__header {
    border-bottom-color: rgba(56, 189, 248, 0.08);
    background: transparent;
}

.mobile-menu-panel__intro {
    max-width: 100%;
    width: 100%;
}

.mobile-menu-panel__logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.mobile-menu-panel__text {
    display: none;
}

.mobile-menu-panel__close {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.14);
}

.mobile-menu-search__input {
    min-height: 3rem;
    border-color: rgba(56, 189, 248, 0.14);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
}

.mobile-menu-search__input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.28);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.mobile-menu-nav {
    display: grid;
    gap: 0.35rem;
}

.mobile-menu-nav__divider {
    height: 1px;
    margin: 0.6rem 0 0.2rem;
    background: rgba(148, 163, 184, 0.12);
}

.mobile-menu-link {
    min-height: 3.3rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.mobile-menu-link:hover {
    background: rgba(56, 189, 248, 0.06);
}

.mobile-menu-link--row {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-menu-link--row i,
.mobile-menu-link--row svg {
    display: none;
}

.mobile-menu-link--accent {
    color: #38bdf8 !important;
}

.mobile-menu-link--danger {
    color: #ef4444 !important;
}

.mobile-menu-panel__footer {
    border-top-color: rgba(148, 163, 184, 0.1);
    background: transparent;
}

.mobile-menu-secondary-cta {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
    text-decoration: none;
}

.mobile-menu-cart-button {
    min-height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ef4444, #ef4444) !important;
    box-shadow: 0 16px 28px rgba(239, 68, 68, 0.24);
}

.arcade-hero {
    position: relative;
    min-height: 620px;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #08101f;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.32);
}

.arcade-hero__media,
.arcade-hero__overlay {
    position: absolute;
    inset: 0;
}

.arcade-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arcade-hero__overlay {
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.76) 40%, rgba(3, 7, 18, 0.24) 72%, rgba(3, 7, 18, 0.12) 100%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.12), transparent 60%);
}

.arcade-hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 3rem 2.75rem;
}

.arcade-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #ef4444;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.arcade-hero__title {
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.92;
}

.arcade-hero__text {
    margin-top: 1.25rem;
    color: #d1d5db;
    font-size: 1.18rem;
    line-height: 1.6;
    max-width: 470px;
}

.arcade-hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.arcade-highlight {
    display: flex;
    gap: 0.75rem;
    color: #e5e7eb;
}

.arcade-highlight i {
    flex: 0 0 auto;
    margin-top: 0.1rem;
    color: #ef4444;
}

.arcade-highlight strong,
.arcade-highlight span {
    display: block;
}

.arcade-highlight strong {
    font-size: 0.92rem;
    font-weight: 700;
}

.arcade-highlight span {
    margin-top: 0.25rem;
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.45;
}

.arcade-hero__actions {
    display: flex;
    gap: 0.85rem;
    margin-top: 2rem;
}

.arcade-hero__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(180deg, #ef4444, #b91c1c);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(185, 28, 28, 0.28);
}

.arcade-hero__nav--left {
    left: 1rem;
}

.arcade-hero__nav--right {
    right: 1rem;
}

.arcade-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    z-index: 3;
    display: flex;
    gap: 0.45rem;
    transform: translateX(-50%);
}

.bannerDot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.24);
    transition: all 0.2s ease;
}

.bannerDot.is-active {
    width: 2rem;
    background: #38bdf8;
    border-color: #38bdf8;
}

.arcade-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    background: rgba(10, 16, 30, 0.88);
    overflow: hidden;
}

.arcade-benefit {
    display: flex;
    gap: 0.9rem;
    padding: 1.5rem 1.4rem;
    align-items: flex-start;
}

.arcade-benefit + .arcade-benefit {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.arcade-benefit i {
    color: #e5e7eb;
    margin-top: 0.1rem;
}

.arcade-benefit strong,
.arcade-benefit span {
    display: block;
}

.arcade-benefit strong {
    font-size: 1rem;
    color: #f8fafc;
}

.arcade-benefit span {
    margin-top: 0.2rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.arcade-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.arcade-section-head--center {
    justify-content: center;
    text-align: center;
}

.arcade-section-head__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.arcade-section-head__title-wrap--center {
    justify-content: center;
}

.arcade-section-head__badge {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.arcade-section-head__title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.arcade-section-head__text {
    margin-top: 0.45rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.arcade-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8rem;
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.arcade-view-all:hover {
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(56, 189, 248, 0.08);
}

.arcade-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.arcade-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(10, 15, 26, 0.96));
    box-shadow: 0 16px 35px rgba(2, 6, 23, 0.22);
}

.arcade-product-card__image-wrap {
    display: block;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
}

.arcade-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.arcade-product-card:hover .arcade-product-card__image {
    transform: scale(1.05);
}

.arcade-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.arcade-product-card__category {
    color: #e5e7eb;
    opacity: 0.72;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arcade-product-card__title {
    margin-top: 0.55rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
    min-height: 3rem;
}

.arcade-product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    color: #fbbf24;
    font-size: 0.75rem;
}

.arcade-product-card__rating small {
    color: #6b7280;
}

.arcade-product-card__price {
    margin-top: 0.8rem;
}

.arcade-product-card__price strong,
.arcade-product-card__price span {
    display: block;
}

.arcade-product-card__price strong {
    color: #f97316;
    font-size: 1.7rem;
    font-weight: 800;
}

.arcade-product-card__price span {
    margin-top: 0.2rem;
    color: #94a3b8;
    font-size: 0.8rem;
}

.arcade-product-card__actions {
    display: flex;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1rem;
}

.arcade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.95rem;
    padding: 0.95rem 1.35rem;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.arcade-button:hover {
    transform: translateY(-1px);
}

.arcade-button--primary {
    background: linear-gradient(180deg, #ef4444, #b91c1c);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(185, 28, 28, 0.22);
}

.arcade-button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.arcade-button--card {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.82rem;
}

.arcade-icon-button {
    width: 2.9rem;
    height: 2.9rem;
    border: none;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #0ea5e9, #0284c7);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arcade-custom-cta {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 2rem 2.2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.18);
    background:
        linear-gradient(135deg, rgba(69, 10, 10, 0.95), rgba(31, 10, 24, 0.88)),
        radial-gradient(circle at right, rgba(239, 68, 68, 0.18), transparent 30%);
}

.arcade-custom-cta h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.arcade-custom-cta p {
    margin-top: 0.45rem;
    color: #cbd5e1;
}

.arcade-custom-cta__meta {
    display: grid;
    gap: 0.45rem;
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 600;
}

.arcade-testimonials {
    padding: 2rem 0 0;
}

.arcade-testimonials__viewport {
    width: 100%;
}

.arcade-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.arcade-testimonials__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.arcade-testimonials__dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.arcade-testimonials__dot {
    width: 0.72rem;
    height: 0.72rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.28);
    transition: all 0.2s ease;
}

.arcade-testimonials__dot.is-active {
    width: 1.9rem;
    background: #38bdf8;
}

.arcade-testimonial-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(13, 20, 35, 0.95), rgba(10, 15, 26, 0.92));
}

.arcade-testimonial-card__stars {
    color: #fbbf24;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.arcade-testimonial-card p {
    margin-top: 1rem;
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 0.95rem;
}

.arcade-testimonial-card__author {
    margin-top: 1.15rem;
}

.arcade-testimonial-card__author strong,
.arcade-testimonial-card__author span {
    display: block;
}

.arcade-testimonial-card__author strong {
    color: #ffffff;
}

.arcade-testimonial-card__author span {
    margin-top: 0.2rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.arcade-newsletter {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 14, 25, 0.92);
}

.arcade-newsletter strong,
.arcade-newsletter span {
    display: block;
}

.arcade-newsletter strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.arcade-newsletter span {
    margin-top: 0.25rem;
    color: #94a3b8;
}

.arcade-newsletter__form {
    display: flex;
    gap: 0.75rem;
}

.arcade-newsletter__form input {
    flex: 1;
    min-height: 3.2rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 0 1rem;
}

.arcade-footer {
    padding: 3.4rem 0 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 10, 24, 0.98), rgba(2, 6, 23, 1)),
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 28%);
}

.arcade-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 4rem;
    align-items: start;
}

.arcade-footer__brand {
    max-width: 420px;
}

.arcade-footer__brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.arcade-footer__brand p {
    margin-top: 1.2rem;
    max-width: 360px;
    color: #9fb0c8;
    line-height: 1.7;
    font-size: 0.98rem;
}

.arcade-footer__logo {
    height: 4.6rem;
    width: auto;
    object-fit: contain;
}

.arcade-footer__title {
    margin-bottom: 1.15rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.arcade-footer__list {
    display: grid;
    gap: 0.95rem;
    list-style: none;
}

.arcade-footer__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 1.75rem;
}

.arcade-footer__item i {
    flex: 0 0 auto;
    color: #cbd5e1;
    opacity: 0.88;
}

.arcade-footer__list a,
.arcade-footer__list span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.arcade-footer__list a:hover {
    color: #ffffff;
}

.arcade-footer__contact {
    justify-self: end;
    width: min(100%, 360px);
    padding: 1.35rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(56, 189, 248, 0.12);
    background: linear-gradient(180deg, rgba(14, 23, 42, 0.74), rgba(8, 15, 28, 0.98));
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
}

.arcade-footer__socials {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.2rem;
}

.arcade-footer__social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: all 0.2s ease;
}

.arcade-footer__social:hover {
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-1px);
}

.arcade-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.whatsapp-float__label {
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 9999px;
    background: rgba(2, 6, 23, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(2, 6, 23, 0.28);
}

.whatsapp-float__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.3);
    animation: float-whatsapp 2.2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .whatsapp-float__label {
        display: inline-flex;
    }
}

@media (max-width: 1279px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .arcade-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .arcade-testimonials__grid,
    .arcade-testimonials__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .arcade-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .arcade-hero {
        min-height: 540px;
    }

    .arcade-hero__content {
        padding: 2rem;
        max-width: 100%;
    }

    .arcade-hero__highlights {
        grid-template-columns: 1fr;
    }

    .arcade-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .arcade-footer__contact {
        justify-self: start;
        width: 100%;
    }
}

@media (max-width: 767px) {
    body.storefront-area {
        background: linear-gradient(180deg, #0a1120 0%, #0b1222 48%, #0b1324 100%);
    }

    .site-background > div:not(.site-background__grid) {
        opacity: 0.22;
        filter: blur(150px);
    }

    .site-background__grid {
        opacity: 0.02 !important;
    }

    .site-header {
        background: linear-gradient(180deg, rgba(8, 14, 29, 0.98), rgba(10, 18, 36, 0.94));
    }

    .site-nav {
        padding-top: 0.15rem;
        padding-bottom: 0.15rem;
    }

    .site-brand {
        padding-right: 0;
    }

    .site-brand::after {
        display: none;
    }

    .site-brand__logo {
        height: 2.15rem;
    }

    .site-mobile-menu-btn {
        border-radius: 0.9rem;
        padding: 0.6rem;
    }

    .mobile-menu-panel {
        width: min(86vw, 320px);
    }

    .arcade-hero-section {
        padding-top: 0.9rem;
        padding-bottom: 1.1rem;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .catalog-card__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .catalog-card {
        border-radius: 0.95rem;
    }

    .catalog-card__body {
        padding: 0.8rem;
    }

    .catalog-card__title {
        min-height: 2.45rem;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .catalog-card__meta {
        margin-top: 0.7rem;
    }

    .catalog-card__price {
        font-size: 1.15rem;
    }

    .catalog-card__old-price,
    .catalog-card__pix {
        font-size: 0.68rem;
    }

    .catalog-card__icon {
        width: 2rem;
        height: 2rem;
    }

    .catalog-card__icon img {
        width: 1.05rem;
        height: 1.05rem;
    }

    .catalog-card__actions {
        padding: 0 0.8rem 0.8rem;
    }

    .catalog-card__button {
        min-height: 2.45rem;
        border-radius: 0.78rem;
        font-size: 0.82rem;
    }

    .arcade-hero {
        min-height: 0;
        aspect-ratio: auto;
        width: 100%;
        border-radius: 1.35rem;
        background: transparent;
        box-shadow: 0 20px 45px rgba(2, 6, 23, 0.26);
    }

    .arcade-hero__media {
        position: relative;
        inset: auto;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        background: transparent;
    }

    .arcade-hero__image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: unset;
        object-position: center;
    }

    .arcade-hero__nav {
        top: auto;
        bottom: 0.95rem;
        transform: none;
        width: 2.35rem;
        height: 2.35rem;
        background: rgba(2, 6, 23, 0.72);
        box-shadow: none;
    }

    .arcade-hero__nav--left {
        left: 0.95rem;
    }

    .arcade-hero__nav--right {
        right: 0.95rem;
    }

    .arcade-hero__dots {
        bottom: 1.25rem;
    }

    .bannerDot {
        width: 0.58rem;
        height: 0.58rem;
    }

    .bannerDot.is-active {
        width: 1.55rem;
    }

    .arcade-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .arcade-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.1rem;
    }

    .arcade-section-head__title {
        font-size: 1.45rem;
    }

    .arcade-section-head__text {
        font-size: 0.82rem;
    }

    .arcade-view-all {
        min-width: auto;
        padding: 0.65rem 0.9rem;
        border-radius: 0.85rem;
        font-size: 0.8rem;
    }

    .arcade-product-card {
        border-radius: 0.95rem;
    }

    .arcade-product-card__image-wrap {
        aspect-ratio: 1 / 0.86;
    }

    .arcade-product-card__body {
        padding: 0.72rem;
    }

    .arcade-product-card__category {
        font-size: 0.55rem;
    }

    .arcade-product-card__title {
        margin-top: 0.38rem;
        min-height: 2.2rem;
        font-size: 0.74rem;
        line-height: 1.28;
    }

    .arcade-product-card__rating {
        margin-top: 0.3rem;
        font-size: 0.56rem;
    }

    .arcade-product-card__price {
        margin-top: 0.45rem;
    }

    .arcade-product-card__price strong {
        font-size: 1rem;
    }

    .arcade-product-card__price span {
        font-size: 0.62rem;
    }

    .arcade-product-card__actions {
        gap: 0.35rem;
        padding-top: 0.65rem;
    }

    .arcade-button--card {
        padding: 0.58rem 0.5rem;
        border-radius: 0.72rem;
        font-size: 0.62rem;
    }

    .arcade-icon-button {
        width: 2.05rem;
        height: 2.05rem;
        border-radius: 0.7rem;
    }

    .arcade-testimonials {
        padding-top: 0.5rem;
        overflow: hidden;
    }

    .arcade-testimonials__viewport {
        padding-inline: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .arcade-testimonials__viewport::-webkit-scrollbar {
        display: none;
    }

    .arcade-testimonials__track {
        display: flex;
        gap: 0;
    }

    .arcade-testimonial-card {
        scroll-snap-align: start;
        flex: 0 0 100%;
        min-height: 0;
        width: 100%;
        padding: 1rem 0.95rem 1.05rem;
        border-radius: 1rem;
    }

    .arcade-testimonial-card__stars {
        font-size: 0.82rem;
    }

    .arcade-testimonial-card p {
        margin-top: 0.8rem;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .arcade-testimonial-card__author {
        margin-top: 0.95rem;
    }

    .arcade-testimonial-card__author strong {
        font-size: 0.92rem;
    }

    .arcade-testimonial-card__author span {
        font-size: 0.78rem;
    }

    .arcade-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .arcade-testimonials__dots {
        display: flex;
        margin-top: 1rem;
    }

    .arcade-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        justify-items: center;
    }

    .arcade-footer__brand {
        max-width: 100%;
        text-align: center;
        padding-inline: 0.5rem;
    }

    .arcade-footer__brand-lockup {
        justify-content: center;
        width: 100%;
    }

    .arcade-footer__brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .arcade-footer__socials {
        justify-content: center;
    }

    .arcade-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .arcade-footer__contact {
        justify-self: center;
        width: 100%;
        max-width: 100%;
        padding: 1rem 1rem 1.05rem;
        border-radius: 1rem;
    }
}

@media (max-width: 479px) {
    body.storefront-area {
        background: linear-gradient(180deg, #09101d 0%, #0a1221 52%, #0a1323 100%);
    }

    .site-background > div:not(.site-background__grid) {
        opacity: 0.14;
    }

    .site-background__grid {
        opacity: 0.01 !important;
    }

    .arcade-hero-section {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    .arcade-hero {
        aspect-ratio: auto;
        border-radius: 1.1rem;
    }

    .catalog-grid,
    .arcade-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .catalog-card__body {
        padding: 0.72rem;
    }

    .catalog-card__title {
        font-size: 0.76rem;
        min-height: 2.2rem;
    }

    .catalog-card__button {
        min-height: 2.3rem;
        font-size: 0.76rem;
    }

    .arcade-product-card__body {
        padding: 0.68rem;
    }

    .arcade-product-card__title {
        font-size: 0.7rem;
        min-height: 2rem;
    }

    .arcade-product-card__price strong {
        font-size: 0.94rem;
    }

    .arcade-button--card {
        font-size: 0.58rem;
        padding: 0.54rem 0.4rem;
    }

    .arcade-testimonials__viewport {
        padding-inline: 0;
        scroll-padding-inline: 0;
    }

    .arcade-testimonials__track {
        gap: 0;
    }
}
