* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.top-header {
    background: #111;
    border-bottom: 2px solid #ff6a00;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo span {
    font-size: 24px;
    font-weight: 800;
    color: #ff6a00;
}

.search-box {
    flex: 1;
    display: flex;
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 13px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box button {
    padding: 0 22px;
    border: none;
    background: #ff6a00;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.search-box button:hover {
    background: #ff7f1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-links a {
    color: #ddd;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #ff6a00;
}

.cart-link {
    background: #ff6a00;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: bold;
}

.cart-link:hover {
    background: #ff7f1a;
}

.menu-toggle {
    display: none;
    background: #ff6a00;
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 8px 13px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-search {
    display: none;
    width: 95%;
    margin: 0 auto 14px auto;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #151515;
    border-top: 1px solid #333;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #292929;
    color: #eee;
}

.mobile-menu a:hover {
    background: #1f1f1f;
    color: #ff6a00;
}

/* TABLET */
@media (max-width: 1100px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        min-height: 68px;
        gap: 12px;
    }

    .logo {
        min-width: auto;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo span {
        font-size: 21px;
    }

    .desktop-search {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .mobile-search .search-box {
        width: 100%;
    }

    .search-box input {
        padding: 12px;
        font-size: 14px;
    }

    .search-box button {
        padding: 0 14px;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* CELULAR PEQUENO */
@media (max-width: 420px) {
    .logo span {
        font-size: 19px;
    }

    .menu-toggle {
        font-size: 23px;
        padding: 7px 11px;
    }
}

/* HOME */

.hero {
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.25), transparent 35%),
        linear-gradient(135deg, #0d0d0d, #171717);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 40px;
}

.hero-text .tag {
    display: inline-block;
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
    border: 1px solid rgba(255, 106, 0, 0.4);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.05;
    max-width: 650px;
    margin-bottom: 18px;
}

.hero-text p {
    color: #cfcfcf;
    font-size: 18px;
    max-width: 620px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary {
    background: #ff6a00;
    color: #fff;
}

.btn-primary:hover {
    background: #ff7f1a;
}

.btn-secondary {
    border: 1px solid #444;
    color: #fff;
    background: #181818;
}

.btn-secondary:hover {
    border-color: #ff6a00;
    color: #ff6a00;
}

.hero-card {
    background: linear-gradient(145deg, #1c1c1c, #101010);
    border: 1px solid #333;
    border-radius: 22px;
    padding: 35px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-card h3 {
    font-size: 38px;
    color: #ff6a00;
    margin-bottom: 10px;
}

.hero-card p {
    color: #aaa;
    margin-bottom: 22px;
}

.hero-card strong {
    font-size: 22px;
}

.features {
    padding: 26px 0;
    background: #101010;
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    padding: 18px;
    border-radius: 14px;
}

.feature-card strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.feature-card span {
    color: #aaa;
    font-size: 14px;
}

.section-area {
    padding: 55px 0;
}

.section-title {
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 7px;
}

.section-title p {
    color: #aaa;
}

.row-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.see-all {
    color: #ff6a00;
    font-weight: bold;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    font-weight: bold;
    transition: 0.2s;
}

.category-card:hover {
    border-color: #ff6a00;
    color: #ff6a00;
    transform: translateY(-3px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: #181818;
    border: 1px solid #292929;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #ff6a00;
}

.product-img {
    height: 210px;
    background: linear-gradient(145deg, #222, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.product-info {
    padding: 18px;
}

.product-badge {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: bold;
}

.product-badge.dark {
    background: #2b2b2b;
    color: #ff6a00;
    border: 1px solid #444;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.product-info p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 14px;
}

.price-area {
    margin-bottom: 16px;
}

.price-area small {
    display: block;
    color: #777;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.price-area strong {
    font-size: 22px;
    color: #ff6a00;
}

.product-btn {
    display: block;
    text-align: center;
    background: #ff6a00;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
}

.product-btn:hover {
    background: #ff7f1a;
}

/* RESPONSIVO HOME */

@media (max-width: 1000px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .category-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 55px 0;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .features-grid,
    .category-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .row-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-img {
        height: 190px;
    }
}

.page-space {
    padding: 50px 0;
}

.product-page {
    padding: 45px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: flex-start;
}

.product-gallery,
.product-details,
.product-description {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 22px;
}

.main-product-image {
    background: #0d0d0d;
    border-radius: 14px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.no-image {
    color: #777;
}

.thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
}

.thumbs button {
    min-width: 82px;
    height: 82px;
    border: 1px solid #333;
    background: #0d0d0d;
    border-radius: 10px;
    cursor: pointer;
    padding: 5px;
}

.thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.product-category {
    display: inline-block;
    color: #ff6a00;
    background: rgba(255, 106, 0, .12);
    border: 1px solid rgba(255, 106, 0, .3);
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 15px;
}

.product-details h1 {
    font-size: 34px;
    margin-bottom: 18px;
}

.product-price-box {
    margin-bottom: 14px;
}

.product-price-box .old-price {
    display: block;
    color: #777;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.product-price-box strong {
    font-size: 36px;
    color: #ff6a00;
}

.payment-info,
.stock-info {
    color: #bbb;
    margin-bottom: 10px;
}

.product-variations {
    margin: 24px 0;
}

.product-variations h3 {
    margin-bottom: 16px;
}

.variation-public {
    margin-bottom: 18px;
}

.variation-public strong {
    display: block;
    margin-bottom: 10px;
}

.variation-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variation-btn {
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.variation-btn:hover,
.variation-btn.selected {
    border-color: #ff6a00;
    color: #ff6a00;
    background: rgba(255, 106, 0, .12);
}

.buy-box {
    margin-top: 24px;
}

.buy-box label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.buy-box input {
    width: 120px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.btn-buy,
.btn-cart {
    width: 100%;
    display: block;
    border: none;
    padding: 15px;
    border-radius: 9px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-buy {
    background: #ff6a00;
    color: #fff;
}

.btn-buy:hover {
    background: #ff7f1a;
}

.btn-cart {
    background: transparent;
    color: #ff6a00;
    border: 1px solid #ff6a00;
}

.product-description {
    margin-top: 26px;
}

.product-description h2 {
    margin-bottom: 14px;
}

.product-description p {
    color: #ccc;
    line-height: 1.7;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tech-grid div {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 10px;
    padding: 14px;
    color: #ccc;
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .main-product-image {
        height: 360px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .product-details h1 {
        font-size: 26px;
    }

    .product-price-box strong {
        font-size: 30px;
    }

    .main-product-image {
        height: 300px;
    }
}

.cart-page {
    padding: 45px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: flex-start;
}

.cart-items,
.cart-summary,
.empty-cart {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 22px;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr 90px 140px 90px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #292929;
    padding: 18px 0;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-img {
    width: 90px;
    height: 90px;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.cart-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.cart-info p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
}

.cart-info strong,
.cart-subtotal strong {
    color: #ff6a00;
}

.cart-qty label,
.cart-subtotal span {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 6px;
}

.cart-qty input {
    width: 75px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
}

.cart-remove {
    color: #ff7777;
    font-size: 14px;
}

.update-cart-btn {
    margin-top: 18px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 13px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.cart-summary h2 {
    margin-bottom: 18px;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #292929;
    padding: 14px 0;
}

.summary-line span {
    color: #aaa;
}

.summary-total {
    border-bottom: none;
    font-size: 20px;
}

.summary-total strong {
    color: #ff6a00;
}

.checkout-btn,
.continue-btn,
.empty-cart a {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 14px;
}

.checkout-btn,
.empty-cart a {
    background: #ff6a00;
    color: #fff;
}

.continue-btn {
    border: 1px solid #ff6a00;
    color: #ff6a00;
}

.empty-cart {
    text-align: center;
    padding: 45px 20px;
}

.empty-cart p {
    color: #aaa;
    margin: 10px 0 22px;
}

@media (max-width: 1000px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-qty,
    .cart-subtotal,
    .cart-remove {
        grid-column: 2;
    }
}

.checkout-page {
    padding: 45px 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: flex-start;
}

.checkout-card,
.checkout-summary,
.success-box {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 20px;
}

.checkout-card h2,
.checkout-summary h2 {
    margin-bottom: 18px;
}

.checkout-card label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
}

.checkout-card input,
.checkout-card select {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.checkout-card input:focus,
.checkout-card select:focus {
    border-color: #ff6a00;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.checkout-info {
    color: #aaa;
    font-size: 14px;
}

.success-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.success-box h1 {
    margin-bottom: 12px;
}

.success-box p {
    color: #ccc;
}

.order-info {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 18px;
    margin: 22px 0;
    text-align: left;
}

.order-info p {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.coupon-form {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.coupon-form input {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    outline: none;
}

.coupon-form button {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 0 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.coupon-error {
    background: rgba(255, 0, 0, .12);
    color: #ff7777;
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
}

.coupon-success {
    background: rgba(0, 180, 90, .14);
    color: #6dffb0;
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
}

.coupon-applied {
    background: #0d0d0d;
    border: 1px solid #292929;
    padding: 10px;
    border-radius: 8px;
    color: #ddd;
    margin-bottom: 12px;
}

.coupon-applied strong {
    color: #ff6a00;
}

.coupon-applied a {
    float: right;
    color: #ff7777;
    font-size: 13px;
}

.listing-page {
    padding: 45px 0;
}

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.category-filter a {
    background: #151515;
    border: 1px solid #292929;
    color: #ddd;
    padding: 11px 14px;
    border-radius: 999px;
    transition: .2s;
}

.category-filter a:hover,
.category-filter a.active {
    border-color: #ff6a00;
    color: #ff6a00;
    background: rgba(255, 106, 0, .12);
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.auth-page,
.account-page {
    padding: 45px 0;
}

.auth-box {
    max-width: 440px;
    margin: 0 auto;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 28px;
}

.auth-box h1 {
    margin-bottom: 8px;
}

.auth-box p {
    color: #aaa;
    margin-bottom: 22px;
}

.auth-box label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.auth-box input {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.auth-box input:focus {
    border-color: #ff6a00;
}

.auth-box button,
.account-btn {
    display: block;
    width: 100%;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.auth-link {
    display: block;
    text-align: center;
    color: #ff6a00;
    margin-top: 18px;
}

.account-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
}

.account-card {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 22px;
}

.account-card h2 {
    margin-bottom: 18px;
}

.account-card p {
    color: #ccc;
    margin-bottom: 8px;
}

.logout-client {
    display: inline-block;
    margin-top: 18px;
    color: #ff7777;
}

.mini-order {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.mini-order strong,
.mini-order span,
.mini-order small {
    display: block;
    margin-bottom: 6px;
}

.mini-order span {
    color: #ff6a00;
    font-weight: bold;
}

.mini-order small {
    color: #aaa;
}

.mini-order a,
.table-link {
    color: #ff6a00;
    font-weight: bold;
}

.muted-text {
    color: #aaa !important;
}

.table-responsive-site {
    width: 100%;
    overflow-x: auto;
}

.site-table {
    width: 100%;
    border-collapse: collapse;
}

.site-table th,
.site-table td {
    padding: 14px;
    border-bottom: 1px solid #292929;
    text-align: left;
}

.site-table th {
    color: #ff6a00;
    background: #101010;
}

.order-status-box {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 16px;
}

.order-item-site {
    display: flex;
    gap: 14px;
    border-bottom: 1px solid #292929;
    padding: 14px 0;
}

.order-item-img {
    width: 80px;
    height: 80px;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

@media (max-width: 850px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.track-page {
    padding: 45px 0;
}

.track-card,
.track-result {
    max-width: 760px;
    margin: 0 auto 24px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 24px;
}

.track-form label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.track-form input {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.track-form input:focus {
    border-color: #ff6a00;
}

.track-form button {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.track-result h2 {
    margin-bottom: 14px;
    color: #ff6a00;
}

.track-result p {
    color: #ccc;
    margin-bottom: 8px;
}

.tracking-steps {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.tracking-step {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-step.active {
    border-color: rgba(255, 106, 0, .5);
    color: #fff;
    background: rgba(255, 106, 0, .08);
}

.tracking-step.active strong {
    color: #ff6a00;
}

.track-warning {
    margin-top: 18px;
    background: rgba(255, 0, 0, .12);
    color: #ff7777;
    padding: 12px;
    border-radius: 10px;
}

.pix-box {
    max-width: 620px;
    margin: 0 auto;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.pix-box h1 {
    margin-bottom: 8px;
}

.pix-total {
    font-size: 34px;
    font-weight: bold;
    color: #ff6a00;
    margin: 18px 0;
}

.pix-qrcode {
    width: 260px;
    height: 260px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.pix-box label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: #ddd;
}

.pix-box textarea {
    width: 100%;
    height: 120px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    resize: none;
    margin-bottom: 14px;
}

.pix-copy-btn {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.pix-info {
    color: #aaa;
    margin-top: 16px;
}

.checkbox-line-site {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: #ddd;
    margin-top: 8px;
}

.checkbox-line-site input {
    width: auto !important;
    margin: 0 !important;
}

.account-form label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
}

.account-form input {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.account-form input:focus {
    border-color: #ff6a00;
}

.account-form button {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.account-divider {
    border: none;
    border-top: 1px solid #292929;
    margin: 18px 0;
}

.account-card h3 {
    margin: 14px 0;
}

.account-form-space {
    margin-top: 28px;
}

.full-btn {
    width: 100%;
    border: 1px solid #444;
    background: #222;
    color: #fff;
}

.footer-features {
    background: #0f0f0f;
    border-top: 1px solid #292929;
    padding: 28px 0;
    margin-top: 40px;
}

.footer-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 14px;
}

.footer-feature span {
    font-size: 20px;
}

.footer-feature strong {
    display: block;
    color: #fff;
}

.footer-feature small {
    color: #aaa;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-features-grid {
        grid-template-columns: 1fr;
    }
}

.hero-banner-animated {
    position: relative;
    min-height: 320px;
    background: linear-gradient(145deg, #191919, #0d0d0d);
    border: 1px solid #333;
    border-radius: 24px;
    overflow: hidden;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #ff6a00;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    right: -50px;
    top: -40px;
    animation: glowMove 4s ease-in-out infinite alternate;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 106, 0, .14);
    color: #ff6a00;
    border: 1px solid rgba(255, 106, 0, .35);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.banner-content h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
}

.banner-content p {
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 22px;
}

.banner-content a {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 13px 18px;
    border-radius: 9px;
    font-weight: bold;
}

.floating-product {
    position: absolute;
    right: 40px;
    bottom: 35px;
    width: 90px;
    height: 90px;
    background: rgba(255, 106, 0, .12);
    border: 1px solid rgba(255, 106, 0, .35);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    animation: floatProduct 2.8s ease-in-out infinite;
}

@keyframes glowMove {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-35px, 35px) scale(1.15);
    }
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@media (max-width: 600px) {
    .hero-banner-animated {
        min-height: 260px;
        padding: 24px;
    }

    .banner-content h3 {
        font-size: 28px;
    }

    .floating-product {
        width: 64px;
        height: 64px;
        font-size: 32px;
        right: 22px;
        bottom: 22px;
    }
}

.page-box {
    max-width: 800px;
    margin: 0 auto;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 28px;
}

.page-box h1 {
    margin-bottom: 18px;
}

.page-box h2 {
    margin-top: 22px;
    margin-bottom: 8px;
    color: #ff6a00;
}

.page-box p {
    color: #bbb;
    line-height: 1.6;
}

.account-link {
    display: block;
    margin-top: 10px;
    color: #ff6a00;
}

.stock-ok {
    color: #6dffb0;
}

.stock-low {
    color: #ffb45c;
    font-weight: bold;
}

.stock-out {
    color: #ff7777;
    font-weight: bold;
}

.stock-badge {
    display: inline-block;
    background: rgba(255, 106, 0, .13);
    color: #ff9b45;
    border: 1px solid rgba(255, 106, 0, .35);
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
}

.stock-badge.out {
    background: rgba(255, 0, 0, .12);
    color: #ff7777;
    border-color: rgba(255, 0, 0, .35);
}

.btn-buy.disabled {
    background: #333;
    color: #999;
    cursor: not-allowed;
}

.hero-banner-animated {
    position: relative;
    min-height: 320px;
    background: linear-gradient(145deg, #191919, #0d0d0d);
    border: 1px solid #333;
    border-radius: 24px;
    overflow: hidden;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #ff6a00;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    right: -50px;
    top: -40px;
    animation: glowMove 4s ease-in-out infinite alternate;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 106, 0, .14);
    color: #ff6a00;
    border: 1px solid rgba(255, 106, 0, .35);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.banner-content h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
}

.banner-content p {
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 22px;
}

.banner-content a {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 13px 18px;
    border-radius: 9px;
    font-weight: bold;
}

.floating-product {
    position: absolute;
    right: 40px;
    bottom: 35px;
    width: 90px;
    height: 90px;
    background: rgba(255, 106, 0, .12);
    border: 1px solid rgba(255, 106, 0, .35);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    animation: floatProduct 2.8s ease-in-out infinite;
}

@keyframes glowMove {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-35px, 35px) scale(1.15);
    }
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@media (max-width: 600px) {
    .hero-banner-animated {
        min-height: 260px;
        padding: 24px;
    }

    .banner-content h3 {
        font-size: 28px;
    }

    .floating-product {
        width: 64px;
        height: 64px;
        font-size: 32px;
        right: 22px;
        bottom: 22px;
    }
}

.account-help-card {
    margin-top: 22px;
}

.account-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.account-help-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 16px;
    transition: .2s;
}

.account-help-link:hover {
    border-color: #ff6a00;
    transform: translateY(-2px);
}

.account-help-link span {
    font-size: 26px;
}

.account-help-link strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.account-help-link small {
    color: #aaa;
}

@media (max-width: 850px) {
    .account-help-grid {
        grid-template-columns: 1fr;
    }
}

.tracking-client-box,
.tracking-code-box {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.tracking-client-box p,
.tracking-code-box p {
    color: #ccc;
    margin-bottom: 8px;
}

.track-btn {
    display: inline-block;
    margin-top: 12px;
    background: #ff6a00;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
    transition: .2s;
}

.track-btn:hover {
    background: #ff7f1a;
    transform: translateY(-1px);
}

.copy-track-btn {
    margin-top: 12px;
}

/* ===== CORREÇÕES GERAIS DE QUEBRA E OVERFLOW ===== */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* evita texto grande sair dos cards */
.account-card,
.checkout-card,
.cart-summary,
.cart-items,
.product-card,
.track-card,
.track-result,
.page-box,
.auth-box,
.mini-order,
.order-status-box,
.tracking-client-box,
.tracking-code-box {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* textos longos: e-mail, nome, endereço, códigos */
.account-card p,
.account-card strong,
.account-card span,
.account-card small,
.mini-order,
.order-status-box p,
.tracking-client-box p,
.tracking-code-box p,
.cart-info h3,
.cart-info p,
.product-info h3,
.product-info p,
.site-table td,
.site-table th {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Minha conta mais segura em telas menores */
.account-grid {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
}

.account-card {
    min-width: 0;
}

/* botão não estoura */
.account-btn,
.checkout-btn,
.continue-btn,
.product-btn,
.track-btn {
    max-width: 100%;
    white-space: normal;
}

/* produto: mantém o quadrado e mostra a imagem inteira sem cortar */
.product-img {
    height: 210px;
    background: linear-gradient(145deg, #222, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* hover sem quebrar layout */
.product-card:hover img {
    transform: scale(1.04);
}

/* tabelas no mobile */
.table-responsive-site,
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* carrinho não estoura com nome grande */
.cart-item {
    min-width: 0;
}

.cart-info {
    min-width: 0;
}

/* campos nunca passam do card */
input,
select,
textarea,
button {
    max-width: 100%;
}

/* responsivo melhorado */
@media (max-width: 850px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        width: 92%;
    }

    .section-title h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .account-card,
    .checkout-card,
    .cart-summary,
    .cart-items,
    .track-card,
    .track-result {
        padding: 18px;
    }

    .product-img {
        height: 210px;
    }
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
}

/* cores */
.status-pendente {
    background: rgba(255, 180, 0, 0.15);
    color: #ffb400;
}

.status-aprovado {
    background: rgba(0, 200, 100, 0.15);
    color: #6dffb0;
}

.status-separacao {
    background: rgba(0, 150, 255, 0.15);
    color: #4db8ff;
}

.status-enviado {
    background: rgba(150, 0, 255, 0.15);
    color: #c084ff;
}

.status-entregue {
    background: rgba(0, 200, 100, 0.15);
    color: #00ff88;
}

.status-cancelado {
    background: rgba(255, 0, 0, 0.15);
    color: #ff7777;
}

.chat-box-site {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    padding: 24px;
}

.chat-messages {
    height: 480px;
    overflow-y: auto;
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}

.chat-message {
    max-width: 75%;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.chat-message p {
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.4;
}

.chat-message small {
    color: #aaa;
    font-size: 12px;
}

.chat-message.sent {
    margin-left: auto;
    background: #ff6a00;
}

.chat-message.received {
    margin-right: auto;
    background: #222;
    border: 1px solid #333;
}

.chat-empty {
    color: #aaa;
    text-align: center;
    padding: 40px 10px;
}

.chat-form-site {
    display: flex;
    gap: 12px;
}

.chat-form-site textarea {
    flex: 1;
    min-height: 80px;
    resize: none;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    padding: 13px;
    outline: none;
}

.chat-form-site textarea:focus {
    border-color: #ff6a00;
}

.chat-form-site button {
    width: 150px;
    background: #ff6a00;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.chat-form-site button:hover {
    background: #ff7f1a;
}

@media (max-width: 700px) {
    .chat-form-site {
        flex-direction: column;
    }

    .chat-form-site button {
        width: 100%;
        padding: 14px;
    }

    .chat-message {
        max-width: 90%;
    }
}

.chat-attachment-img {
    display: block;
    max-width: 260px;
    max-height: 260px;
    border-radius: 12px;
    margin: 8px 0;
    object-fit: contain;
    background: #111;
}

.chat-attachment-video {
    display: block;
    max-width: 280px;
    max-height: 260px;
    border-radius: 12px;
    margin: 8px 0;
    background: #000;
}

.chat-file-btn,
.chat-file-btn-admin {
    width: 52px;
    min-width: 52px;
    height: auto;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-file-btn input,
.chat-file-btn-admin input {
    display: none;
}

.chat-attachment-img,
.chat-attachment-video {
    width: 160px;
    height: 160px;
    max-width: 160px;
    max-height: 160px;
    border-radius: 12px;
    margin: 8px 0;
    object-fit: cover;
    background: #111;
    cursor: pointer;
    display: block;
}

.chat-attachment-video {
    background: #000;
}

.chat-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.chat-modal.active {
    display: flex;
}

.chat-modal img,
.chat-modal video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.chat-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.chat-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.chat-modal.active {
    display: flex;
}

.chat-modal img,
.chat-modal video {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    background: #000;
}

.chat-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
}

.chat-attachment-img,
.chat-attachment-video {
    width: 160px;
    height: 160px;
    max-width: 160px;
    max-height: 160px;
    border-radius: 12px;
    margin: 8px 0;
    object-fit: cover;
    background: #111;
    cursor: pointer;
    display: block;
}