/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Força o uso da Inter em todos os elementos */
*, 
*::before, 
*::after {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* Melhor renderização da Inter */
    background: linear-gradient(135deg, #ff8a00 0%, #d50000 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

/* Header - Logo e Título */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Seção WhatsApp */
.whatsapp-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.grupos-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Nota importante */
.nota-container {
    display: flex;
    justify-content: center;
    margin-top: -15px;
}

.nota-badge {
    background: #D50000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nota-label {
    font-weight: 600;
    color: white;
    margin-right: 6px;
}

.nota-text {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Botões de Grupos */
.grupos-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.grupo-btn {
    background: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    width: 100%;
    margin: 0 auto;
    position: relative; /* necessário para posicionar o texto absolutamente */
}

.grupo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.grupo-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    pointer-events: none; /* evita interferir com cliques no botão */
}

/* Seção de Lojas */
.lojas-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lojas-subtitle {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.lojas-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.loja-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.loja-item:hover {
    transform: scale(1.05);
}

.loja-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 20px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
        gap: 35px;
    }
    
    .main-title {
        font-size: 1.9rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .nota-badge {
        padding: 10px 16px;
    }
    
    .nota-text {
        font-size: 0.85rem;
    }
    
    .grupo-btn {
        padding: 10px 20px;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    

    
    .loja-item {
        width: 50px;
        height: 50px;
    }
    
    .loja-logo {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 25px 12px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .grupos-text {
        font-size: 1.3rem;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header,
.whatsapp-section,
.lojas-section {
    animation: fadeInUp 0.6s ease-out;
}

.whatsapp-section {
    animation-delay: 0.2s;
}

.lojas-section {
    animation-delay: 0.4s;
}

/* Estados de loading/hover para melhor UX */
.grupo-btn {
    position: relative;
    overflow: hidden;
}

.grupo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.grupo-btn:hover::before {
    left: 100%;
}