body{
    font-family: 'Segoe UI', sans-serif;
}

.img-header {
    height: auto;
}

.main-title {
    font-size: 3rem;
    text-align: center;
    margin: 90px 0;

    /* 1. Define as cores do gradiente */
    background: linear-gradient(54deg, #4d246a, #2e66c2, #502e81);

    /* 2. Faz o fundo "cortar" no formato das letras */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Torna a cor original do texto transparente para revelar o fundo */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: 200px;
    margin: 0 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reverse {
    flex-direction: row-reverse;
}

.info-item img {
    width: 500px;
    height: auto;
}

.info-details {
    max-width: 600px;
}

.info-details h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;

    /* 1. Define as cores do gradiente */
    background: linear-gradient(90deg, #2e488f, #2816de);

    /* 2. Faz o fundo "cortar" no formato das letras */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Torna a cor original do texto transparente para revelar o fundo */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.info-details p {
    font-size: 1.8rem;
    line-height: 1.5; 
}