@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #111;
    color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5vw;
    background: #000;
    border-bottom: 3px solid #e10600;
}
.logo span {
    font-size: 2rem;
    font-weight: bold;
    color: #e10600;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #e10600;
}
main {
    padding: 40px 5vw;
}
section {
    margin-bottom: 60px;
}
section h1 {
    color: #e10600;
    margin-bottom: 16px;
    font-size: 2rem;
}
.produtos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.produto {
    background: #181818;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.produto h2 {
    color: #fff;
    margin: 0 0 8px 0;
}
.produto p {
    color: #ccc;
    margin-bottom: 16px;
}
.pagamentos {
    display: flex;
    gap: 12px;
}
button.asaas {
    background: #e10600;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
button.asaas:hover {
    background: #b00500;
}
button.mercadopago {
    background: #fff;
    color: #e10600;
    border: 2px solid #e10600;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
button.mercadopago:hover {
    background: #e10600;
    color: #fff;
}
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}
input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 1rem;
}
input:focus, textarea:focus {
    outline: 2px solid #e10600;
}
button[type="submit"] {
    background: #e10600;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #b00500;
}
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-top: 3px solid #e10600;
    font-size: 1rem;
}
@media (max-width: 700px) {
    header, main {
        padding: 16px 3vw;
    }
    .produtos-lista {
        grid-template-columns: 1fr;
    }
    nav ul {
        gap: 16px;
    }
    section h1 {
        font-size: 1.4rem;
    }
}

.logo-text {
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #e10600;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px #000, 0 0 4px #e10600;
    text-transform: uppercase;
    transition: color 0.3s;
}
.logo-text:hover {
    color: #fff;
    text-shadow: 2px 2px 12px #e10600, 0 0 8px #fff;
}

.logo-sub {
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 0.85rem;
    color: #fff;
    margin-left: 12px;
    letter-spacing: 2px;
    vertical-align: baseline;
    font-weight: 400;
    opacity: 0.85;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tab-content.active {
    display: block;
    opacity: 1;
}
.tab-link.active {
    color: #e10600;
    border-bottom: 2px solid #e10600;
    font-weight: bold;
}
.tab-link {
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.botao-compra {
    display: inline-block;
    background: #e10600;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.botao-compra:hover {
    background: #b00500;
    color: #fff;
    box-shadow: 0 4px 16px rgba(225,6,0,0.25);
} 