/* ========================
   GIA
   ======================== */
.gia {
    background: #8B0000;
    padding: var(--section-padding);
    min-height: var(--section-min-height);
    display: flex;
    align-items: center;
    position: relative;
}

.gia-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: var(--container-padding);
    z-index: 9;
}

/* Info */
.gia-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    font-family: var(--font-family);
}

.gia-titulo {
    font-size: var(--title-size);
    /* Keeping it large as it was 60px */
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gia-subtitulo {
    font-size: var(--subtitle-size);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
}

.gia-subtitulo strong {
    font-weight: 800;
}

.gia-descricao {
    font-size: var(--text-size);
    line-height: 1.6;
}

.gia-descricao strong {
    font-weight: 700;
}

.gia-cta {
    font-size: var(--text-size);
    line-height: 1.5;
}

.gia-cta a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

/* Imagem */
.gia-imagem {
    flex-shrink: 0;
}

.gia-imagem img {
    width: 400px;
    height: 580px;
}