body {
    background-color: #eeeeee;
}

/* ======================= HOME PAGE ====================== */
body {
    background-color: white;
    /* Define o fundo padrão como branco */
}

.home-page {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../imagens/background-home-page.png');
    background-size: 80%;
    background-repeat: no-repeat;
    /*Impede que a imagem se repita */

}

.gradient-overlay {
    position: absolute;
    /* Posiciona a div acima da imagem */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #ffffff 100%);
    z-index: 0;
}

.home-page-box {
    display: flex;
    width: 100%;
    max-width: 1600px;

}

.home-page-image {
    display: flex;
    justify-content: center;
    width: 50%;
    z-index: 1;
    margin-top: 50px;
}

.home-page-image img {
    width: 500px;
    z-index: 1;
    animation: balancar 3s infinite;
}

@keyframes balancar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translate(-5px, 10px); 
    }
}

.home-page-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    margin-left: 8%;
    margin-top: 35px;
    gap: 50px;
    z-index: 1;
}

.home-page-text-1 {
    display: flex;
    flex-direction: column;
    color: #053F5C;
    line-height: 1;
}

.home-page-text-1-best {
    font-size: 100px;
    gap: 38px;
    font-weight: bold;

}

.home-page-text-1-coimbra {
    font-size: 55px;
    font-weight: bold;
}

.home-page-text-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-page-text-2-texts {
    margin-bottom: 20px;
    color: #F27F0C;
    font-size: 26px;
    font-weight: bold;
}

.home-page-text-2-button button {
    background-color: var(--color-ocean-deep);
    /* Define o fundo do botão como azul */
    color: white;
    /* Define a cor do texto como branco */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    width: 119px;
    cursor: pointer;
    border: 1px solid var(--color-ocean-deep);
    transition: 0.2s;
}

.home-page-text-2-button button:hover {
    background-color: white;
    color: var(--color-ocean-deep);
  }

.home-page-texts,
.home-page-text-2,
.home-page-text-2-texts,
.home-page-text-2-button button {
    font-family: 'Work Sans', sans-serif;
}

/* ======================= HOME PAGE - 2 ====================== */
.home-page-2 {
    background-image: url('../imagens/home-page-2.png');
    background-color: white;
    background-size: auto;
    background-repeat: no-repeat;
    /*Impede que a imagem se repita */
    background-position: right;
    /* Alinha a imagem à direita */
    padding-top: 150px;
    /* Adiciona uma margem de 20px acima */
    padding-bottom: 150px;
    /* Adiciona uma margem de 20px abaixo */
    display: flex;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
}

.home-page-2-box {
    width: 100%;
    display: flex;
    margin-top: 45px;

}

.home-page-2-image {
    width: 50%;

    display: flex;
    justify-content: center;
}

.home-page-2-image img {
    width: 500px;
}

.home-page-2-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 50%;
    margin-right: 10px;
}

.home-page-2-text-1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 2000;
    font-size: 31px;
}

.home-page-2-text-1 h2 {
    color: black;
    /* Define a cor do texto como preto */
}

.orange-underline {
    position: relative;
}

.orange-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    /* Ajuste a posição do sublinhado conforme necessário */
    left: 5%;
    /* 10% dividido por 2 para reduzir igualmente o tamanho do lado esquerdo e direito */
    right: 5%;
    height: 4.5px;
    /* Espessura do sublinhado */
    background-color: rgb(192, 126, 2);
    /* Cor do sublinhado */
    border-radius: 2px;
    /* Raio das bordas do sublinhado */
}

.home-page-2-text-1 h2 span {
    color: black;
    /* Mantém a cor do texto como preto */
}

.home-page-2-text-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-page-2-button button {
    background-color: #053F5C;
    /* Define o fundo do botão como azul */
    color: white;
    /* Define a cor do texto como branco */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    width: 119px;
    text-align: center;
    /* Centraliza o texto dentro do botão */
}

/* ======================= HOME PAGE - 3 ====================== */

.home-page-3 {
    background-image: url('../imagens/home-page-3.jpg');
    background-repeat: no-repeat;
    /* Impede que a imagem se repita */
    background-position: center;
    /* Alinha a imagem ao centro */
    padding-top: 251px;
    /* Adiciona uma margem de 245px acima */
    padding-bottom: 251px;
    /* Adiciona uma margem de 245px abaixo */
    position: relative;
    /* Necessário para posicionamento absoluto dos filhos */
    overflow: hidden;
    /* Garante que nada saia da caixa */
    font-family: 'Work Sans', sans-serif;
}

.home-page-3::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8%;
    width: 35%;
    /* Ajuste a largura conforme necessário */
    height: 100%;
    background-color: #F7AD19;
    /* Cor do retângulo */
    transform: skewX(-45deg);
    /* Inclinação do retângulo */
    transform-origin: top right;
    z-index: 0;

}

.home-page-3-box {
    position: absolute;
    top: 0;
    right: -8%;
    width: 35%;
    /* Mesma largura que o retângulo */
    height: 100%;
    transform: skewX(-45deg);
    /* Mesma inclinação que o retângulo */
    transform-origin: top right;
    display: flex;
    flex-direction: column;
    /* Organiza os elementos em coluna */
    justify-content: center;
    /* Centraliza os elementos verticalmente */
    align-items: center;
    /* Centraliza os elementos horizontalmente */
    z-index: 2;
    /* Atrás dos textos */
}

.home-page-3-text-1-box {
    transform: skewX(45deg);
    display: flex;
    margin-bottom: 50px;
}

.home-page-3-text-2,
.home-page-3-text-3,
.home-page-3-text-4 {
    z-index: 3;
    /* Mova os textos para frente */
    width: 90%;
    /* Ajuste conforme necessário para responsividade */
    margin: 10px 0;
    /* Margem entre os textos */
    transform: skewX(38deg);
    /* Inverte a inclinação para os textos ficarem horizontais */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.home-page-3-text-1 {
    color: #053F5C;
    font-size: 26px;
}


.home-page-3-text-2-number,
.home-page-3-text-3-number,
.home-page-3-text-4-number {
    font-size: 28px;
}

.home-page-3-text-2-text,
.home-page-3-text-3-text,
.home-page-3-text-4-text {
    font-size: 20px;
}

/* ======================= HOME PAGE - 4 ====================== */

.home-page-4 {
    /* Adiciona uma margem de 245px abaixo */
    background-image: url('../imagens/Tower_of_Universidade_de_Coimbra_\(2\)\ 1.png');
    background-color: white;
    background-size: auto;
    background-repeat: no-repeat;
    /*Impede que a imagem se repita */
    background-position: left center;
    /* Alinha a imagem à esquerda */
    background-position-x: 10%;
    background-position-y: 100%;
    font-family: 'Work Sans', sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-page-4-box {
    display: flex;
}

.home-page-4-text-box-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 17.5px;
    gap: 35px;
}

.home-page-4-text-box-2 button {
    background-color: rgb(5, 63, 92);
    /* Define o fundo do botão como azul */
    color: white;
    /* Define a cor do texto como branco */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    width: 119px;
    text-align: center;
    /* Centraliza o texto dentro do botão */
}

.home-page-4-text-box {
    margin-left: 26%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    /* Borda azul para a caixa de texto */
    width: 54%;
}

.home-page-4-image-box {

    /* Borda vermelha para a caixa de imagem */
    width: 44%;
}

.home-page-4-image-box img {
    width: 450px;
}

/* ======================= HOME PAGE - 5 ====================== */

.home-page-5 {
    background-image: url('../imagens/home-page-5.jpg');
    background-repeat: no-repeat;
    /* Impede que a imagem se repita */
    background-position: center;
    /* Alinha a imagem ao centro */
    padding-top: 180px;
    /* Adiciona uma margem de 245px acima */
    padding-bottom: 180px;
    /* Adiciona uma margem de 245px abaixo */
    position: relative;
    /* Necessário para posicionamento absoluto dos filhos */
    overflow: hidden;
    /* Garante que nada saia da caixa */
    font-family: 'Work Sans', sans-serif;
}

.home-page-5-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 100px;
}

.home-page-5-box p:nth-child(1) {
    color: #F27F0C;
    /* Define a cor desejada */
    font-weight: bold;
    font-size: 50px;
}

.home-page-5-box p:nth-child(2) {
    color: white;
    /* Define a cor desejada */
    font-weight: bold;
    font-size: 50px;
}

.home-page-5-box p:nth-child(3) {
    color: #9FE7F5;
    /* Define a cor desejada */
    font-size: 28px;
}

/* ======================= HOME PAGE - 6 ====================== */
.home-page-6 {
    background-color: white;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: 'Work Sans', sans-serif;
}

.orange-underline {
    position: relative;
    display: inline-block;
}

.orange-underline::after {
    height: 3.5px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-left: 26px;
    margin-right: 26px;
}

.image,
.text {
    width: 50%;
    padding: 20px;
}

.image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text {
    padding: 20px;
}

.text h2 {
    margin-bottom: 20px;
}

.text p {
    margin-bottom: 20px;
}

.text ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.text ul li {
    margin-bottom: 20px;
}

.text a {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(5, 63, 92);
    ;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 26px;
}

.text a:hover {
    background-color: #0056b3;
}

/* ======================= HOME PAGE - 7 ====================== */
.home-page-7 {
    padding-top: 115px;
    /* Adiciona uma margem de 245px acima */
    padding-bottom: 115px;
    /* Adiciona uma margem de 245px abaixo */
    position: relative;
    /* Necessário para posicionamento absoluto dos filhos */
    overflow: hidden;
    /* Garante que nada saia da caixa */
    font-family: 'Work Sans', sans-serif;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.testimonials-container {
    text-align: center;
    width: 80%;
    max-width: 800px;
}

.title h2 {
    font-size: 30.5px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.carousel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.carousel-item {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item button {
    background: none;
    border: 2px solid #00a1e0;
    border-radius: 50%;
    padding: 19px 20px;
    cursor: pointer;
    font-size: 28px;
    color: #429EBD;
}

.carousel-item-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.carousel-item-new {
    border: 5px solid red;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.quote {
    font-size: 20.8px;
    margin-bottom: 38px;
    font-style: italic;
    margin: 0;
}

.author {
    font-size: 20px;
    font-weight: bold;
}

.membership {
    font-size: 17px;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 35px;
}

.indicators .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.indicators .dot.active {
    background-color: #717171;
}