/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --primry-color: #F2F2F2;
    --secondary-color: #e8e8e8 ;

    --primary-bg-color: #0D0D0D;
    --secondary-bg-color: #404040;
    --border-color: #262626;

    --title-color: #404040;
    --secondary-title-color: #F2F2F2 ;
    --link-color: #A6A6A6;

}

body {
    background: var(--secondary-color);
    padding-top: 80px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

button:hover {
    transform: scale(1.05);
    transition: ease-in-out 0.3s;
}

/* HEADER */

header{
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: #1d1d1f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_container{
  display: flex;
  align-items: center;
  gap: 50px;
}

.header_logo{
  display: flex;
  align-items: center;
}

.header_logo img{
  width: 48px;
  height: auto;
  display: block;
}

.menu{
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu a{
  text-decoration: none;
  color: #f5f5f7;
  font-size: 1rem;
  transition: 0.3s;
}

header .menu li a:hover {
    background-color: #3333;
    color: var(--link-color);
    border-bottom: 4px solid white;
    transition: 0.3s all;
}

/* Dark Mode */
#theme-toggle{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: white;
}

#theme-toggle span{
  transition: 0.3s;
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
  background-color: #121212;
  color: white;
}

body.dark header {
  background-color: #1e1e1e;
}

body.dark a {
  color: #4da6ff;
}

body.dark h1,
body.dark h2,
body.dark h3 {
    color: #ddd
}

body.dark .section2 {
    background-color: #262626;
}

body.dark .card {
  background-color: #404040;
}

body.dark .card_p {
    color: #4da6ff;
}

body.dark .section3 h1 {
    color: #121212;
}

body.dark .content_projeto_card {
    background-color: #1e1e1e;
}

body.dark .menu_contato a {
    color: white;
}

body.dark .menu_contato a:hover {
    color: #6366f1;
}

/* MAIN */
h1,h2,h3 {
    font-family: "League Spartan", sans-serif;
    color: var(--title-color);
}

/* SECTION1 */

.section1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 120px 2rem 80px;
}

.content1 {
    margin: 0 auto;
    text-align: left;
}

h1 {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 80px;
}

p {
    font-size: 1.1rem;
    text-align: justify;
}

b {
    font-weight: 400;
}

.menu_social {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 10px;
}

.menu_social a {
    color: var(--secondary-bg-color);
    font-size: 1.35rem;
}

.menu_social a:hover {
    font-size: 1.4rem;
    color: rgba(0, 0, 255, 0.363);
    transition: 0.3s;
}

.content2 {
    text-align: center;
    margin: 3rem auto
}

.content2 h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.2rem;
    max-width: 600px;
}

.icons_img {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.icons_img img {
    width: 70px;
    height: 70px;
}

.content1 button {
    margin-top: 1.5rem;
    background-color: #6366f1;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

/* SECTION2 */

.section2 {
    background: var(--primry-color);
    padding: 2.5rem 1rem;
}

.content3 {
    margin: 0 auto;
    margin-top: 2.5rem;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content_picture {
    margin: 2rem auto;
    padding-top: 2rem;
}

.content_picture img {
    object-fit: cover;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.content_sobre h2 {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.content_sobre p {
    word-spacing: -1px;
}

.location {
    margin-top: 1rem ;
}

.location  .bi {
    color: blue;
}

.botao_sobre {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.botao_sobre .email {
    background-color: #6366f1;
    color: white;
    padding: 14px 26px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.botao_sobre .curriculo {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.botao_sobre .curriculo:hover {
    background-color: #6366f1;
    color: white;
    transition: 0.3s;
}

.content4 {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 40px;
}

.content4 h1{
    font-size: 1.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.content4 .card {
    background-color: white;
    padding: 1.4rem;
    border-left: 4px solid #6366f1;
    border-radius: 10px;
    max-width: 700px;
    margin-bottom: 1.5rem;
    
}

.card p {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1rem;
}

.content4 .card_p {
    color: #6366f1;
}

.card a {
    text-decoration: underline;
    color: blue;
}

/* SECTION3 */

.section3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem;
    background-color: white;
}

.content_projeto {
    margin: 2rem;
}

.content_projeto h1{
    text-align: center;
    font-size: 2.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content_projeto_card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    margin: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.123);
    border-radius: 20px;
    background: var(--primry-color);
}

.content_projeto_card img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0.5rem;
}

.projeto_body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

.projeto_icons {
    display: flex;
    gap: 1rem;
}

.projeto_icons img {
    width: 30px;
    height: 30px;
}

.projeto_button {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.projeto_button .ver_projeto {
    border: 2px solid #6366f1;
    color: #6366f1;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.projeto_button .ver_repositorio {
    border: 2px solid #6366f1;
    color: #6366f1;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}


.ver_projeto:hover {
    background-color: #6366f1;
    color: white;
}

.ver_repositorio:hover {
    background-color: #6366f1;
    color: white;
}

/* SECTION4 */

.section4 {
    display: flex;
    justify-content: center;
}

.content_contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px;
    max-width: 600px;
}

.content_contato h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.menu_contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1rem;
    gap: 20px;
}

.menu_contato li {
    border: 1px solid var(--link-color);
    border-radius: 20px;
    padding: 10px 18px;
    text-decoration: none;
}

.menu_contato li a {
    color: var(--primary-bg-color);
}

.menu_contato span {
    padding: 8px;
    font-style: normal;
}

.menu_contato a:hover {
    color: #6366f1;
}

.menu_contato li:hover {
    transform: scale(1.05);
    transition: ease-in-out 0.3s;
}

.menu_contato li:hover {
    border: 2px solid #6366f1;
}

.content_contato button {
    margin-top: 1.5rem;
    padding: 18px;
    background-color: #6366f1;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* FOOTER */
footer {
    height: 55px;
    background: var(--primary-bg-color);
}

.content_footer p {
    text-align: center;
    color: rgba(255, 255, 255, 0.692);
    font-size: 0.8rem;
    font-weight: 200;
    padding: 1rem;
}












   



