@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Raleway:wght@100;200;300;400;500;700;800;900&display=swap');

* {
    font-family: 'Raleway', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0c0d20;
    display: flex;
    flex-direction: column; 
}

header {
    background: linear-gradient(180deg, rgba(11, 11, 16, 0.6) 0%, rgba(49, 168, 221, 0.00) 100%);
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #33A8DB;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);    
}

.logo {
    margin-top: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.elipse {
    background: rgba(120, 118, 118, 0.4);
    text-align: center;
    width: 230px;
    height: 230px;
    border-radius: 230px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.banner-content {
    background-image: url('../assets/images/banner.png');
    background-size: cover;
    background-position: center; 
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.banner-content h1 {
    font-size: 40px;
    background: linear-gradient(90deg, #33A8DB 0%, #1472B7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-align: center;
}

.banner-content p {
    color: white;
    display: inline-block;
    width: 75%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 0px;
}

button {
    border: 2px solid #3BA1CD;
    display: flex;
    width: 326px;
    padding: 19px;
    justify-content: center;
    align-items: center;
    gap: 31px;
    color: #3BA1CD;
    background-color: transparent;
    margin: 20px auto;
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3.36px;
}

#bttn {
    text-decoration: none;
    color: #3BA1CD;
}

.separator {
    border: none;
    border-top: 2px solid #33A8DB;
    margin: 0 0 -1px;
}

#course-content {
    text-align: center;
    margin-bottom: 50px;
}

#course-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #33A8DB;
    line-height: normal;
    letter-spacing: 6.08px;
    padding: 30px;
}

#course-content p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    width: 75%;
    margin: 24px auto;
}

.module-list {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.module {
    display: flex;
    width: 535px;
    padding: 16px 127px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 57px;
    border: 1px solid #33A8DB;
    background: #252525;
    box-shadow: -2px 6px 4px 0px rgba(0, 0, 0, 0.40) inset;
    color: white;
}

.color-module {
    color: #33A8DB;
}

#transform-world {
    background: url('../assets/images/woman-code.png') center/cover no-repeat, #000;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: -10px;
}

#transform-world p {
    color: #FFF;
    text-shadow: 3px 2px 0px #33A8DB;
    font-size: 40px;
    font-weight: 900;
    line-height: normal;
    text-align: left;
    margin-left: 50px; 
    max-width: 50%;
}

#professional-challenges{
    text-align: center;
    padding: 40px;
}

#professional-challenges h2{
    text-align: center;
    color: #33A8DB;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 6.08;
    line-height: normal;
}

#professional-challenges p{
    text-align: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

footer {
    text-align: center;  
    max-width: 100vw;    
    padding: 60px 0px;
    background: linear-gradient(0deg, rgba(255, 217, 0, 0.272) 0%, rgba(132, 132, 132, 0) 90%);     
}

footer p {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

footer p a {
    text-decoration: none;
    color: #33A8DB;
    font-size: 16px;
    font-weight: 700;
}

