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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('manutencao-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 313px;
    height: 55px;
    margin-bottom: 40px;
}

.text-container h1 {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 1.2;
}

.text-container p {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 0px;
    line-height: 1.2;
}

.bold {
    font-weight: 700;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        background-image: url('manutencao-mobile.png');
    }
    
    .logo {
        width: 250px;
        height: auto;
        margin-bottom: 30px;
    }
    
    .text-container h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .text-container p {
        font-size: 32px;
        line-height: 1.2;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        width: 200px;
        margin-bottom: 20px;
    }
    
    .text-container h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .text-container p {
        font-size: 24px;
        line-height: 1.2;
    }
}

