:root {
    --primary-red: #00ddff;
    --dark-bg: #000000;
    --light-bg: #f8f8f8;
    --text-main: #333333;
    --text-white: #ffffff;
    --grey-text: #b0b0b0;
    --border-color: #1a1a1a;
    --accent-cyan: #00ddff;
    --cyan-glow: rgba(0, 221, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: #050505;
    color: white;
}

body {
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UI Elements */
.feature-badge {
    background: #111;
    color: var(--primary-red);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    border: 1px solid #222;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Top Bar */
.top-bar {
    background: #080808;
    color: #888;
    font-size: 11px;
    padding: 10px 0;
    border-bottom: 1px solid #111;
    font-weight: 600;
}

.top-social a {
    color: #888;
    margin-right: 15px;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--primary-red);
}

/* Header */
header {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.brand-icon {
    width: 45px;
    height: 45px;
}

.brand-text h1 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 0.9;
}

.brand-text span {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 800;
}

.search-bar {
    flex: 1;
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 44px;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
    color: #000;
}

.search-bar button {
    background: var(--primary-red);
    color: #000;
    border: none;
    padding: 0 22px;
    cursor: pointer;
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 30px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    color: #eee;
}

.action-item:hover {
    color: var(--primary-red);
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--primary-red);
    color: #000;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Nav */
nav {
    background: #000;
    border-bottom: 1px solid #111;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    padding: 18px 25px;
    display: block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active {
    border-bottom: 2px solid var(--primary-red);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 250px;
    display: none;
    list-style: none;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 15px 25px;
    border-bottom: 1px solid #111;
    font-size: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 10px;
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

/* Hero */
.premium-hero {
    padding: 40px 0;
    background: #000;
}

.hero-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: #080808;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #111;
}

.sidebar-box h3 {
    font-size: 14px;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 15px;
}

.sidebar-box a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.sidebar-box a:hover {
    color: white;
    transform: translateX(5px);
}

.hero-main {
    background: #050505;
    border-radius: 15px;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    position: relative;
}

.main-slider {
    display: flex;
    align-items: center;
    padding: 60px;
    height: 100%;
}

.slide-content {
    flex: 1.2;
    z-index: 2;
}

.badge {
    color: var(--primary-red);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
}

.slide-content h2 {
    font-size: 62px;
    font-weight: 900;
    line-height: 1;
    margin: 20px 0;
    letter-spacing: -2px;
}

.slide-content h2 span {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    letter-spacing: 2px;
}

.slide-content p {
    color: #888;
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-main img {
    width: 45%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px var(--cyan-glow));
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--primary-red);
    color: black;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 6px;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 6px;
}

/* Products */
.products-section {
    padding: 90px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 35px;
    border-radius: 15px;
    transition: 0.4s;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.scarcity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-card-img {
    height: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.product-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.price-tag {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.buy-now {
    display: block;
    background: #fff;
    color: #000;
    padding: 18px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 6px;
    transition: 0.3s;
}

.buy-now:hover {
    background: var(--primary-red);
}

/* MODAL PERFECTED */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.modal-content {
    background: #000;
    margin: 50px auto;
    width: 95%;
    max-width: 1200px;
    border-radius: 20px;
    border: 1px solid #222;
    position: relative;
    padding: 60px;
    color: white;
}

.close-modal {
    position: absolute;
    right: 30px;
    top: 25px;
    color: #444;
    font-size: 45px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #ff3333;
}

.modal-body {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.modal-image-side {
    flex: 1.3;
    background: #050505;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #111;
}

.modal-image-side img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--cyan-glow));
}

.modal-info-side {
    flex: 1;
}

.modal-info-side h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.modal-info-side p {
    color: #888;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.modal-price {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.buy-now-btn {
    background: var(--primary-red);
    color: black;
    border: none;
    padding: 22px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.buy-now-btn:hover {
    background: white;
    transform: scale(1.02);
}

.whatsapp-btn {
    background: transparent;
    color: #25d366;
    border: 2px solid #25d366;
    padding: 20px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
}

.modal-delivery {
    padding: 25px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.modal-delivery i {
    color: var(--primary-red);
    margin-right: 12px;
}

.modal-reviews {
    margin-top: 15px;
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.testimony-box {
    background: #080808;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
}

.testimony-box p {
    font-style: italic;
    color: #888 !important;
    font-size: 15px !important;
    margin-bottom: 12px !important;
}

.testimony-box .author {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CART DRAWER SENSATIONAL */
.cart-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 480px;
    height: 100%;
    background: #000;
    z-index: 6000;
    border-left: 4px solid var(--primary-red);
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 40px;
    border-bottom: 1px solid #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.drawer-footer {
    padding: 40px;
    border-top: 1px solid #111;
    background: #050505;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 5999;
    display: none;
    backdrop-filter: blur(12px);
}

.drawer-overlay.active {
    display: block;
}

/* Tabs */
.filter-tabs {
    display: flex;
    gap: 15px;
}

.tab {
    background: #111;
    color: #666;
    border: 1px solid #222;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.tab:hover {
    color: white;
    border-color: #444;
}

.tab.active {
    background: var(--primary-red);
    color: black;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--cyan-glow);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 80px 0;
    border-top: 1px solid #111;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-red);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 12px;
    color: #666;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 4000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
footer {
    background: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.logo-small {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.logo-small span {
    color: var(--primary-red);
}

.footer-col p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #111;
    text-align: center;
    color: #444;
    font-size: 12px;
}

.sidebar-box.promo {
    background: linear-gradient(145deg, #080808 0%, #001a1d 100%);
    border-color: #004d55;
    box-shadow: 0 10px 30px rgba(0, 221, 255, 0.1);
}

.sidebar-box.promo h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.sidebar-box.promo p {
    color: #666;
    font-size: 13px;
    margin-bottom: 0;
}

/* Sidebar Btn */
.sidebar-btn {
    display: block;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 900;
    font-size: 13px;
    margin-top: 20px;
}

/* Cart Styles */
.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #111;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    background: #080808;
    border: 1px solid #111;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.item-info .price {
    color: var(--primary-red);
    font-weight: 800;
}

.remove-item {
    color: #ff3333;
    font-size: 11px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
}

#cart-total-value {
    color: var(--primary-red);
}

.checkout-btn {
    width: 100%;
    background: var(--primary-red);
    color: black;
    border: none;
    padding: 22px;
    font-size: 16px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: white;
}

.close-drawer {
    font-size: 30px;
    cursor: pointer;
    color: #444;
}

.close-drawer:hover {
    color: white;
}

.empty-msg {
    color: #444;
    text-align: center;
    padding: 50px 0;
}

/* Modal Helper */
.reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviews-header span {
    color: #666;
    font-size: 14px;
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: #000;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: translateX(-500px);
    transition: transform 0.5s ease;
    max-width: 350px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.purchase-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #080808;
    border: 1px solid #111;
}

.notif-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notif-text span {
    font-size: 13px;
    color: #888;
}

#notif-user {
    color: white;
    font-weight: 800;
}

#notif-action {
    color: #666;
    font-size: 12px;
}

/* Scarcity Elements */
.modal-scarcity-info {
    margin-bottom: 30px;
}

.viewing-count {
    background: rgba(0, 221, 255, 0.1);
    border: 1px solid rgba(0, 221, 255, 0.3);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--primary-red);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.stock-warning {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #ff3333;
}

.stock-warning i {
    font-size: 16px;
}

/* Countdown Box */
.countdown-box {
    display: inline-flex;
    gap: 5px;
    font-weight: 900;
    color: var(--primary-red);
}

.countdown-box span {
    background: #111;
    padding: 2px 6px;
    border-radius: 3px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablets e dispositivos médios (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        display: none;
    }

    .main-slider {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .hero-main img {
        width: 70% !important;
        order: -1;
        margin-bottom: 30px;
        margin-top: 0 !important;
    }

    .slide-content h2 {
        font-size: 42px;
    }

    .slide-content p {
        max-width: 100%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Modal */
    .modal-content {
        padding: 50px 30px;
        margin: 30px auto;
    }

    .modal-body {
        gap: 50px;
    }
}

/* Smartphones e dispositivos pequenos (até 768px) */
@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        font-size: 10px;
        padding: 8px 0;
    }

    .top-contact {
        display: none;
    }

    .top-text {
        font-size: 10px;
    }

    .countdown-box {
        font-size: 9px;
    }

    /* Header */
    header {
        padding: 12px 0;
    }

    .header-content {
        gap: 15px;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
    }

    .brand-text h1 {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .search-bar {
        width: 100%;
        height: 40px;
    }

    .search-bar input {
        font-size: 13px;
        padding: 0 15px;
    }

    .search-bar button {
        padding: 0 18px;
        font-size: 14px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-around;
        gap: 15px;
    }

    .action-item {
        font-size: 12px;
        gap: 8px;
    }

    .action-item i {
        font-size: 18px;
    }

    /* Navigation */
    nav {
        overflow-x: visible;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        border-top: 1px solid #111;
        padding: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #111;
    }

    .nav-links a {
        padding: 18px 20px;
        font-size: 13px;
        white-space: normal;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border-bottom: none;
        background: #080808;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 15px 30px;
        font-size: 12px;
    }

    /* Hero Section */
    .premium-hero {
        padding: 25px 0;
    }

    .main-slider {
        padding: 30px 20px;
    }

    .slide-content h2 {
        font-size: 32px;
        margin: 15px 0;
    }

    .slide-content h2 span {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 14px;
    }

    .hero-main img {
        width: 85% !important;
    }

    /* Products Section */
    .products-section {
        padding: 50px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .tab {
        padding: 10px 20px;
        font-size: 11px;
        white-space: nowrap;
    }

    /* Product Grid - IMPORTANTE: Mantém todos os produtos visíveis */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 25px;
    }

    .product-card-img {
        height: 180px;
        margin-bottom: 20px;
    }

    .product-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .price-tag {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .buy-now {
        font-size: 14px;
        padding: 16px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 0;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item i {
        font-size: 28px;
    }

    .feature-text h4 {
        font-size: 13px;
    }

    .feature-text p {
        font-size: 11px;
    }

    /* Modal */
    .modal-content {
        padding: 30px 20px;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
        width: 100%;
    }

    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 35px;
    }

    .modal-body {
        flex-direction: column;
        gap: 30px;
    }

    .modal-image-side {
        padding: 25px;
    }

    .modal-image-side img {
        max-height: 300px;
    }

    .modal-info-side h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .modal-info-side p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .modal-price {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .modal-actions {
        gap: 12px;
        margin-bottom: 30px;
    }

    .buy-now-btn,
    .whatsapp-btn {
        padding: 18px;
        font-size: 15px;
    }

    .modal-delivery {
        padding: 20px 0;
        font-size: 13px;
    }

    .modal-scarcity-info {
        margin-bottom: 25px;
    }

    .viewing-count,
    .stock-warning {
        font-size: 12px;
        padding: 10px 15px;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }

    .drawer-header {
        padding: 25px 20px;
    }

    .drawer-header h3 {
        font-size: 20px;
    }

    .cart-items-list {
        padding: 20px;
    }

    .cart-item {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
    }

    .item-info h4 {
        font-size: 14px;
    }

    .drawer-footer {
        padding: 25px 20px;
    }

    .total-line {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .checkout-btn {
        padding: 18px;
        font-size: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    footer {
        padding: 60px 0 30px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 13px;
    }

    .logo-small {
        font-size: 20px;
    }

    .footer-bottom {
        padding-top: 30px;
        font-size: 11px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }

    /* Purchase Notification */
    .purchase-notification {
        bottom: 90px;
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
        padding: 15px;
    }

    .purchase-notification img {
        width: 50px;
        height: 50px;
    }

    .notif-text span {
        font-size: 11px;
    }

    #notif-action {
        font-size: 10px;
    }
}

/* Smartphones muito pequenos (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .search-bar {
        height: 38px;
    }

    .search-bar input {
        font-size: 12px;
        padding: 0 12px;
    }

    .action-item {
        font-size: 11px;
    }

    .action-item span {
        display: none;
    }

    /* Hero */
    .slide-content h2 {
        font-size: 26px;
    }

    .slide-content h2 span {
        font-size: 14px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 25px;
        font-size: 13px;
    }

    /* Products */
    .section-header h2 {
        font-size: 22px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card-img {
        height: 160px;
    }

    .product-title {
        font-size: 15px;
    }

    .price-tag {
        font-size: 20px;
    }

    /* Modal */
    .modal-content {
        padding: 25px 15px;
    }

    .modal-info-side h2 {
        font-size: 22px;
    }

    .modal-price {
        font-size: 32px;
    }

    .buy-now-btn,
    .whatsapp-btn {
        padding: 16px;
        font-size: 14px;
    }

    /* Features */
    .feature-item i {
        font-size: 24px;
    }

    .feature-text h4 {
        font-size: 12px;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Landscape mode para smartphones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-main img {
        width: 50% !important;
    }

    .main-slider {
        flex-direction: row;
        padding: 30px 20px;
    }

    .slide-content {
        text-align: left;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustes para garantir que nada seja cortado */
@media (max-width: 768px) {

    /* Previne overflow horizontal */
    body {
        overflow-x: hidden;
    }

    /* Garante que imagens não quebrem o layout */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Garante que o grid de produtos mostre TODOS os itens */
    .product-grid {
        display: grid !important;
        width: 100%;
    }

    .product-card {
        width: 100%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ajusta textos longos */
    .product-title,
    .modal-info-side h2 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}