* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #1a1d20; /* Fundo grafite escuro premium igual à home */
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    /* Linhas diagonais sutis de fundo (efeito grid técnico/design) */
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 10px);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

/* ==========================================================================
   2. HEADER & LOGO (Estilo Minimalista e Espaçado)
   ========================================================================== */
header {
    padding: 30px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #22c55e; /* Verde Neon Assinatura */
}

.donation-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.donation-text {
    color: #9aa0a6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.copy-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #22c55e;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #22c55e;
    color: #1a1d20;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.copy-message {
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

/* ==========================================================================
   3. SEÇÃO INTRODUTÓRIA DA PÁGINA (Hero Centralizado)
   ========================================================================== */
.title-site {
    padding: 70px 0 40px;
    position: relative;
}

/* Adiciona o detalhe decorativo sutil centralizado antes do h1 */
.title-site::before {
    content: "— SEJA BEM-VINDO(A)";
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.title-site h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 25px;
}

.title-site p {
    max-width: 850px;
    margin: 0 auto 20px;
    text-align: center;
    color: #9aa0a6;
    line-height: 1.8;
    font-size: 17px;
}

/* ==========================================================================
   4. CONTEÚDO PRINCIPAL & TÍTULOS INTERNALIZADOS
   ========================================================================== */
.content {
    padding-bottom: 60px;
}

.content .container {
    max-width: 900px;
}

.content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    border-left: none; /* Remove a borda esquerda para combinar com o novo layout */
    padding-left: 0;
    margin-top: 50px;
    margin-bottom: 35px;
    position: relative;
}

/* Linha de assinatura verde abaixo do título h2 interno */
.content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #22c55e;
    margin-top: 15px;
}

.content p {
    color: #9aa0a6;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* ==========================================================================
   5. CARD DE AVISO (Warning Box)
   ========================================================================== */
.warning-text {
    background: #23272c;
    border: 1px solid #333942;
    border-left: 4px solid #22c55e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 35px;
    color: #9aa0a6;
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   6. ITEM DE PRODUTO INDIVIDUAL (Estilo Premium)
   ========================================================================== */
.product-item {
    /* COLOCAR NAS OUTRAS PÁGINAS - IMAGEM DOS PRODUTOS */
    display: flex;
    gap: 20px;
    align-items: center;

    /**/


    background: #23272c;
    border: 1px solid #333942;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Linha decorativa no topo do card ao passar o mouse */
.product-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #22c55e;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: #404752;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-item:hover::before {
    transform: scaleX(1);
}




/* COLOCAR NAS OUTRAS PÁGINAS - IMAGEM DOS PRODUTOS */
.product-image img {
  width: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
/**/




.product-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #333942;
    padding-top: 20px;
}

.price {
    color: #22c55e;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.store-link {
    background: #22c55e;
    color: #1a1d20;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.store-link:hover {
    background: #4ade80;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid #333942;
    text-align: center;
    padding: 35px 0;
    color: #606770;
    font-size: 14px;
    font-weight: 500;
    background: #1a1d20;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}



/* Celulares */
@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
    text-align: center;
  }

  .product-image img {
    width: 220px;
    max-width: 100%;
  }

  .product-details {
    width: 100%;
  }
}


