:root {
    --primary-color: #0056b3; /* Azul escuro/profissional */
    --secondary-color: #ffffff; /* Branco */
    --accent-color: #e6f0fa; /* Azul bem claro para fundo */
    --text-color: #333333;
    --text-light: #666666;
    --whatsapp-color: #25D366;
    --hover-color: #004494;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--accent-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 1000px; /* Aumentado para acomodar 2 colunas */
    width: 100%;
}

.main-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-column {
    flex: 1;
    text-align: center; /* Mantendo centralizado para ficar bonito */
}

.construction-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Adicionar uma sombra suave na imagem pode ficar legal */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

header {
    margin-bottom: 20px;
}

h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 150px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn.whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
}

.btn.whatsapp:hover {
    background-color: #1ebc57;
}

.btn.email {
    background-color: var(--primary-color);
    color: white;
}

.btn.email:hover {
    background-color: var(--hover-color);
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column; /* Empilha as colunas em telas menores */
        gap: 30px;
    }

    .image-column {
        width: 100%;
        max-width: 400px; /* Limita o tamanho da imagem no mobile */
    }

    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }
}
