@charset "UTF-8";

/* ========== VARIÁVEIS E RESET ========== */

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-orange: #ffd700;
    --accent-gold: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --card-bg: rgba(17, 17, 17, 0.9);
    --card-border: rgba(255, 215, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--accent-orange), #ffed4e);
    --gradient-dark: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.9));
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-neon-strong: 0 0 30px rgba(255, 215, 0, 0.5);
    scroll-behavior: smooth;
}

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

html,
body {
    font-family: 'Inter', 'Orbitron', sans-serif;
    background: var(--primary-bg);
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%), linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}


/* ========== CARDS PRODUTOS  ========== */

.produtos-section {
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.produtos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 69, 0, 0.05));
    opacity: 0.3;
    z-index: 0;
}

.produtos-titulo {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

.produtos-descricao {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3.5rem;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
    z-index: 1;
}

.produto-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: var(--transition-smooth);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.produto-card:hover::before {
    left: 100%;
}

.produto-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.produto-nome {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
    text-align: center;
    flex: 1;
}

.produto-preco {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.produto-btn {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    justify-self: center;
    font-size: 0.9rem;
}

.produto-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.produto-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(255, 215, 0, 0.4);
}

.produto-btn:hover::before {
    left: 100%;
}


/* ========== CAROUSEL SIMPLES PARA PRODUTOS ========== */

.img-switcher_produtos {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: grab;
    user-select: none;
    border-radius: 15px;
    transition: transform 0.2s ease;
}

.img-switcher_produtos:active {
    cursor: grabbing;
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .img-switcher_produtos {
        padding-top: 140%;
        margin-bottom: 20px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .img-switcher_produtos {
        padding-top: 145%;
        margin-bottom: 20px;
        border-radius: 15px;
    }
}

.img-switcher_produtos .produto-img_produtos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
}

.img-switcher_produtos .produto-img_produtos.active_produtos {
    opacity: 1;
    transform: scale(1);
}

.switch-btn_produtos {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    opacity: 0.8;
    font-weight: 600;
}

.switch-btn_produtos:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(-50%);
}

.prev_produtos {
    left: 12px;
}

.next_produtos {
    right: 12px;
}


/* Image Indicators */

.image-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}


/* ================================
   FOOTER
=================================== */

.footer {
    background-color: #111;
    color: #ccc;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links,
.footer-socials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a,
.footer-socials a {
    color: #aaa;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: #fff;
}


/* ========= HERO SECTION ========= */

.shop-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
}

.hero-video-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-video-btn i {
    font-size: 1.1rem;
}


/* Mobile Only - Show video button only on mobile */

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-flex;
    }
}


/* Video Modal Styles */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.video-modal-player {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.video-modal-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.video-modal-mute {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.video-modal-mute:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.video-modal-mute i {
    font-size: 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-strong);
    border-color: rgba(255, 215, 0, 0.6);
    color: var(--text-primary);
}

.video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* ========== MEDIA QUERIES ========== */

@media (max-width: 768px) {
    /* HERO SECTION MOBILE */
    .shop-hero {
        height: 80vh;
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        min-width: 200px;
        padding: 1rem;
    }
    .stat-item i {
        font-size: 2rem;
    }
    .hero-video-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    /* Mobile Navigation Buttons - HIDDEN ON MOBILE */
    .switch-btn_produtos {
        display: none;
    }
    /* Mobile Indicators */
    .indicator {
        width: 10px;
        height: 10px;
    }
    .image-indicators {
        bottom: 15px;
        gap: 8px;
    }
    /* Video Modal Mobile */
    .video-modal-content {
        width: 95%;
        max-width: none;
        border-radius: 15px;
    }
    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    .video-modal-mute {
        width: 35px;
        height: 35px;
        bottom: 10px;
        right: 10px;
    }
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    /* HERO VIDEO: centro e proporção fixa */
    .video-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .video-wrapper video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        object-fit: cover;
        object-position: center center;
    }
    /* restante do mobile */
    h1 {
        font-size: 2.5rem;
    }
    .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .container,
    .glow-box {
        padding: 25px 15px;
    }
    /* Navbar styles removed - using geral.css instead */
}

@media (min-width: 600px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-links,
    .footer-socials {
        justify-content: flex-start;
    }
}


/* ========== SCROLL REVEAL ANIMATIONS ========== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.interactive-element {
    transition: var(--transition-smooth);
}

.interactive-element:hover {
    transform: translateY(-5px);
}


/* ========== RESPONSIVE DESIGN LOJA ========== */

@media (max-width: 1024px) {
    .produtos-titulo {
        font-size: 3rem;
    }
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .produto-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .produtos-section {
        padding: 4rem 0.5rem;
    }
    .produtos-titulo {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    .produtos-descricao {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        line-height: 1.6;
    }
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        padding: 0 0.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    .produto-card {
        padding: 1.2rem;
        min-height: 420px;
        border-radius: 20px;
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
    }
    .produto-nome {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem;
        font-weight: 700;
    }
    .produto-preco {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    .produto-btn {
        padding: 12px 28px;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 2px solid #ffd700;
        color: #333333;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
}

@media (max-width: 700px) {
    .produtos-section {
        padding: 3.8rem 0.6rem;
    }
    .produtos-grid {
        max-width: 520px;
        gap: 1.4rem;
    }
    .produto-card {
        padding: 1.25rem;
        min-height: 440px;
        border-radius: 19px;
    }
    .produto-nome {
        font-size: 1.28rem;
        margin: 0.95rem 0 0.45rem;
    }
    .produto-preco {
        font-size: 1.28rem;
        margin-bottom: 0.95rem;
    }
    .produto-btn {
        padding: 11.5px 24px;
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    /* HERO SECTION SMALL MOBILE */
    .shop-hero {
        height: 70vh;
        min-height: 450px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero-stats {
        gap: 1rem;
        padding: 0 10px;
    }
    .stat-item {
        min-width: 180px;
        padding: 0.8rem;
    }
    .stat-item i {
        font-size: 1.8rem;
    }
    .stat-item span {
        font-size: 0.9rem;
    }
    .hero-video-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    .hero-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    /* VIDEO MOBILE PEQUENO */
    .video-wrapper video {
        width: 130%;
        height: 130%;
        object-position: center 30%;
    }
    /* PRODUTOS SECTION SMALL MOBILE */
    .produtos-section {
        padding: 3.5rem 0.5rem;
    }
    .produtos-titulo {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    .produtos-descricao {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        font-weight: 500;
    }
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 550px;
        margin: 0 auto;
    }
    .produto-card {
        padding: 1.3rem;
        max-width: 100%;
        margin: 0 auto;
        min-height: 450px;
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(255, 255, 255, 0.12);
    }
    .produto-nome {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem;
        font-weight: 700;
    }
    .produto-preco {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    .produto-btn {
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 2px solid #ffd700;
        color: #333333;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
    .container {
        padding: 20px 10px;
    }
    html {
        font-size: 85%;
    }
}

@media (max-width: 540px) {
    .produtos-section {
        padding: 3.2rem 0.45rem;
    }
    .produtos-grid {
        max-width: 480px;
        gap: 1.25rem;
    }
    .produto-card {
        padding: 1.15rem;
        min-height: 410px;
        border-radius: 18.5px;
    }
    .produto-nome {
        font-size: 1.22rem;
        margin: 0.85rem 0 0.35rem;
    }
    .produto-preco {
        font-size: 1.22rem;
        margin-bottom: 0.85rem;
    }
    .produto-btn {
        padding: 10.5px 22px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    /* PRODUTOS SECTION EXTRA SMALL MOBILE */
    .produtos-section {
        padding: 3rem 0.4rem;
    }
    .produtos-grid {
        max-width: 500px;
        gap: 1.3rem;
    }
    .produto-card {
        padding: 1.2rem;
        min-height: 420px;
        border-radius: 18px;
    }
    .produto-nome {
        font-size: 1.25rem;
        margin: 0.9rem 0 0.4rem;
    }
    .produto-preco {
        font-size: 1.25rem;
        margin-bottom: 0.9rem;
    }
    .produto-btn {
        padding: 11px 23px;
        font-size: 0.95rem;
    }
}


/* Extra Small Mobile */

@media (max-width: 430px) {
    .produtos-section {
        padding: 2.9rem 0.35rem;
    }
    .produtos-grid {
        max-width: 425px;
        gap: 1.05rem;
    }
    .produto-card {
        padding: 1.05rem;
        min-height: 390px;
        border-radius: 17.5px;
    }
    .produto-nome {
        font-size: 1.18rem;
        margin: 0.75rem 0 0.32rem;
    }
    .produto-preco {
        font-size: 1.18rem;
        margin-bottom: 0.75rem;
    }
    .produto-btn {
        padding: 9.5px 20px;
        font-size: 0.88rem;
    }
}

@media (max-width: 380px) {
    .produtos-section {
        padding: 2.8rem 0.3rem;
    }
    .produtos-grid {
        max-width: 450px;
        gap: 1.1rem;
    }
    .produto-card {
        padding: 1.1rem;
        min-height: 400px;
        border-radius: 17px;
    }
    .produto-nome {
        font-size: 1.2rem;
        margin: 0.8rem 0 0.3rem;
    }
    .produto-preco {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .produto-btn {
        padding: 10px 21px;
        font-size: 0.9rem;
    }
}

@media (max-width: 350px) {
    .produtos-section {
        padding: 2.6rem 0.25rem;
    }
    .produtos-grid {
        max-width: 375px;
        gap: 0.9rem;
    }
    .produto-card {
        padding: 0.95rem;
        min-height: 370px;
        border-radius: 16.5px;
    }
    .produto-nome {
        font-size: 1.12rem;
        margin: 0.65rem 0 0.28rem;
    }
    .produto-preco {
        font-size: 1.12rem;
        margin-bottom: 0.65rem;
    }
    .produto-btn {
        padding: 8.5px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 320px) {
    .shop-hero {
        height: 65vh;
        min-height: 400px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .stat-item {
        min-width: 160px;
        padding: 0.6rem;
    }
    .stat-item i {
        font-size: 1.6rem;
    }
    .stat-item span {
        font-size: 0.8rem;
    }
    .hero-video-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .hero-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    /* VIDEO MOBILE EXTRA PEQUENO */
    .video-wrapper video {
        width: 140%;
        height: 140%;
        object-position: center 25%;
    }
    .produtos-section {
        padding: 2.5rem 0.3rem;
    }
    .produtos-titulo {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        font-weight: 800;
    }
    .produtos-descricao {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        font-weight: 500;
    }
    .produtos-grid {
        max-width: 400px;
        gap: 1rem;
    }
    .produto-card {
        padding: 1rem;
        min-height: 380px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    }
    .produto-nome {
        font-size: 1.15rem;
        margin: 0.7rem 0 0.3rem;
        font-weight: 700;
    }
    .produto-preco {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
        font-weight: 800;
    }
    .produto-btn {
        padding: 9px 19px;
        font-size: 0.85rem;
        border-radius: 10px;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 2px solid #ffd700;
        color: #333333;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
}