* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Logo/Mascote */
.logo-section {
    margin-bottom: 1px;
}

.mascote-wrap{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;            /* corta o que sobra */
  box-shadow:
    0 0 30px rgba(0, 255, 0, 0.7),
    0 0 60px rgba(0, 255, 0, 0.4);
  animation: floatAnimation 3s ease-in-out infinite;
}

.mascote{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.30);      /* aumenta um pouco pra “empurrar” a borda preta pra fora */
  border-radius: 0;            /* quem arredonda é o wrap */
  box-shadow: none;
  border: none;
}



@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Título */
.titulo {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0px;
    word-spacing: -10px;
}

.titulo .zap {
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8),
                 0 0 40px rgba(0, 255, 0, 0.5),
                 0 0 60px rgba(0, 255, 0, 0.3);
    font-weight: 900;
}

.titulo .ofertas {
    color: #ffffff;
    font-weight: 700;
}

/* Subtítulo */
.subtitulo {
    font-size: 18px;
    font-weight: 600;
    color: #00FF00;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Descrição */
.descricao {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.descricao .destaque {
    font-weight: bold;
    color: #ffffff;
}

.descricao .whatsapp-text {
    color: #00FF00;
    font-weight: bold;
}

/* Botão WhatsApp */
.botao-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00FF00 0%, #00DD00 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4),
                0 0 40px rgba(0, 255, 0, 0.2);
    animation: pulseButton 2s ease-in-out infinite;
    white-space: nowrap;
}

.icon-whatsapp {
    font-size: 20px;
}

.texto-botao {
    letter-spacing: 1px;
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.4),
                    0 0 40px rgba(0, 255, 0, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.6),
                    0 0 60px rgba(0, 255, 0, 0.4),
                    0 0 80px rgba(0, 255, 0, 0.2);
    }
}

.botao-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.8),
                0 0 80px rgba(0, 255, 0, 0.5);
}

/* Vagas disponíveis */
.vagas {
    font-size: 15px;
    color: #00FF00;
    letter-spacing: 1px;
    margin: 5px 0 20px 0;
    font-weight: 500;
}

.ponto-verde {
    color: #00FF00;
    animation: blinkPoint 1s ease-in-out infinite;
}

@keyframes blinkPoint {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Cards de informações */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #00FF00;
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.card-numero {
    font-size: 28px;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin-bottom: 5px;
}

.card-texto {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
}

/* Footer */
.footer {
    font-size: 12px;
    color: #666666;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    padding-top: 15px;
    width: 100%;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
        gap: 10px;
    }

    .mascote-wrap {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .mascote {
        width: 100%;
        height: 100%;
    }

    .titulo {
        font-size: 42px;
        margin-bottom: 5px;
        letter-spacing: 0px;
        word-spacing: 5px;
    }

    .subtitulo {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .descricao {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .botao-whatsapp {
        padding: 15px 35px;
        font-size: 14px;
        gap: 10px;
        margin-bottom: 15px;
        white-space: normal;
        width: 100%;
        max-width: 280px;
    }

    .vagas {
        margin: 10px 0 20px 0;
        font-size: 14px;
    }

    .cards-container {
        gap: 12px;
        margin-bottom: 15px;
    }

    .card {
        padding: 18px 25px;
        min-width: 85px;
        flex: 1;
        min-width: calc(33.333% - 8px);
    }

    .card-numero {
        font-size: 26px;
        margin-bottom: 3px;
    }

    .card-texto {
        font-size: 12px;
    }

    .icon-whatsapp {
        font-size: 18px;
    }

    .footer {
        font-size: 11px;
        margin-top: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 15px 12px;
        gap: 8px;
    }

    .mascote-wrap {
        width: 110px;
        height: 110px;
        margin-bottom: 8px;
    }

    .titulo {
        font-size: 38px;
        letter-spacing: 0px;
    }

    .subtitulo {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .descricao {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .botao-whatsapp {
        padding: 14px 30px;
        font-size: 13px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .vagas {
        margin: 8px 0 15px 0;
        font-size: 13px;
    }

    .cards-container {
        gap: 10px;
        margin-bottom: 12px;
    }

    .card {
        padding: 15px 20px;
        min-width: calc(33.333% - 7px);
    }

    .card-numero {
        font-size: 24px;
    }

    .card-texto {
        font-size: 11px;
    }

    .icon-whatsapp {
        font-size: 16px;
    }

    .footer {
        font-size: 10px;
        margin-top: 8px;
        padding-top: 8px;
    }
}
