:root {
    --primary-blue: #0027A7;
    --accent-orange: #F5821F;
    --white: #FFFFFF;
    --text-blue: #0027A7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.header {
    margin-bottom: 24px;
}

/* Ajuste de LCP: Logo sem lazy load para carregar instantaneamente */
.logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.btn {
    background: var(--white);
    border-radius: 50px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: scale(0.96);
}

.info-banner {
    cursor: default;
    font-weight: 400;
    line-height: 1.4;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px dashed var(--white);
    box-shadow: none;
}

.product-thumb {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 10px;
}

.product-btn {
    justify-content: flex-start;
    padding: 12px 20px;
    text-align: left;
}

.product-info {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

/* Animação VIP */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 130, 31, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 130, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 130, 31, 0);
    }
}

.btn-vip {
    border: 2px solid var(--accent-orange);
    animation: pulse 2s infinite;
}

.footer {
    margin-top: 20px;
    background: var(--white);
    border-radius: 50px;
    padding: 15px;
    font-size: 0.75rem;
    color: var(--text-blue);
}

.footer span {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Botão de Compartilhar */
.share-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.8rem;
    margin-top: 10px;
    cursor: pointer;
    opacity: 0.8;
}
/* Espaçamento e Estilo da Seção de Produtos */
.products-section {
    margin-top: 32px; /* Aqui é a distância que você pediu */
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 4px;
    border-left: 3px solid var(--accent-orange); /* Detalhe lateral para destaque */
    margin-bottom: 4px;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Distância entre cada produto da lista */
}
