
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: var(--bg-page);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}


.main-container {
    background-color: var(--bg-container);
    width: 100%;
    max-width: 650px;  /*Largura ideal para foco */
    min-height: 100vh;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Perfil */
.profile { text-align: center; margin-bottom: 30px; }
.profile img { 
    width: 90px; height: 90px; border-radius: 50%; 
    object-fit: cover; margin-bottom: 12px;
    border: 3px solid #f0f0f0;
}
.profile h1 { font-size: 1.2rem; color: var(--cor-texto); }
.profile p { font-size: 0.9rem; color: var(--cor-texto); margin-top: 5px; }

.social-buttons {
    display: flex;
    width: 100%;
    gap: 10px; /* Espaço entre os botões */
    /*margin-bottom: 30px;*/
}

.btn-social {
    flex: 1; /* Faz os dois botões terem o mesmo tamanho */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Cores específicas */
.btn-social.zap {
    background-color: var(--primary-color1);
    color: var(--primary-color1-text);
}

.btn-social.tele {
    background-color: var(--primary-color2);
    color: var(--primary-color2-text);
}

/* Efeito de hover */
.btn-social:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Ajuste para ícones */
.btn-social i {
    font-size: 1.2rem;
}

/* No PC, se quiser que os botões não fiquem tão largos, 
   o container principal já limita isso (max-width do main-container). */
@media (max-width: 380px) {
    .btn-social span {
        display: none; /* Em celulares muito pequenos, mostra só o ícone se o texto for grande */
    }
    .btn-social i {
        font-size: 1.5rem;
    }
}



/* Título da Vitrine */
.section-title {
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cor-texto);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.5); 
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.instagram-link i {
    font-size: 1rem;
    /* Gradiente clássico do Instagram no ícone */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}        


/* Grid de Produtos */
.products-grid {
    display: grid;
    width: 100%;
    /* O minmax(0, 1fr) impede que uma coluna empurre as outras */
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    gap: 12px;
    align-items: start; /* Garante que os cards comecem na mesma linha no topo */
}

/* Opcional: Manter 3 colunas no desktop se desejar, como está no seu código */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Evita que o conteúdo escape do card */
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
    background-color: #f9f9f9;
    display: block; /* Remove espaços vazios abaixo da imagem */
}

.product-card h3 {
    font-size: 0.8rem;
    line-height: 1.2; /* Define uma altura de linha clara */
    color: var(--cor-texto);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Força o H3 a ter sempre o tamanho de 2 linhas, mesmo que tenha só 1 */
    height: 3.6rem; 
    margin-bottom: 4px;
    word-break: break-word;
    overflow: hidden; 
    display: block;
}


/* Botão Flutuante Suspenso */
.floating-footer {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    left: 50%;
    transform: translateX(-50%); /* Centraliza o botão */
    width: calc(100% - 40px);
    max-width: 400px; /* Não deixa ele ficar largo demais no PC */
    z-index: 999;
}

.btn-cta-sistema {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000; 
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-cta-sistema:hover {
    transform: scale(1.05);
    background-color: #333;
}




.btn-view-page {
    background-color: #00c8ff; /* Cor azul do logo DecLinks */
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-page:hover {
    background-color: #0088cc;
    transform: scale(1.03);
}




body {
    padding-bottom: 100px; 
}        

footer { margin-top: auto; padding-top: 40px; font-size: 0.7rem; color: var(--primary-color-text); }




