body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

h1, h2 {
    color: #1f2937;
}

.download-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.alert {
    background: #fff7ed;
    border-left: 5px solid #f97316;
    padding: 12px;
    margin: 20px 0;
}

.senha {
    font-size: 18px;
}

.steps li {
    margin-bottom: 10px;
}

.support {
    margin-top: 40px;
    padding: 25px;
    text-align: center;
    background: #ecfeff;
    border-radius: 8px;
}

.support-highlight {
    background: linear-gradient(135deg, #dcfce7, #ecfeff);
    border: 3px solid #22c55e;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-highlight h2 {
    font-size: 26px;
    color: #065f46;
    margin-bottom: 15px;
}

.support-text {
    font-size: 16px;
    color: #064e3b;
    margin-bottom: 20px;
}

.whatsapp-number {
    font-size: 26px;
    font-weight: bold;
    margin: 20px 0;
    color: #14532d;
}

.whatsapp-btn {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
}

.support-footer {
    margin-top: 15px;
    font-size: 14px;
    color: #065f46;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;   /* antes 26px */
    height: 30px;  /* antes 26px */
    margin-right: 8px;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

/* Botão WhatsApp com efeito LED */
.whatsapp-btn {
    position: relative;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* Glow azul */
    box-shadow:
        0 0 6px rgba(14, 165, 233, 0.6),
        0 0 14px rgba(14, 165, 233, 0.4);

    animation: ledGlowBlue 3s ease-in-out infinite;
}

@keyframes ledGlowBlue {
    0% {
        box-shadow:
            0 0 6px rgba(14, 165, 233, 0.4),
            0 0 14px rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow:
            0 0 14px rgba(14, 165, 233, 0.9),
            0 0 34px rgba(14, 165, 233, 0.6);
    }
    100% {
        box-shadow:
            0 0 6px rgba(14, 165, 233, 0.4),
            0 0 14px rgba(14, 165, 233, 0.3);
    }
}

.whatsapp-btn:hover {
    box-shadow:
        0 0 20px rgba(14, 165, 233, 1),
        0 0 45px rgba(14, 165, 233, 0.8);
}

/*CARRUCEL*/

.produtos-title {
    margin-top: 50px;
    text-align: center;
    font-size: 22px;
    color: #1f2937;
}

.produtos-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 10px;
}

.produtos-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: produtosScroll 30s linear infinite;
}

.produtos-carousel:hover .produtos-track {
    animation-play-state: paused;
}

@keyframes produtosScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Reaproveitando seu estilo */
.produto-card {
    min-width: 150px;          /* antes 190px */
    max-width: 150px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;             /* menos espaço interno */
    text-align: center;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.produto-card img {
    width: 100%;
    height: 90px;              /* antes 120px */
    object-fit: contain;
    margin-bottom: 8px;
}


.produto-card span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .produto-card {
        min-width: 130px;
        max-width: 130px;
        padding: 8px;
    }

    .produto-card img {
        height: 80px;
    }

    .produto-card span {
        font-size: 12px;
    }
}



