﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #000000;
    color: white;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    will-change: transform, opacity;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: row;
    justify-content: center;
    width: 100vw;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    margin-left: calc(-50vw + 50%);
    will-change: max-height;
}

.nav-menu.active {
    max-height: 80px;
    padding: 1.2rem 0;
}

/* Desktop - menu sempre aberto no topo */
@media (min-width: 769px) {
    body:not(.scrolled-page) .nav-menu {
        max-height: 80px;
        padding: 1.2rem 0;
    }
    
    body:not(.scrolled-page) .hamburger {
        display: none;
    }
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a svg {
    flex-shrink: 0;
}

.menu-icon-starlink {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.nav-menu li.active a .menu-icon-starlink {
    filter: brightness(0);
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.3);
    color: white;
}

.nav-menu li.active a {
    background: #FFD700;
    color: #1a1a1a;
}

.nav-menu li.active a:hover {
    background: #FFC700;
    color: #1a1a1a;
}

/* Submenu ativo - visual diferente */
.has-submenu.active > a {
    background: #FFC700 !important;
    color: #1a1a1a !important;
}

.has-submenu.active > a:hover {
    background: #FFB700 !important;
}

/* Submenu */
.has-submenu {
    position: relative;
}

.submenu-toggle {
    position: relative;
    justify-content: space-between;
    width: 100%;
}

.submenu-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.has-submenu.active .submenu-arrow {
    transform: rotate(180deg);
}

/* Overlay para desktop */
.submenu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

@media (min-width: 769px) {
    .has-submenu.active ~ .submenu-overlay,
    .submenu-overlay.active {
        display: block;
    }
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}

/* Desktop - submenu como modal dropdown */
@media (min-width: 769px) {
    .submenu {
        position: fixed;
        top: 150px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 400px;
        max-width: 90%;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 999;
        background: white;
        pointer-events: none;
    }
    
    .has-submenu.active .submenu {
        max-height: 500px;
        padding: 1.5rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    .submenu::before {
        content: 'ACESSÓRIOS';
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #FFD700;
        margin-bottom: 1rem;
        text-align: left;
        animation: slideInDown 0.4s ease-out;
    }
    
    .submenu li {
        margin-bottom: 0.3rem;
        animation: slideInLeft 0.4s ease-out backwards;
    }
    
    .submenu li:nth-child(1) { animation-delay: 0.05s; }
    .submenu li:nth-child(2) { animation-delay: 0.1s; }
    .submenu li:nth-child(3) { animation-delay: 0.15s; }
    .submenu li:nth-child(4) { animation-delay: 0.2s; }
    .submenu li:nth-child(5) { animation-delay: 0.25s; }
    .submenu li:nth-child(6) { animation-delay: 0.3s; }
    .submenu li:nth-child(7) { animation-delay: 0.35s; }
    .submenu li:nth-child(8) { animation-delay: 0.4s; }
    
    .submenu a {
        background: #FFD700 !important;
        color: #1a1a1a !important;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .submenu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s;
    }
    
    .submenu a:hover {
        background: #FFC700 !important;
        color: #000 !important;
        transform: translateX(5px);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    
    .submenu a:hover::before {
        left: 100%;
    }
    
    .submenu a:active {
        transform: translateX(5px) scale(0.98);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile - submenu inline */
@media (max-width: 768px) {
    .submenu {
        background: rgba(255, 215, 0, 0.95);
    }
    
    .has-submenu.active .submenu {
        max-height: 600px;
        padding: 0.3rem 0;
        opacity: 1;
        visibility: visible;
    }
}

.submenu li {
    padding: 0;
    display: block;
    margin-bottom: 0.2rem;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu a {
    padding: 0.7rem 1rem !important;
    font-size: 0.95rem;
    display: block;
    color: #666;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.submenu a:hover {
    background: #f8f8f8 !important;
    color: #333;
}

/* Search Bar */
.search-bar {
    display: flex;
    flex: 1;
    max-width: 650px;
    margin: 0 1.5rem 0 4rem;
    height: 40px;
    position: relative;
}

.search-bar input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px 0 0 20px;
    font-size: 0.9rem;
    outline: none;
    height: 100%;
}

.search-bar input::placeholder {
    color: #b0b0b0;
    transition: color 0.3s;
}

.search-bar input:focus::placeholder {
    color: #666;
}

.search-bar button {
    padding: 0 1.2rem;
    background: #FFD700;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
    pointer-events: none;
    height: 100%;
    flex-shrink: 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button svg {
    display: block;
}

.search-bar button.active {
    opacity: 1;
    pointer-events: auto;
}

.search-bar button.active:hover {
    background: #FFC700;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 90vw;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-dropdown.active {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem;
}

.search-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
}

.search-dropdown-header h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.search-close {
    background: #FFD700;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    flex-shrink: 0;
    border-radius: 20px;
    min-width: 50px;
    z-index: 10;
    position: relative;
}

.search-close:hover {
    background: #FFC700;
    color: #333;
}

.search-close svg {
    pointer-events: none;
}

.search-suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.search-suggestions li:hover {
    background: #f8f8f8;
}

.search-suggestions .suggestion-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-suggestions .suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.search-suggestions .suggestion-text {
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
}

.search-suggestions .suggestion-price {
    color: #27ae60;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hamburger e Cart juntos */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Account */
.account {
    position: relative;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Baléo de Cupom */
.coupon-balloon {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.coupon-balloon.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.coupon-arrow {
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.1);
}

.coupon-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.coupon-close:hover {
    background: #f0f0f0;
    color: #333;
}

.coupon-content h4 {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.coupon-content p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.coupon-code-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f8f8;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px dashed #FFD700;
}

.coupon-code {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.coupon-copy-btn {
    background: #FFD700;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s;
    white-space: nowrap;
}

.coupon-copy-btn:hover {
    background: #FFC700;
    transform: scale(1.05);
}

.coupon-copy-btn:active {
    transform: scale(0.95);
}

.coupon-copy-btn svg {
    flex-shrink: 0;
}

.account::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.account-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    position: relative;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-avatar svg {
    width: 20px;
    height: 20px;
}

.account-icon {
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    color: #1a1a1a;
}

.account-info {
    display: none;
    flex-direction: column;
    line-height: 1.3;
    margin-left: 0.3rem;
}

.account-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.account-info-value {
    font-size: 0.75rem;
    color: #b0b0b0;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .account-info {
        display: flex;
    }
}

.cart {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cart-icon {
    filter: brightness(0);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    display: inline-block;
    transform: scaleX(-1);
}

.cart-info {
    display: none;
    flex-direction: column;
    line-height: 1.3;
    margin-left: 0.3rem;
}

.cart-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.cart-info-value {
    font-size: 0.75rem;
    color: #b0b0b0;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .cart-info {
        display: flex;
    }
}

.cart-count {
    position: absolute;
    top: -3px;
    left: 26px;
    background: white;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    z-index: 3;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    position: relative;
    z-index: 2;
    margin-right: 1rem;
    margin-left: 3rem;
}

.hamburger::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: background 0.3s ease;
}

.hamburger.active::before {
    background: #FFD700;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Texto do menu - sempre visível no desktop */
.hamburger::after {
    content: 'MENU';
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    display: none;
    z-index: 2;
}

.hamburger.active::after {
    content: 'FECHAR';
}

@media (min-width: 769px) {
    .hamburger::after {
        display: block;
    }
}

/* Hero */
.hero {
    background: #1a1a1a;
    color: white;
    padding: 0;
    padding-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.banner-slide .banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.banner-slide .banner-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.banner-slide .banner-link:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.banner-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.banner-slide .banner-link:hover img {
    transform: scale(1.02);
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 215, 0, 0.95);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.banner-prev:active,
.banner-next:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-dot.active {
    background: #FFD700;
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.banner-dot.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 6px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    animation: progress 3s linear;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding-top: 0;
    }
    
    .banner-carousel {
        height: 350px;
    }
    
    .banner-slide .banner-link:hover::after {
        background: rgba(0, 0, 0, 0);
    }
    
    .banner-slide .banner-link:hover img {
        transform: scale(1);
    }
    
    .banner-slide .banner-link:active::after {
        background: rgba(0, 0, 0, 0.15);
    }
    
    .banner-slide img {
        object-fit: cover;
        object-position: center;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-dots {
        bottom: 10px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    .banner-dot.active {
        width: 20px;
    }
}

/* Benefits Section */
.benefits {
    background: #f4f4f4;
    padding: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.benefits-nav {
    display: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    min-height: 80px;
}

.benefit-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.benefit-text strong {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.benefit-text span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 1.5rem 0;
        position: relative;
    }
    
    .benefits .container {
        position: relative;
        overflow: hidden;
    }
    
    .benefits-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1rem;
    }
    
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }
    
    .benefit-item {
        padding: 0.8rem;
        min-width: 280px;
        flex-shrink: 0;
    }
    
    .benefit-item img {
        width: 40px;
        height: 40px;
    }
    
    .benefit-text strong {
        font-size: 0.85rem;
        white-space: normal;
    }
    
    .benefit-text span {
        font-size: 0.75rem;
        white-space: normal;
    }
    
    .benefits-nav {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .benefits-arrow {
        background: #FFD700;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #1a1a1a;
        transition: all 0.3s;
    }
    
    .benefits-arrow:hover:not(:disabled) {
        background: #FFC700;
    }
    
    .benefits-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .benefits-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Mini Banners */
.mini-banners {
    padding: 2rem 0;
    background: #fff;
}

/* Clientes Section */
.clientes-section {
    padding: 2rem 0;
    background: #fff;
    overflow: hidden;
}

.clientes-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.clientes-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clientes-logos-wrapper::before,
.clientes-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clientes-logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clientes-logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.clientes-logos-track {
    display: flex;
    gap: 5rem;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.clientes-logos-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.clientes-logos-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .clientes-section {
        padding: 1.5rem 0;
    }
    
    .clientes-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .clientes-logos-wrapper::before,
    .clientes-logos-wrapper::after {
        width: 40px;
    }
    
    .clientes-logos-track {
        gap: 3rem;
        animation: scroll-logos 25s linear infinite;
    }
    
    .clientes-logos-track img {
        height: 30px;
    }
}

.mini-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mini-banner-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mini-banner-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mini-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.mini-banner-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .mini-banners {
        padding: 1.5rem 0;
    }
    
    .mini-banners .container {
        overflow: hidden;
    }
    
    .mini-banners-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1rem;
    }
    
    .mini-banners-grid::-webkit-scrollbar {
        display: none;
    }
    
    .mini-banner-item {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        height: 180px;
    }
    
    .mini-banner-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .mini-banner-item:hover {
        transform: none;
    }
}

/* Produtos */
.produtos {
    padding: 3rem 0;
    background: #f4f4f4;
}

.produtos h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.produto-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
}

.produto-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.875rem;
}

.produto-card h3 {
    color: #2c3e50;
    margin-bottom: 0.875rem;
    font-size: 1.05rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.2rem;
    max-height: 4.2rem;
    word-wrap: break-word;
}

.produto-card .preco {
    font-size: 1.4rem;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 0.875rem;
}

.produto-card button {
    width: 100%;
    padding: 0.7rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.produto-card button svg {
    width: 16px;
    height: 16px;
}

/* Contato */
.contato {
    padding: 4rem 0;
}

/* Destaques Carousel */
.destaques-section {
    position: relative;
}

.destaques-wrapper {
    position: relative;
}

.destaques-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.destaques-grid::-webkit-scrollbar {
    display: none;
}

.destaques-grid .produto-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.destaques-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.destaques-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.destaques-arrow:hover:not(:disabled) {
    background: #ffd700;
    transform: scale(1.1);
}

.destaques-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
}

.destaques-arrow svg {
    width: 18px;
    height: 18px;
}

.destaques-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.destaques-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Lançamentos Carousel */
.lancamentos-section {
    position: relative;
}

.lancamentos-wrapper {
    position: relative;
}

.lancamentos-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lancamentos-grid::-webkit-scrollbar {
    display: none;
}

.lancamentos-grid .produto-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.lancamentos-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.lancamentos-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lancamentos-arrow:hover:not(:disabled) {
    background: #ffd700;
    transform: scale(1.1);
}

.lancamentos-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
}

.lancamentos-arrow svg {
    width: 18px;
    height: 18px;
}

.lancamentos-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.lancamentos-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Antena Starlink Carousel */
.antena-section {
    position: relative;
}

.antena-wrapper {
    position: relative;
}

.antena-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.antena-grid::-webkit-scrollbar {
    display: none;
}

.antena-grid .produto-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.antena-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.antena-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.antena-arrow:hover:not(:disabled) {
    background: #ffd700;
    transform: scale(1.1);
}

.antena-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
}

.antena-arrow svg {
    width: 18px;
    height: 18px;
}

/* Acessórios Carousel */
.acessorios-section {
    position: relative;
}

.acessorios-wrapper {
    position: relative;
}

.acessorios-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.acessorios-grid::-webkit-scrollbar {
    display: none;
}

.acessorios-grid .produto-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.acessorios-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.acessorios-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.acessorios-arrow:hover:not(:disabled) {
    background: #ffd700;
    transform: scale(1.1);
}

.acessorios-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
}

.acessorios-arrow svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    /* Seções de Produtos Mobile */
    .produtos {
        padding: 2rem 0;
    }
    
    .produtos h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .lancamentos-grid .produto-card,
    .antena-grid .produto-card,
    .acessorios-grid .produto-card {
        min-width: 180px;
        padding: 0.875rem;
    }
    
    .produto-card img {
        height: 140px;
        margin-bottom: 0.75rem;
        border-radius: 6px;
    }
    
    .produto-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.5rem;
    }
    
    .produto-card .preco {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .produto-card button {
        padding: 0.625rem 0.5rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }
    
    .produto-card button svg {
        width: 14px;
        height: 14px;
    }
    
    .lancamentos-arrow,
    .antena-arrow,
    .acessorios-arrow {
        width: 36px;
        height: 36px;
    }
    
    .lancamentos-nav,
    .antena-nav,
    .acessorios-nav {
        margin-top: 1rem;
    }
    
    .lancamentos-progress {
        margin-top: 1rem;
    }
    
    /* Product Modal Mobile */
    .product-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        padding-top: 3rem;
    }
    
    .product-modal-image {
        padding: 1.5rem;
    }
    
    .product-modal-image img {
        max-height: 250px;
    }
    
    .product-modal-info h2 {
        font-size: 1.5rem;
        padding-right: 0;
    }
    
    .product-modal-info p {
        font-size: 1rem;
    }
    
    .product-modal-price {
        font-size: 2rem;
    }
    
    .btn-add-cart {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .close-product {
        right: 10px;
        top: 10px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contato-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contato-form button {
    padding: 1rem;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.contato-form button:hover {
    background: #FFC700;
}

/* Footer */
footer {
    background: #000;
    color: white;
}

.footer-top {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h3 {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-col ul li {
    color: #ccc;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.footer-col ul li svg {
    flex-shrink: 0;
    color: #FFD700;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FFD700;
}

.footer-middle {
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.footer-payment-shipping {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.footer-payment h4,
.footer-security h4,
.footer-shipping h4 {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.payment-icons,
.security-badges,
.shipping-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons img,
.security-badges img,
.shipping-icons img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.payment-icons img:hover,
.security-badges img:hover,
.shipping-icons img:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    padding: 1.5rem 0;
    background: #000;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-powered span {
    color: #ccc;
    font-size: 0.85rem;
}

.footer-powered img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-powered img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-payment-shipping {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-col h3 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-col ul {
        gap: 0.75rem;
    }
    
    .footer-col ul li {
        font-size: 0.8rem;
    }
    
    .footer-middle {
        padding: 1.5rem 0;
    }
    
    .footer-payment-shipping {
        gap: 1.5rem;
    }
    
    .footer-payment h4,
    .footer-security h4,
    .footer-shipping h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .payment-icons,
    .security-badges,
    .shipping-icons {
        gap: 0.75rem;
    }
    
    .payment-icons img,
    .security-badges img,
    .shipping-icons img {
        height: 28px;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .footer-powered {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-powered span {
        font-size: 0.7rem;
    }
    
    .footer-powered img {
        height: 35px;
    }
}

/* Botões Flutuantes */
.float-btn {
    position: fixed;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.float-btn:active {
    transform: scale(0.95);
}

.float-btn svg {
    width: 26px;
    height: 26px;
}

.whatsapp-btn {
    bottom: 6.5rem;
    background: #25D366;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.scroll-top-btn {
    bottom: 2rem;
    background: #fff;
    color: #FFD700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #f8f8f8;
}

@media (max-width: 768px) {
    .float-btn {
        right: 1rem;
        width: 48px;
        height: 48px;
    }
    
    .float-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-btn {
        bottom: 6rem;
    }
    
    .scroll-top-btn {
        bottom: 1.5rem;
    }
}

/* ===== POP-UP DE BOAS-VINDAS ===== */

.welcome-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.welcome-popup.show {
    display: block;
}

.welcome-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.welcome-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    height: auto;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.welcome-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.welcome-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.welcome-popup-close svg {
    color: #fff;
}

/* Layout Split */
.welcome-popup-split {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    min-height: 500px;
    position: relative;
}

/* Lado Esquerdo - Imagem */
.welcome-popup-left {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.welcome-popup-image-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.welcome-popup-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.welcome-popup-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
}

/* Badge 5% OFF - Posicionado sobre a imagem no PC */
.welcome-popup-discount {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
}

/* Lado Direito - Conteúdo */
.welcome-popup-right {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #1a1a1a;
}

.welcome-popup-logo {
    margin-bottom: 1.5rem;
}

.welcome-popup-logo img {
    max-width: 180px;
    height: auto;
}

.welcome-popup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.welcome-popup-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.welcome-popup-subtitle strong {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
}

.discount-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
    }
}

.discount-percent {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.discount-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.25rem;
}

.welcome-popup-coupon {
    margin: 1.5rem 0;
    width: 100%;
}

.coupon-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.coupon-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.coupon-code-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    flex: 1;
}

.coupon-copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
}

.coupon-copy-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.coupon-copy-button:active {
    transform: scale(0.95);
}

.coupon-copy-button svg {
    width: 16px;
    height: 16px;
}

.welcome-popup-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1rem;
}

.welcome-popup-cta:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.welcome-popup-cta:active {
    transform: translateY(0);
}

.welcome-popup-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
    cursor: pointer;
    user-select: none;
}

.welcome-popup-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #ffd700;
}

.welcome-popup-checkbox:hover {
    color: #ccc;
}

/* Responsivo Tablet */
@media (max-width: 1024px) {
    .welcome-popup-content {
        max-width: 750px;
    }
    
    .welcome-popup-split {
        grid-template-columns: 40% 60%;
        min-height: 450px;
    }
    
    /* Badge ajustado para tablet */
    .welcome-popup-discount {
        left: 32%;
    }
    
    .discount-badge {
        width: 110px;
        height: 110px;
    }
    
    .discount-percent {
        font-size: 2.5rem;
    }
    
    .discount-text {
        font-size: 1.1rem;
    }
    
    .welcome-popup-right {
        padding: 2rem 1.5rem;
    }
    
    .welcome-popup-logo img {
        max-width: 150px;
    }
    
    .welcome-popup-title {
        font-size: 1.75rem;
    }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .welcome-popup-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }
    
    .welcome-popup-split {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: 95vh;
        position: relative;
        overflow: hidden;
    }
    
    /* Mostrar imagem no mobile como background */
    .welcome-popup-left {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
        z-index: 0;
    }
    
    .welcome-popup-image-bg {
        border-radius: 16px 16px 0 0;
    }
    
    .welcome-popup-image-bg img {
        border-radius: 16px 16px 0 0;
    }
    
    .welcome-popup-image-overlay {
        background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.95) 100%);
    }
    
    .welcome-popup-right {
        padding: 190px 1.5rem 1.5rem 1.5rem;
        border-radius: 16px;
        position: relative;
        z-index: 1;
        background: transparent;
        overflow: hidden;
    }
    
    .welcome-popup-logo {
        margin-bottom: 0.75rem;
    }
    
    .welcome-popup-logo img {
        max-width: 120px;
    }
    
    .welcome-popup-title {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .welcome-popup-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        display: block;
        visibility: visible;
    }
    
    .welcome-popup-subtitle strong {
        font-size: 1.2rem;
        display: inline;
    }
    
    /* Badge 5% OFF posicionado sobre a imagem */
    .welcome-popup-discount {
        position: absolute;
        top: 100px;
        right: 1.5rem;
        margin: 0;
        z-index: 2;
    }
    
    .discount-badge {
        width: 75px;
        height: 75px;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
    
    .discount-percent {
        font-size: 1.75rem;
    }
    
    .discount-text {
        font-size: 0.85rem;
    }
    
    .welcome-popup-coupon {
        margin: 1rem 0;
    }
    
    .coupon-label {
        display: block;
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
    }
    
    .coupon-code-wrapper {
        padding: 0.6rem 0.875rem;
    }
    
    .coupon-code-display {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }
    
    .coupon-copy-button {
        width: 32px;
        height: 32px;
    }
    
    .welcome-popup-cta {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .welcome-popup-checkbox {
        display: flex;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .welcome-popup-left {
        height: 160px;
    }
    
    .welcome-popup-right {
        padding: 170px 1.25rem 1.25rem 1.25rem;
    }
    
    .welcome-popup-logo img {
        max-width: 110px;
    }
    
    .welcome-popup-title {
        font-size: 1.3rem;
        margin-bottom: 0.35rem;
    }
    
    .welcome-popup-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .welcome-popup-subtitle strong {
        font-size: 1.1rem;
    }
    
    /* Badge menor em telas muito pequenas */
    .welcome-popup-discount {
        top: 85px;
        right: 1.25rem;
    }
    
    .discount-badge {
        width: 70px;
        height: 70px;
    }
    
    .discount-percent {
        font-size: 1.6rem;
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
    
    .welcome-popup-coupon {
        margin: 0.875rem 0;
    }
    
    .coupon-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .coupon-code-wrapper {
        padding: 0.5rem 0.75rem;
    }
    
    .coupon-code-display {
        font-size: 1.05rem;
    }
    
    .coupon-copy-button {
        width: 30px;
        height: 30px;
    }
    
    .welcome-popup-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .welcome-popup-checkbox {
        font-size: 0.7rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

#account-modal .modal-content {
    background: #1a1a1a;
}

.close, .close-account {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.close:hover, .close-account:hover {
    background: #e0e0e0;
    color: #000;
}

.cart-total {
    margin: 2rem 0;
    font-size: 1.5rem;
    text-align: right;
}

.btn-finalizar {
    width: 100%;
    padding: 1rem;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.3s;
}

.btn-finalizar:hover {
    background: #FFC700;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

#cart-items {
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 1rem;
}

#cart-items::-webkit-scrollbar {
    width: 6px;
}

#cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#cart-items::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

#cart-items::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.cart-item-info strong {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.3;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cart-item-subtotal {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-price {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.btn-remove:hover {
    background: #c0392b;
}

.btn-remove svg {
    display: block;
}

/* Account Modal */
.account-modal-content {
    max-width: 450px;
    background: #1a1a1a;
    color: white;
}

.account-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.account-modal-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.close-account {
    color: #999;
}

.close-account:hover {
    background: #2a2a2a;
    color: white;
}

.account-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2a2a2a;
    position: relative;
}

/* Barra animada */
.account-tabs::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 3px;
    background: #FFD700;
    transition: transform 0.3s ease;
    z-index: 1;
}

.account-tabs.register-active::after {
    transform: translateX(100%);
}

.account-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: #999;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.account-tab.active {
    color: #FFD700;
}

.account-tab:hover {
    color: #e6c200;
}

.account-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.account-tab-content.active {
    display: block;
}

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

.account-tab-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    flex: 1;
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #FFD700;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

.account-form input {
    padding: 1rem;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
    background: #2a2a2a;
    color: white;
}

.account-form input::placeholder {
    color: #666;
}

.account-form input:focus {
    outline: none;
    border-color: #FFD700;
    background: #333;
}

.forgot-password {
    color: #999;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: right;
    margin-top: -0.5rem;
}

.forgot-password:hover {
    color: #FFD700;
}

.forgot-description {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.back-button {
    background: none;
    border: none;
    color: #999;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.back-button:hover {
    color: #FFD700;
}

.back-button svg {
    flex-shrink: 0;
}

.btn-account {
    padding: 1rem;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.5rem;
    transition: background 0.3s;
}

.btn-account:hover {
    background: #FFC700;
}

/* Divisor OU */
.divider-ou {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.divider-ou::before,
.divider-ou::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider-ou span {
    padding: 0 1rem;
}

/* Botéo Google */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-google:active {
    transform: scale(0.98);
}

.btn-google img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 1.5rem;
        column-gap: 0.5rem;
        align-items: center;
        padding: 0 15px;
        overflow: visible;
    }
    
    .navbar {
        overflow: visible;
    }
    
    .logo {
        height: 25px;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }
    
    .nav-actions {
        grid-column: 2;
        grid-row: 1;
        gap: 0.8rem;
        margin-left: 0;
        overflow: visible;
        display: flex;
        justify-self: end;
    }
    
    .hamburger {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        justify-self: start;
    }
    
    .hamburger::before {
        width: 35px;
        height: 35px;
    }
    
    .hamburger span {
        width: 18px;
    }
    
    .hamburger::after {
        display: none !important;
    }
    
    .search-bar {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0 0 0 40px;
        height: 35px;
    }
    
    .account::before,
    .cart::before {
        width: 35px;
        height: 35px;
        left: 17.5px;
    }
    
    .account,
    .cart {
        position: relative;
        overflow: visible;
    }
    
    .account-avatar {
        width: 35px;
        height: 35px;
    }
    
    .account-avatar svg {
        width: 18px;
        height: 18px;
    }
    
    .account-icon {
        width: 35px;
        position: relative;
        z-index: 2;
    }
    
    .cart-icon {
        width: 35px;
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .cart-count {
        left: 24px;
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
    }
    
    .account-info,
    .cart-info {
        display: none !important;
    }
    
    /* Baléo de Cupom Mobile */
    .coupon-balloon {
        width: 260px;
        padding: 1.25rem;
        right: -10px;
    }
    
    .coupon-arrow {
        right: 15px;
    }
    
    .coupon-content h4 {
        font-size: 0.85rem;
    }
    
    .coupon-content p {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .coupon-code {
        font-size: 0.9rem;
    }
    
    .coupon-copy-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.65rem;
    }
    
    .coupon-copy-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .search-bar input {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .search-bar button {
        padding: 0.4rem 0.9rem;
    }
    
    .nav-menu {
        width: 100vw;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        background: #FFD700;
        z-index: 10;
    }
    
    .nav-menu.active {
        max-height: 600px !important;
        padding: 0.8rem 0 !important;
    }
    
    .nav-menu li {
        padding: 0.6rem 0;
        line-height: 1.2;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        color: #1a1a1a;
        padding: 0.6rem 1rem;
    }
    
    .menu-icon-starlink {
        filter: brightness(0);
    }
    
    .nav-menu li.active a .menu-icon-starlink {
        filter: brightness(0) invert(1);
    }
    
    /* Submenu Mobile */
    .submenu {
        background: rgba(255, 215, 0, 0.95);
    }
    
    .has-submenu.active .submenu {
        padding: 0.3rem 0;
    }
    
    .submenu::before {
        display: none;
    }
    
    .submenu li {
        display: block;
        width: 100%;
        margin-bottom: 0.2rem;
    }
    
    .submenu a {
        color: #1a1a1a !important;
        padding: 0.5rem 1rem 0.5rem 2rem !important;
        font-size: 0.85rem !important;
        display: block !important;
        width: 100%;
        background: transparent !important;
        text-align: left !important;
        font-weight: 400 !important;
    }
    
    .submenu a:hover {
        background: rgba(0, 0, 0, 0.1) !important;
    }
    
    .submenu-arrow {
        stroke: #1a1a1a;
    }
    
    .nav-menu a:hover {
        color: #000000;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li.active a {
        background: #1a1a1a;
        color: #FFD700;
        font-weight: 600;
    }
    
    .nav-menu li.active a:hover {
        background: #000000;
        color: #FFD700;
    }
    
    /* Submenu ativo no mobile */
    .has-submenu.active > a {
        background: #FFC700 !important;
        color: #000 !important;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Search Dropdown Mobile */
    .search-dropdown {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .search-dropdown.active {
        padding: 1rem;
    }
    
    .search-dropdown-header h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: 60%;
    }
    
    .search-close {
        padding: 0.4rem 0.8rem;
        min-width: 45px;
    }
    
    .search-close svg {
        width: 20px;
        height: 20px;
    }
    
    .search-suggestions li {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .search-suggestions .suggestion-image {
        width: 50px;
        height: 50px;
    }
    
    .search-suggestions .suggestion-text {
        font-size: 0.9rem;
    }
    
    .search-suggestions .suggestion-price {
        font-size: 0.85rem;
    }
    
    /* Modals Mobile */
    .modal {
        padding: 0;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
        padding: 1.5rem;
        padding-top: 4rem;
        background: white;
    }
    
    .modal-content h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cart Items Mobile */
    #cart-items {
        max-height: calc(100vh - 300px);
        overflow-y: auto;
        margin-bottom: 1rem;
        padding-right: 0.25rem;
    }
    
    .cart-item {
        display: flex;
        gap: 0.75rem;
        padding: 0.875rem 0.5rem;
        border-bottom: 1px solid #eee;
        align-items: center;
    }
    
    .cart-item:last-child {
        border-bottom: none;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .cart-item-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        min-width: 0;
        overflow: hidden;
    }
    
    .cart-item-info strong {
        font-size: 0.9rem;
        line-height: 1.2;
        color: #2c3e50;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .cart-item-info > span {
        font-size: 0.8rem;
        color: #666;
        white-space: nowrap;
    }
    
    .cart-item-price {
        font-size: 0.8rem !important;
        color: #999 !important;
        font-weight: 400 !important;
    }
    
    .cart-item-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .cart-item-subtotal {
        font-size: 1rem;
        font-weight: 700;
        color: #27ae60;
        white-space: nowrap;
    }
    
    .btn-remove {
        width: 34px;
        height: 34px;
        padding: 0.4rem;
        border-radius: 6px;
        background: #e74c3c;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .btn-remove svg {
        width: 16px;
        height: 16px;
    }
    
    .cart-total {
        margin: 1.25rem 0 1rem 0;
        font-size: 1.25rem;
        text-align: right;
        padding: 1rem;
        background: #f8f8f8;
        border-radius: 8px;
    }
    
    .cart-total strong {
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .cart-total span {
        color: #27ae60;
        font-weight: 700;
        font-size: 1.3rem;
    }
    
    .btn-finalizar,
    .btn-limpar-carrinho {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .btn-limpar-carrinho {
        padding: 0.875rem 1rem !important;
    }
    
    #account-modal .modal-content,
    #account-modal .account-modal-content {
        background: #1a1a1a !important;
        color: white !important;
    }
    
    .account-modal-content {
        max-width: 100%;
    }
    
    .account-modal-header {
        margin-bottom: 1.5rem;
    }
    
    .account-modal-logo {
        height: 40px;
    }
    
    .close, .close-account {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 38px;
        height: 38px;
    }
    
    .close {
        background: #f0f0f0;
        color: #333;
    }
    
    .close:hover {
        background: #e0e0e0;
        color: #000;
    }
    
    .close-account {
        background: #2a2a2a;
        color: #999;
    }
    
    .close-account:hover {
        background: #333;
        color: white;
    }
    
    .account-tabs {
        margin-bottom: 1.5rem;
        position: sticky;
        top: 0;
        background: #1a1a1a;
        z-index: 5;
        padding-top: 0.5rem;
    }
    
    .account-tab {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .account-tab-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .account-form {
        gap: 0.9rem;
    }
    
    .account-form input {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .btn-account, .btn-finalizar {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .forgot-password {
        font-size: 0.85rem;
    }
    
    .forgot-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .back-button {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cart-item {
        flex-wrap: nowrap;
        align-items: center;
        padding: 1rem 0.5rem;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-info {
        flex: 1;
        min-width: 0;
    }
    
    .cart-item-info strong {
        font-size: 0.9rem;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .cart-item-price {
        font-size: 1rem;
    }
    
    .btn-remove {
        width: 38px;
        height: 38px;
        padding: 0.6rem;
    }
    
    .btn-remove svg {
        width: 16px;
        height: 16px;
    }
    
    .cart-total {
        font-size: 1.3rem;
        margin: 1.5rem 0;
        text-align: center;
    }
}


/* Extra Small Devices (smartphones pequenos) */
@media (max-width: 480px) {
    .produtos h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .lancamentos-grid .produto-card,
    .antena-grid .produto-card,
    .acessorios-grid .produto-card {
        min-width: 160px;
        padding: 0.75rem;
    }
    
    .produto-card img {
        height: 120px;
        margin-bottom: 0.625rem;
    }
    
    .produto-card h3 {
        font-size: 0.875rem;
        min-height: 2.3rem;
    }
    
    .produto-card .preco {
        font-size: 1.05rem;
        margin-bottom: 0.625rem;
    }
    
    .produto-card button {
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
    }
}


/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.toast-notification.success {
    background: #27ae60;
}

.toast-notification.error {
    background: #e74c3c;
}

.toast-notification.warning {
    background: #f39c12;
}

.toast-notification svg {
    flex-shrink: 0;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

    
    /* Account Tabs Mobile */
    .account-tab {
        font-size: 0.95rem;
        padding: 0.875rem 0.5rem;
    }
    
    .account-tabs::after {
        height: 3px;
    }
}

