diff --git a/exercicio-extra/mundo-gelado/index.html b/exercicio-extra/mundo-gelado/index.html
index e7fe2c0..a61c5ee 100644
--- a/exercicio-extra/mundo-gelado/index.html
+++ b/exercicio-extra/mundo-gelado/index.html
@@ -31,7 +31,8 @@
-
+
+
Mundo gelado
A agência de viagens que te leva aos lugares mais congelantes do planeta.
Quero saber mais
diff --git a/graziele-ribeiro/mundo-gelado/.vscode/settings.json b/graziele-ribeiro/mundo-gelado/.vscode/settings.json
new file mode 100644
index 0000000..6f3a291
--- /dev/null
+++ b/graziele-ribeiro/mundo-gelado/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "liveServer.settings.port": 5501
+}
\ No newline at end of file
diff --git a/graziele-ribeiro/mundo-gelado/css/style.css b/graziele-ribeiro/mundo-gelado/css/style.css
new file mode 100644
index 0000000..c463606
--- /dev/null
+++ b/graziele-ribeiro/mundo-gelado/css/style.css
@@ -0,0 +1,268 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 18px;
+ font-family: 'nunito', sans-serif;
+}
+
+body {
+ min-width: 100%;
+ height: 100%;
+}
+
+ul menu {
+ top: 2rem;
+ position: absolute;
+ width: 100%;
+ right: auto;
+}
+
+ul {
+ list-style-type: none;
+}
+
+nav {
+ background-color: rgba(16, 16, 16, .8);
+ width: 360px;
+ height: 100%;
+ position: absolute;
+ right: -360px;
+ transition: all .5s;
+}
+
+a {
+ text-decoration: none;
+ display: block;
+ padding: 0.5rem 2rem;
+ color: white;
+ margin-top: 4rem;
+}
+
+a:hover, .banner__button:hover {
+ background: #36b0e0;
+ color: black;
+ padding: 1rem;
+ cursor: pointer;
+ transition: 1s ease all;
+}
+
+input[type="checkbox"] {
+ display: none;
+}
+
+input[type="checkbox"]:checked~nav {
+ transform: translateX(-360px);
+}
+
+label {
+ padding: 1rem;
+ position: absolute;
+ z-index: 1;
+ background-color: white;
+ width: 100%;
+ right: 0px;
+}
+
+.nav__mobile {
+ float: right;
+}
+
+.header-content {
+ height: 100%;
+ width: 100%;
+ background: url('../img/foto-banner.jpg') no-repeat;
+ background-position: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+}
+
+.banner__title {
+ font-size: 3rem;
+ margin-bottom: 0.5rem;
+ color: aliceblue;
+ font-family: 'nunito';
+ margin-top: 6rem;
+ letter-spacing: 0.7rem;
+}
+
+.banner__subtitle {
+ font-size: 1rem;
+ color: aliceblue;
+ margin-bottom: 0.6rem;
+ font-weight: 400;
+}
+
+.banner__button {
+ padding: 0.6rem;
+ background-color: #829dad;
+ border-radius: 0.2rem;
+ font-size: 0.8rem;
+ text-decoration: none;
+ color: aliceblue;
+ margin-bottom: 2rem;
+ margin-top: 0;
+}
+
+.about {
+ background-color: rgb(59, 59, 59);
+ color: white;
+ padding: 1%;
+}
+
+h2.about__title {
+ font-size: 1.2rem;
+ padding: 1.8rem;
+ text-align: center;
+}
+
+p {
+ font-size: 0.8rem;
+ text-align: center;
+ margin: 0 2.3rem 2rem 2.3rem;
+ line-height: 1.2rem;
+}
+
+.destination--siberia__img {
+ width: 93%;
+ margin: 2.5rem 0.9rem 0.2rem;
+}
+
+.destination__text h3, h4 {
+ text-align: center;
+}
+
+.destination__text p {
+ font-size: 0.75rem;
+ padding-bottom: 0.8rem;
+}
+
+.destination--groenlandia__img, .destination--antartida__img {
+ width: 100%;
+}
+
+.description--groenlandia, .description--antartida {
+ color: white;
+ margin: 0 0.9rem 0.2rem;
+}
+
+.destination--groenlandia, .destination--antartida {
+ background-color: #161616;
+ margin: 0 0.9rem 0.2rem;
+}
+
+.destination__title {
+ margin-top: 2rem;
+}
+
+.destination__title__antartida {
+ padding-top: 2rem;
+}
+
+.destination_paragraph--groenlandia {
+ padding: 2rem 0;
+ opacity: 0.5;
+}
+
+.destination_paragraph--antartida {
+ padding: 1rem 0;
+ opacity: 0.5;
+}
+
+.footer {
+ background-color: #161616;
+ margin-top: 4rem;
+}
+
+.footer p, small {
+ text-decoration: none;
+ opacity: 0.5;
+ color: white;
+ font-size: 0.7rem;
+ display: flex;
+ justify-content: center;
+ padding: 2rem;
+ margin: 0;
+}
+
+.footer ul {
+ display: flex;
+ flex-direction: row;
+ list-style: none;
+ justify-content: center;
+}
+
+a.footer__social {
+ margin: 0rem 1rem;
+ padding: 0rem;
+}
+
+/*Responsividade*/
+
+@media (min-width:992px) {
+ label {
+ display: none;
+ }
+ nav {
+ background-color: #a0bed0;
+ height: 50px;
+ position: static;
+ display: flex;
+ align-items: center;
+ justify-content: right;
+ padding-right: 8rem;
+ color: aliceblue;
+ flex-grow: 1;
+ z-index: 2;
+ width: 100%;
+ }
+ ul {
+ display: flex;
+ justify-content: center;
+ align-content: space-between;
+ flex-direction: row;
+ }
+ a {
+ margin: 0px 10px;
+ }
+ .header-content {
+ background-size: cover;
+ }
+ #destinos {
+ display: flex;
+ align-items: center;
+ flex-direction: column;
+ }
+ .container {
+ width: 850px;
+ /*align-content: center;
+ display: flex; */
+ }
+ .destination--siberia {
+ display: flex;
+ align-items: center;
+ margin-bottom: 2.6rem;
+ }
+ .destination--siberia__img {
+ width: 70%;
+ }
+ .destination--groenlandia, .destination--antartida {
+ display: flex;
+ margin-bottom: 0px;
+ }
+ .destination--groenlandia__wrapper-img {
+ flex: 1;
+ }
+ .description--groenlandia {
+ flex: 1;
+ }
+ .destination--antartida {
+ flex: 1;
+ }
+ .destination__text h3 {
+ text-align: left;
+ }
+}
\ No newline at end of file
diff --git a/graziele-ribeiro/mundo-gelado/img/antartida-1.jpg b/graziele-ribeiro/mundo-gelado/img/antartida-1.jpg
new file mode 100644
index 0000000..e2d1e42
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/antartida-1.jpg differ
diff --git a/graziele-ribeiro/mundo-gelado/img/facebook.png b/graziele-ribeiro/mundo-gelado/img/facebook.png
new file mode 100644
index 0000000..bf8011c
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/facebook.png differ
diff --git a/graziele-ribeiro/mundo-gelado/img/foto-banner.jpg b/graziele-ribeiro/mundo-gelado/img/foto-banner.jpg
new file mode 100644
index 0000000..b0c1b8c
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/foto-banner.jpg differ
diff --git a/graziele-ribeiro/mundo-gelado/img/groenlandia-1.jpg b/graziele-ribeiro/mundo-gelado/img/groenlandia-1.jpg
new file mode 100644
index 0000000..10e59a5
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/groenlandia-1.jpg differ
diff --git a/graziele-ribeiro/mundo-gelado/img/menu-hamburger.png b/graziele-ribeiro/mundo-gelado/img/menu-hamburger.png
new file mode 100644
index 0000000..d139fbc
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/menu-hamburger.png differ
diff --git a/graziele-ribeiro/mundo-gelado/img/siberia-1.jpg b/graziele-ribeiro/mundo-gelado/img/siberia-1.jpg
new file mode 100644
index 0000000..ca16af0
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/siberia-1.jpg differ
diff --git a/graziele-ribeiro/mundo-gelado/img/twitter.png b/graziele-ribeiro/mundo-gelado/img/twitter.png
new file mode 100644
index 0000000..920c53d
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/twitter.png differ
diff --git a/graziele-ribeiro/mundo-gelado/img/youtube.png b/graziele-ribeiro/mundo-gelado/img/youtube.png
new file mode 100644
index 0000000..f701f86
Binary files /dev/null and b/graziele-ribeiro/mundo-gelado/img/youtube.png differ
diff --git a/graziele-ribeiro/mundo-gelado/index.html b/graziele-ribeiro/mundo-gelado/index.html
new file mode 100644
index 0000000..2f1248e
--- /dev/null
+++ b/graziele-ribeiro/mundo-gelado/index.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ Agência Mundo Gelado
+
+
+
+
+
+ A agência Mundo gelado
+ Nosso diferencial é te levar para conhecer as mais lindas e geladas paisagens no nosso planeta, com
+ conforto e segurança.
+ Nossos pacotes são completos e oferecem uma experiência inesquecível para você. Veja abaixo nossos
+ destinos disponíveis, e se tiver alguma dúvida ou sugestão,
+ entre em contato com a gente.
+
+
+
+
+
+
+
+
+
+
Sibéria
+
O clima varia entre o clima polar e o clima continental. Na Sibéria situa-se o local habitado
+ mais frio do mundo, a aldeia de Oymyakon.
+
+
+
+
+
+
+
+
+
Groenlândia
+
A Groenlândia é a maior ilha do mundo e tem mais
+ de 44 000 km de linha de costa. A população é escassa, confinada a pequenos povoados na
+ costa. A ilha tem a segunda maior reserva de gelo do mundo, apenas ultrapassada pela
+ Antártida.
+
+
+
+
+
+
Antártida
+
É o continente mais frio, mais seco, com a maior
+ média de altitude e de maior índice de ventos fortes do planeta.[1] A temperatura mais baixa
+ da Terra (-89,2 °C) foi registrada na Antártica, sendo a temperatura média na costa, durante
+ o verão, de -10 °C; no interior do continente, é de -40 °C.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/graziele-ribeiro/super-aluna/css/style.css b/graziele-ribeiro/super-aluna/css/style.css
new file mode 100644
index 0000000..fd4591a
--- /dev/null
+++ b/graziele-ribeiro/super-aluna/css/style.css
@@ -0,0 +1,402 @@
+@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Montserrat:wght@200;400&display=swap');
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-size: 16px;
+ font-family: 'Montserrat', sans-serif;
+}
+
+header {
+ width: 100%;
+ height: 80vh;
+ background: url(./../img/background.jpg) no-repeat;
+ background-size: cover;
+}
+
+.menu {
+ width: 100%;
+ background-color: #1b1041;
+ display: flex;
+ justify-content: space-between;
+ height: 60px;
+ align-items: center;
+ padding: 0 20px;
+ position: fixed;
+ z-index: 1;
+}
+
+.banner {
+ height: 80%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}
+
+.menu__logo {
+ color: #ffffff;
+ text-decoration: none;
+ font-size: 30px;
+}
+
+.menu-navegacao {
+ display: flex;
+ list-style: none;
+}
+
+.menu-navegacao__link {
+ color: #ffffff;
+ text-decoration: none;
+ font-size: 18px;
+ padding: 10px;
+ transition: 0.5s all;
+ border-radius: 10px;
+}
+
+.menu-navegacao__link:hover {
+ color: #a36f9c;
+}
+
+.banner__titulo {
+ color: #ffffff;
+ font-size: 75px;
+ margin-bottom: 15px;
+ font-family: 'Dancing Script', cursive;
+}
+
+.banner__subtitulo {
+ color: #ffffff;
+ font-size: 32px;
+ font-family: 'Montserrat', sans-serif
+}
+
+body {
+ background: linear-gradient(to top, hsl(326, 80%, 90%), #ffe2f1);
+}
+
+main {
+ width: 90%;
+ margin: 3% 5%;
+ border-radius: 10px;
+ box-shadow: 0px 0px 10px #cccccc;
+ background: #ffffff;
+}
+
+.card-introducao, .container-trajetoria, .card-gostos {
+ padding: 2%;
+ font-family: 18px;
+ display: flex;
+ flex-direction: column;
+}
+
+.card-introducao__titulo {
+ color: #1b1041;
+ font-size: 32px;
+ margin-bottom: 40px;
+}
+
+.container-texto {
+ display: flex;
+ align-items: center;
+}
+
+.container-texto__paragrafos {
+ width: 70%;
+ margin-right: 10%;
+}
+
+.container-texto__paragrafos p, .container-trajetoria__paragrafo p {
+ color: black;
+ font-size: 20px;
+ margin-bottom: 17px;
+ text-align: justify;
+ line-height: 40px;
+}
+
+.container-texto__imagem {
+ width: 20%;
+}
+
+.container-trajetoria__titulo {
+ color: #1b1041;
+ font-size: 32px;
+ margin-bottom: 40px
+}
+
+.card-gostos__titulo {
+ font-size: 32px;
+ color: #1b1041;
+ margin-bottom: 30px;
+}
+
+.container-listas {
+ display: flex;
+ justify-content: space-between;
+ flex-direction: wrap;
+}
+
+.lista {
+ background-color: #ffe2f1;
+ border-radius: 10px;
+ padding: 30px;
+ transition: 0.5s all;
+ box-shadow: 5px 5px 9px #cccccc;
+ color: #1b1041;
+ margin-right: 2rem;
+}
+
+.lista:hover {
+ transform: scale(1.1);
+}
+
+.lista h3 {
+ font-size: 17px;
+ text-align: center;
+ margin-bottom: 20px;
+}
+
+.lista__item li {
+ margin-bottom: 10px;
+ list-style: none;
+}
+
+.lista__item li::before {
+ content: "❤";
+ margin-right: 10px;
+}
+
+footer {
+ text-align: center;
+ padding: 20px;
+ background-color: #1b1041;
+ color: #ffffff;
+}
+
+.campo-form {
+ display: flex;
+ flex-direction: column;
+}
+
+form {
+ width: 70%;
+ border: 2px solid #502f4c;
+ padding: 25px;
+ border-radius: 10px;
+}
+
+label, input {
+ margin-bottom: 15px;
+}
+
+fieldset {
+ border: 2px solid #502f4c;
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+
+.form-botao {
+ display: flex;
+ justify-content: center;
+}
+
+.form-botao input {
+ border: 2px solid #ffffff;
+ background-color: #1b1041;
+ color: #ffffff;
+ border-radius: 10px;
+ padding: 10px;
+}
+
+.form-botao input:hover {
+ background: linear-gradient(#4c2eb8, #1b1041);
+}
+
+.card-fale-conosco {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ margin-bottom: 20px;
+}
+
+.card-fale-conosco h2 {
+ font-size: 25px;
+ color: #1b1041;
+ margin: 40px;
+}
+
+/*Mobile Query*/
+
+@media (min-width:320px) and (max-width:480px) {
+ .banner__titulo {
+ text-align: center;
+ font-size: 3rem;
+ margin-top: 10rem;
+ }
+ .container-texto__imagem {
+ display: none;
+ }
+ .container-texto {
+ width: 100%;
+ justify-content: center;
+ }
+ .banner__subtitulo {
+ font-size: 1rem;
+ text-align: center;
+ padding: 0.7rem;
+ }
+ ul.menu-navegacao {
+ width: 100%;
+ display: flex;
+ justify-content: space-between;
+ }
+ .menu-navegacao__link {
+ font-size: 0.66rem;
+ }
+ .menu__logo {
+ font-size: 1rem;
+ margin-right: 1.2rem;
+ }
+ .card-introducao__titulo, .container-trajetoria__titulo, .card-gostos__titulo {
+ font-size: 1.2rem;
+ text-align: center;
+ margin-top: 2rem;
+ width: 100%;
+ }
+ .container-texto__paragrafos p {
+ font-size: 0.8rem;
+ text-align: justify;
+ width: 100%;
+ line-height: 1.4rem;
+ margin-left: 1rem;
+ }
+ .container-trajetoria__paragrafo p {
+ font-size: 0.8rem;
+ text-align: justify;
+ line-height: 1.4rem;
+ margin: 0 2rem;
+ }
+ .container-listas {
+ display: flex;
+ flex-wrap: wrap;
+ }
+ .lista__item li, .lista h3 {
+ font-size: 0.9rem;
+ }
+ .lista {
+ margin: 0 1rem 2rem 1rem;
+ }
+ legend, fieldset, label, input, .form-botao {
+ font-size: 0.8rem;
+ }
+ #nome, #idade, #comidas, #telefone, #email, #mensagem, .social {
+ font-size: 0.7rem;
+ }
+ legend {
+ margin-bottom: 0.8rem;
+ }
+ .form-botao {
+ margin-top: 1.2rem;
+ }
+ footer p {
+ font-size: 0.8rem;
+ }
+}
+
+/*Tablet Query*/
+
+@media (min-width:481px) and (max-width:800px) {
+ .banner__titulo {
+ text-align: center;
+ font-size: 3rem;
+ margin-top: 10rem;
+ }
+ .container-texto__imagem {
+ display: none;
+ }
+ .container-texto {
+ width: 100%;
+ justify-content: space-evenly;
+ }
+ .banner__subtitulo {
+ font-size: 1.6rem;
+ text-align: center;
+ padding: 0.7rem;
+ }
+ ul.menu-navegacao {
+ width: 100%;
+ display: flex;
+ justify-content: right;
+ }
+ .menu-navegacao__link {
+ font-size: 1.2rem;
+ }
+ .menu__logo {
+ font-size: 1rem;
+ margin-right: 1.2rem;
+ }
+ .card-introducao__titulo, .container-trajetoria__titulo, .card-gostos__titulo {
+ font-size: 1.2rem;
+ text-align: center;
+ margin-top: 2rem;
+ width: 100%;
+ }
+ .container-texto__paragrafos p {
+ font-size: 1rem;
+ text-align: justify;
+ width: 100%;
+ line-height: 1.4rem;
+ margin-left: 1.5rem;
+ }
+ .container-trajetoria__paragrafo p {
+ font-size: 1rem;
+ text-align: justify;
+ line-height: 1.4rem;
+ margin: 0 2rem;
+ }
+ .container-listas {
+ display: flex;
+ flex-wrap: wrap;
+ width: 70%;
+ margin-left: 6rem;
+ }
+ .lista__item li, .lista h3 {
+ font-size: 0.9rem;
+ }
+ .lista {
+ margin: 0 1rem 2rem 1rem;
+ }
+}
+
+/*tablet query*/
+
+@media (min-width:881px) and (max-width:991px) {
+ .banner__titulo {
+ text-align: center;
+ font-size: 3rem;
+ margin-top: 10rem;
+ }
+ .container-texto__imagem {
+ display: flex;
+ }
+ .container-texto {
+ width: 100%;
+ justify-content: space-evenly;
+ }
+ .banner__subtitulo {
+ font-size: 1.6rem;
+ text-align: center;
+ padding: 0.7rem;
+ }
+ .container-listas {
+ display: flex;
+ width: 100%;
+ }
+ .lista__item li, .lista h3 {
+ font-size: 0.9rem;
+ }
+ .lista {
+ margin: 0 1rem 2rem 1rem;
+ }
+}
\ No newline at end of file
diff --git a/graziele-ribeiro/super-aluna/img/background.jpg b/graziele-ribeiro/super-aluna/img/background.jpg
new file mode 100644
index 0000000..40f745a
Binary files /dev/null and b/graziele-ribeiro/super-aluna/img/background.jpg differ
diff --git a/graziele-ribeiro/super-aluna/img/foto.PNG b/graziele-ribeiro/super-aluna/img/foto.PNG
new file mode 100644
index 0000000..88d0a4e
Binary files /dev/null and b/graziele-ribeiro/super-aluna/img/foto.PNG differ
diff --git a/graziele-ribeiro/super-aluna/img/menina-globo.png b/graziele-ribeiro/super-aluna/img/menina-globo.png
new file mode 100644
index 0000000..7aca7ee
Binary files /dev/null and b/graziele-ribeiro/super-aluna/img/menina-globo.png differ
diff --git a/graziele-ribeiro/super-aluna/img/planet.png b/graziele-ribeiro/super-aluna/img/planet.png
new file mode 100644
index 0000000..d4a0383
Binary files /dev/null and b/graziele-ribeiro/super-aluna/img/planet.png differ
diff --git a/graziele-ribeiro/super-aluna/index.html b/graziele-ribeiro/super-aluna/index.html
new file mode 100644
index 0000000..3708db0
--- /dev/null
+++ b/graziele-ribeiro/super-aluna/index.html
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+ Super Aluna {Reprograma}
+
+
+
+
+
+
+
+
+
+ Um pouco sobre o meu mundinho...
+
+
+
Olá, meu nome é Graziele, nativa da engenharia química descobrindo uma nova profissão na área de
+ tecnologia, desenvolvedora front-end em formação! Nordestina com orgulho, sou curiosa,
+ determinada e estou sempre em busca de conhecimento. Amo café, plantinhas, bordar, desenhar e
+ aprender idiomas.
+
Em 2021, dei meu primeiro passo e comecei a estudar programação através de cursos onlines
+ gratuitos, estou aprendendo cada vez mais sobre esse mundo incrível de desenvolvimento e já já
+ estarei oficialmente no mercado tech!
+ Nós mulheres podemos tudo e eu acredito que the future is female coders.
+
+
+
+
+
+ Deixa eu te contar um pouco sobre a minha trajetória nessa vida...
+
+
+
Sou recém formada e ao longos dos últimos me dediquei aos estudos voltados a área de meio ambiente e
+ energia, desenvolvi diversas pesquisas cientificas na área de biocombustíveis e biopolímeros, pois
+ acredito em um mundo sustentável.
+
Mesmo atuando boa parte dos anos em pesquisas e análises em laboratório, sempre fui muito curiosa e
+ me interessei por diversas áreas também, aprendi francês por conta própria para participar de um
+ processo seletivo com bolsa de estudos na França, deu certo! Tive a oportunidade de estudar
+ Engenharia de Processos e Meio Ambiente no INSA-Toulouse, também estagiei na área e viajei 10
+ países. Em seguida, aprendi inglês, quando voltei para o Brasil, logo começou a pandemia e comecei a
+ dar aulas particulares de francês e inglês. Em paralelo, conheci a área de densenvolvimento web e
+ aqui estou eu desenvolvendo websites!
+
+
+
+
+
+ Veja o que eu mais gosto nessa vida...
+
+
+
Amo viajar, e tenho uma listinha de quais países ainda quero conhecer:
+
+ China
+ Coréia do Sul
+ Japão
+ Egito
+ Croácia
+
+
+
+
Amo ouvir música. Confira as minhas musicas favoritas:
+
+ The Scientist - Coldplay
+ Birds - Imagine Dragons
+ Mic Drop - BTS
+ Amour Plastique - VIDEOCLUB
+ Scandal of Grace - Hillsong
+
+
+
+
+
Amo dorama (K-drama), e esses são os meus doramas preferidos:
+
+ Crash landing on you
+ Something in the rain
+ Startup
+ It's ok not to be ok
+ Navillera
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file