/* Importação da fonte Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

/* Reset básico (sem interferir com os ícones) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Aplicação da fonte aos textos comuns */
body, html, p, h1, h2, h3, h4, h5, h6, a, span, li, button, input {
    font-family: 'Outfit', sans-serif;
}

html {
    background-color: #050505;
    height: 100%;
}

body {
    background-color: #050505;
    color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 255, 102, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Manchas de luz ambiente verde (Neon) */
.glow-left {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.glow-right {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.10) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Barra de navegação flutuante */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 50px;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0 15px;
}

.nav-links {
    background: #111;
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid #222;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 18px;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ff66;
}

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
}

.btn-social-icon {
    background: #111;
    color: #aaa;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #222;
    transition: 0.3s;
    font-size: 0.9rem;
    position: relative;
}

.btn-social-icon:hover {
    background: #00ff66;
    color: #000;
    border-color: #00ff66;
}

.btn-social-pill {
    background: #111;
    color: white;
    padding: 9px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #222;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-social-pill:hover {
    background: #00ff66;
    color: #000;
    border-color: #00ff66;
}

/* Secção Hero */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 50px 20px;
    position: relative;
    z-index: 5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #00ff66;
    color: #050505;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    background-color: #00cc52;
    transform: translateY(-2px);
}

/* Team Page */
.team-page {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    position: relative;
    z-index: 5;
    width: 100%;
}
.team-header { margin-bottom: 40px; text-align: center; }
.players-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.player-card-pro { background: #111; border: 1px solid #222; padding: 20px; border-radius: 10px; text-align: center; width: 220px; transition: 0.3s; }
.player-card-pro:hover { border-color: #00ff66; transform: translateY(-5px); box-shadow: 0 0 15px rgba(0, 255, 102, 0.2); }
.player-photo img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; margin-bottom: 15px; }
.member-role { color: #00ff66; font-size: 0.85rem; font-weight: bold; display: block; margin-bottom: 15px; text-transform: uppercase; }
.player-socials { display: flex; justify-content: center; gap: 15px; }
.player-socials a { color: #aaa; font-size: 1.1rem; }
.player-socials a:hover { color: #00ff66; }

/* Estilos para a página da Loja (Merch) */
.merch-page {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    position: relative;
    z-index: 5;
    width: 100%;
}

.product-card-store {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.product-image-box {
    width: 100%;
    background: #151515;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #222;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-details {
    padding: 30px;
}

.product-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.product-info-top h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.product-info-top p {
    color: #888;
    font-size: 0.95rem;
    margin-top: 5px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff66;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.color-options, .size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-btn, .size-btn {
    background: #161616;
    color: #aaa;
    border: 1px solid #222;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.color-btn:hover, .size-btn:hover {
    border-color: #00ff66;
    color: #fff;
}

.color-btn.active, .size-btn.active {
    background: #00ff66;
    color: #050505;
    border-color: #00ff66;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.personalization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media(max-width: 600px) {
    .personalization-grid {
        grid-template-columns: 1fr;
    }
}

.custom-input {
    width: 100%;
    background: #161616;
    border: 1px solid #222;
    padding: 12px 15px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #00ff66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

/* RODPÉ (FOOTER) PROFISSIONAL */
.site-footer {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    color: #888;
    padding: 50px 40px 40px 40px;
    position: relative;
    z-index: 10;
    margin-top: auto;
    width: 100%;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col, .footer-col-brand {
    flex: 1;
    min-width: 150px;
}

.footer-col-brand h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top ul li {
    margin-bottom: 8px;
}

.footer-col ul li a, .footer-col p {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: #1a1a1a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-socials-list {
    display: flex;
    gap: 20px;
    list-style: none;
    font-size: 1.2rem;
}

.footer-socials-list a {
    color: #fff;
    transition: 0.3s;
}

.footer-socials-list a:hover {
    color: #00ff66;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.4rem;
    color: #ccc;
    align-items: center;
}

/* Botão flutuante "Fala Connosco" */
.chat-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a0a0a;
    border: 1px solid #222;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    transition: 0.3s;
    z-index: 1000;
}

.chat-float-btn:hover {
    border-color: #00ff66;
    background: #111;
}

.chat-float-btn i {
    color: #00ff66;
}

/* =========================================
   ESTILOS DA GAVETA DO CARRINHO
   ========================================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #0b0b0b;
    border-left: 1px solid #222;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #1a1a1a;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.cart-header h3 span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

.close-cart-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-cart-btn:hover {
    color: #00ff66;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    margin-bottom: 12px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    background: #181818;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.cart-item-details p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 2px;
}

.cart-item-details span {
    color: #ccc;
}

.delete-item-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    margin-top: 5px;
}

.delete-item-btn:hover {
    color: #ff1e38;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 15px;
    right: 15px;
}

.new-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #1a1a1a;
    background: #0b0b0b;
}

.cart-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-section span:first-child {
    color: #888;
    font-size: 0.95rem;
}

.total-price {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.btn-checkout {
    display: block;
    width: 100%;
    background-color: #00ff66;
    color: #050505;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.btn-checkout:hover {
    background-color: #00cc52;
}