body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #25334d;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

/* Título - LXP Solutions */
.title {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.title h1 {
    padding: 20px;
    font-size: 6rem;
    color: #324467;
    font-weight: bold;
    margin: 0;
}

/* Container - Em breve + subtítulo */
.container {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.container .headline {
    display: block;
    font-size: 4rem;
    color: #324467;
    font-weight: bold;
}

.container .subtitle {
    font-size: 1.8rem;
    color: #324467;
    margin: 0;
}

/* Social link */
.social-link {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    box-sizing: border-box;
}

.social-link svg {
    width: 3.5rem;
    transition: opacity 0.3s;
}

.social-link svg:hover {
    opacity: 0.7;
}
