* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.logo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 0;
    border: 8px solid #1a1a1a;
}

.logo-circle img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(255, 193, 7, 0.1);
}

.subtitle {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 600;
    max-width: 500px;
}

.btn-enter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    border: 2px solid transparent;
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border: 2px solid #FFC107;
}

.members {
    font-size: 15px;
    color: #2c3e50;
    margin: 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #d0d0d0;
    width: 100%;
    max-width: 320px;
    font-weight: 600;
}

.vagas-section {
    margin-top: 30px;
}

.vagas-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vagas-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

@media (max-width: 768px) {
    h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 14px;
    }

    .btn-enter {
        padding: 16px 60px;
        font-size: 16px;
    }

    .logo-circle {
        width: 170px;
        height: 170px;
    }
}
