body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(0,0,0,0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #fff8);
}

h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #b0e0ff;
}

.contact h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #7ed6df;
}

.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact li {
    margin-bottom: 8px;
    font-size: 1em;
}

.contact a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 500px) {
    .container {
        padding: 20px 10px;
        max-width: 95vw;
    }
    .logo {
        width: 120px;
    }
    h1 {
        font-size: 1.3em;
    }
}

/* Serviços */
.services {
    margin: 30px 0 25px 0;
    text-align: left;
}
.services h2 {
    color: #00aaff;
    font-size: 1.2em;
    margin-bottom: 12px;
}
.services ul {
    list-style: none;
    padding: 0;
}
.services li {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px 15px;
    font-size: 1em;
    box-shadow: 0 2px 8px 0 rgba(31,38,135,0.07);
}
.services .desc {
    color: #b0e0ff;
    font-size: 0.98em;
}
