/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Estilização do container principal */
.construction-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center/cover; /* Imagem de fundo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparência para destacar o texto */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcc00; /* Destaque no título */
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #fff;
}

/* Botão do WhatsApp */
.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
