/* Reset y configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f3fcff;
    color: #333;
}

.container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

/* Lado Izquierdo */
.left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f3fcff;
    text-align: center;
}

.logo {
    width: 180px;
    margin-bottom: 40px;
}

.message {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.message h1 {
    color: #f5a100;
    font-size: 2rem;
}

.icon-worker {
    width: 100%;
    max-width: 450px;
}

/* Botón */
.button {
    padding: 12px 25px;
    background-color: #2f6ce5;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #1e4cb8;
}

/* Lado Derecho */
.right {
    flex: 1;
    background: url('../images/imagen-website-en-construccion.png') no-repeat center;
    background-size: cover;
    color: white;
    padding: 140px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-content {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffc107;
}

.subtitle {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

/* Imágenes decorativas */
.construction-scene {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ladder,
.computer,
.icon-worker-right,
.barricade {
    max-width: 100px;
    height: auto;
}

.rrss{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        min-height: 85vh;
    }

    .left,
    .right {
        width: 100%;
        padding: 30px 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .message h1 {
        font-size: 1.5rem;
    }

    .right {
        min-height: 375px;
    }

}
