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

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    margin: 0;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* LADO ESQUERDO */
.lado-esquerdo {
    flex: 1;
    background-color: #174799;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 3rem;
}

.logo {
    width: 300px;
    height: auto;
    max-width: 100%;
    margin-bottom: 2rem;
}

.lado-esquerdo h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lado-esquerdo p {
    font-size: 1.1rem;
    max-width: 400px;
    opacity: 0.9;
}

/* LADO DIREITO */
.lado-direito {
    flex: 1;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icone-circulo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background-color: #174799;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
}

.info-texto h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.info-texto p {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .lado-esquerdo,
    .lado-direito {
        padding: 3rem 2rem;
    }

    .logo {
        width: 200px;
    }
}

/* CNPJ */
.cnpj-info {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 10;
}

@media (max-width: 768px) {
    .cnpj-info {
        font-size: 0.65rem;
        padding: 0 1rem;
    }
}
