/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

.construction-container {
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

/* Container da imagem sem sombra */
.image-container {
    padding: 30px 30px 15px 30px;
    background-color: white;
    text-align: center;
}

.header-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Conteúdo textual */
.content {
    padding: 0 30px 30px;
    text-align: center;
}

h1 {
    color: #222;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 0 auto 20px;
    width: 80%;
}

/* Seção de contato com ícones menores */
.contact-section {
    text-align: center;
    margin-top: 15px;
}

.contact-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.outlook {
    background-color: #0078D4;
}

.icon:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 480px) {
    .image-container {
        padding: 20px 20px 10px 20px;
    }
    
    .content {
        padding: 0 20px 20px;
    }
    
    .header-image {
        max-height: 180px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}