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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

main {
    position: relative;
}

.decorative-text {
    display: flex;
    position: absolute;
    left: -50px;
    top: 100px;
    flex-direction: column;
    gap: 0;
    z-index: 0;
    pointer-events: none;
}

.decorative-text span {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: 15px;
    color: rgba(255, 255, 255, 0.04);
}

.logo-background {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.logo-background img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    opacity: 0.4;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #333;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.catalogo-section {
    padding: 40px 0;
    margin: 20px 0;
    background: transparent;
}

.catalogo-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #333;
}

.catalogo-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.catalogo-header h3 {
    font-size: 18px;
    font-weight: 300;
    color: #888;
}

.catalogo-section > .container > h2 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin: 30px 0 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 12px;
    border-left: 5px solid #444;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.catalogo-section > .container > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.catalogo-section > .container > h2.amarelo {
    color: rgba(255, 215, 0, 0.7);
    border-left-color: #FFD700;
}

.catalogo-section > .container > h2.verde {
    color: rgba(50, 205, 50, 0.7);
    border-left-color: #32CD32;
}

.catalogo-section > .container > h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ccc;
    margin: 20px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #555;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.produto-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.produto-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.produto-card:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, #232323 0%, #1f1f1f 100%);
}

.produto-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.produto-nome {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.produto-quantidade {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.produto-preco {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-top: 8px;
}

.unitario {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.produto-total {
    font-size: 16px;
    color: #aaa;
    font-weight: 600;
    padding-top: 12px;
    border-top: 2px solid #2a2a2a;
    margin-top: 8px;
}

.btn-comprar {
    display: block;
    background: linear-gradient(135deg, #25D366 0%, #1fa855 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-comprar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.btn-comprar:active {
    background: linear-gradient(135deg, #1fa855 0%, #158a42 100%);
}

footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, rgba(20, 20, 20, 0.8) 100%);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #333;
    position: relative;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.8), inset 0 -50px 80px rgba(0, 0, 0, 0.95);
}

footer p {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

footer p.envios {
    font-size: 16px;
    color: #25D366;
    font-weight: 700;
    margin-bottom: 15px;
}

.contato-section {
    padding: 60px 0;
    text-align: center;
    background: #121212;
    margin: 40px 0;
    border-radius: 20px;
}

.contato-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contato-texto {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #1fa855 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.btn-whatsapp img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.btn-whatsapp span {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.btn-whatsapp:active {
    background: linear-gradient(135deg, #1fa855 0%, #158a42 100%);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.whatsapp-float:active {
    opacity: 0.8;
}

.midias-section {
    padding: 60px 0;
    background: transparent;
}

.midias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.midia-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.midia-item img,
.midia-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.midia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .decorative-text span {
        font-size: 150px;
        letter-spacing: 15px;
    }

    .logo-background {
        top: 50%;
        right: 25px;
    }

    .logo-background img {
        width: 200px;
        height: 200px;
        opacity: 0.35;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 14px;
        padding: 10px 18px;
    }

    .catalogo-section {
        padding: 60px 0;
    }

    .catalogo-header h2 {
        font-size: 48px;
    }

    .catalogo-header h3 {
        font-size: 22px;
    }

    .catalogo-section > .container > h2 {
        font-size: 32px;
    }

    .catalogo-section > .container > h3 {
        font-size: 26px;
    }

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .produto-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        border-color: #3a3a3a;
        background: #232323;
    }

    .btn-comprar:hover {
        background: #20ba5a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    footer p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .decorative-text span {
        font-size: 280px;
        letter-spacing: 25px;
    }

    .logo-background {
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
    }

    .logo-background img {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .catalogo-section {
        padding: 80px 0;
    }

    .catalogo-header {
        margin-bottom: 60px;
    }

    .catalogo-header h2 {
        font-size: 56px;
    }

    .catalogo-header h3 {
        font-size: 24px;
    }

    .catalogo-section > .container > h2 {
        font-size: 36px;
        margin: 50px 0 20px;
        padding: 15px 25px;
    }

    .catalogo-section > .container > h3 {
        font-size: 28px;
        margin: 30px 0 20px;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 35px;
        margin-bottom: 40px;
    }

    .produto-card {
        padding: 30px;
    }

    .produto-nome {
        font-size: 24px;
    }

    .produto-quantidade {
        font-size: 16px;
    }

    .produto-preco {
        font-size: 32px;
    }

    .produto-total {
        font-size: 18px;
    }

    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }

    footer {
        margin-top: 80px;
        padding: 40px 0;
    }
}
