:root {
    --color-primary: #071D41;
    --color-secondary: #ffb411;

    --color-detail-1: #278cff;
    --color-detail-2: #ffffff;

    --color-background-1: #ffffff;
    --color-background-2: #141000;

    --color-font-1: #141000;
    --color-font-2: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
}

/* ===== LADO ESQUERDO ===== */

.left {
    width: 45%;
    background: var(--color-primary);
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    /* ADICIONE */
    overflow: hidden;
}

.left::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;

    background-image: url("./img/logo.png");
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0.05;
    transform: rotate(-10deg);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 500px;

    display: flex;
    /* ADICIONE */
    flex-direction: column;
    /* ADICIONE */
    align-items: center;
    /* ADICIONE */
    justify-content: center;
    /* ADICIONE */
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

.title {
    font-size:3rem;
    color: var(--color-font-2);
    line-height: 1;
    font-weight: 700;
}

.construction {
    margin: 35px 0 25px;

    display: flex;
    align-items: center;
    gap: 20px;
}

.construction::before,
.construction::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 10px;
}

.construction h2 {
    color: var(--color-secondary);
    letter-spacing: 4px;
    font-size: 1.5rem;
    white-space: nowrap;
}

.description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 520px;
}

.highlight {
    color: var(--color-detail-1);
    font-size: 2rem;
    font-weight: 600;
}

/* ===== LADO DIREITO ===== */

.right {
    width: 65%;
    background-image:
        linear-gradient(rgba(7, 29, 65, 0.55),
            rgba(7, 29, 65, 0.55)),
        url("./img/plano_fundo-data.jpg");

    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    text-align: center;
    /* ADICIONE */
}

.right::before {
    content: "";
    position: absolute;
    left: -120px;
    width: 220px;
    height: 120%;
    background: var(--color-primary);
    transform: rotate(12deg);
}

.launch-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;

    display: flex;
    /* ADICIONE */
    flex-direction: column;
    /* ADICIONE */
    justify-content: center;
    /* ADICIONE */
    align-items: center;
    /* ADICIONE */
}

.launch-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.3rem;
    font-weight: 300;
}

.launch-title::before,
.launch-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: white;
    opacity: 0.8;
}

.date {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date-item {
    text-align: center;
}

.date-item h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
}

.date-item span {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.separator {
    font-size: 6rem;
    color: var(--color-secondary);
    font-weight: 300;
}

/* ===== RESPONSIVO ===== */

@media(max-width: 1200px) {

    .title {
        font-size: 4.5rem;
    }

    .date-item h1 {
        font-size: 4rem;
    }

    .separator {
        font-size: 4rem;
    }

}

@media(max-width: 950px) {

    body {
        overflow-y: auto;
    }

    .container {
        flex-direction: column;
        height: auto;
    }

    .left,
    .right {
        width: 100%;
        min-height: 100vh;
    }

    .right::before {
        display: none;
    }

    .title {
        font-size: 4rem;
    }

    .construction {
        flex-direction: column;
    }

    .construction::before,
    .construction::after {
        width: 120px;
    }

    .date {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media(max-width: 600px) {

    .left,
    .right {
        padding: 30px;
    }

    .logo {
        width: 110px;
    }

    .title {
        font-size: 3rem;
    }

    .construction h2 {
        font-size: 1rem;
        text-align: center;
    }

    .description {
        font-size: 1rem;
    }

    .highlight {
        font-size: 1.4rem;
    }

    .launch-title {
        font-size: 1rem;
    }

    .date-item h1 {
        font-size: 2.5rem;
    }

    .separator {
        font-size: 3rem;
    }

}