@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap');

:root {
    --font-titles: 'Geologica', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --primary-color: #c520de;
    --secondary-color: #666666;
    --ternary-color: #999999;
    --default-color: #000000;
    --background-color: #f1f1f1;
    --background-page-color: #ffffff;
    --text-default-color: #000000;
    --border-width: 1px;
    --border-style: solid;
    --border-color: #999999;
    --background-color-reverse: #1a1f24;
    --text-color1-reverse: #fff;
    --text-color2-reverse: #95a1ac;
}

/* CSS code for responsive design */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    font-family: var(--font-body);
    padding: 0;
    margin: 0;
    color: var(--text-default-color);
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    height: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.header ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: right;
}

.header ul li {
    list-style-type: none;
    margin: 10px 0; 
}

.header ul li:nth-child(odd) {
    color: var(--primary-color);
}

.header a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary-color);
}

.page {
    margin: 0 0 50px 0;
    align-self: center;
    background-color: var(--background-page-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 0px 0px 26px -7px rgba(0,0,0,0.54);
    -moz-box-shadow: 0px 0px 26px -7px rgba(0,0,0,0.54);
    box-shadow: 0px 0px 26px -7px rgba(0,0,0,0.54);
}

h1 {
    font-family: var(--font-titles);
    color: var(--primary-color);
    font-size: 42px;
    font-weight: bold;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 20px 0;
    padding: 0;
}

h2 {
    font-family: var(--font-titles);
    color: var(--text-default-color);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 32px;
    margin: 20px 0;
    padding: 0;
}

p {
    color: var(--text-default-color);
    font-family: var(--font-body);
    font-size: 16px;
    margin: 10px 0;
    padding: 0;
}

a {
    color: #c520de;
    text-decoration: none;
}

ul li:nth-child(odd) {
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
}

img.rounded {
    border-radius: 100%;
}

button, a.button {
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: center;
}

button.inverse, a.button-inverse {
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: center;
}

.cta {
    padding: 20px 0;
}

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

.container .column {
    padding: 20px;
}

.content-reverse {
    background-color: var(--background-color-reverse);
}

.content-reverse * {
    color: var(--text-color1-reverse);
}

.content-top {
    background-image: url('./images/pictures/teacher1.webp'), url('./images/pictures/teacher1.jpg');
    background-color: var(--background-color-reverse);
    background-blend-mode: luminosity;
}

.content-o-que-e {
    background-image: url('./images/pictures/foto_01.webp'), url('./images/pictures/foto_01.jpg');
    background-color: var(--background-color-reverse);
    background-blend-mode: luminosity;
}

.content-ementa {
    background-image: url('./images/pictures/foto_02.webp'), url('./images/pictures/foto_02.jpg');
    background-color: var(--background-color-reverse);
    background-blend-mode: luminosity;
}

.content-professor {
    background-image: url('./images/pictures/teacher3.webp'), url('./images/pictures/teacher3.jpg');
    background-color: var(--background-color-reverse);
    background-blend-mode: luminosity;
}

.content-publico {
    text-align: center;
}

.content-investimento {
    background-image: url('./images/pictures/foto_02.webp'), url('./images/pictures/foto_02.jpg');
    background-color: var(--background-color-reverse);
    background-blend-mode: luminosity;
}

.bg-image-fixed {
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    min-height: 100px;
}

.price .old_price {
    font-family: var(--font-titles);
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: line-through;
}

.price .new_price {
    font-family: var(--font-titles);
    font-size: 52px;
    color: var(--price-color);
    font-weight: bold;
}

.price .symbol {
    opacity: 0.5;
}

@media (min-width: 768px) {

    .page {
        width: 768px;
    }

    .container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .container .column {
        flex: 1 0 0;
        justify-content: space-between;
        padding: 25px 40px;
    }

    .full-width {
        width: initial;
    }

}

@media (min-width: 1200px) {

    .page {
        width: 1200px;
    }

}








.gradient-text {
    /* Fallback: Set a background color. */
    background-color: #c520de;

    /* Create the gradient. */
    background-image: linear-gradient(45deg, #c520de, #007ce9);

    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;

    /* Use the text as a mask for the background. */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}