/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --link-color: #0d9775;
  --font-color: #000000;
  --accent-color-font: #064b0c;
  --accent-color-bg: #0e9909;

  --white-color: #ffffff;
  --white-background: #edfaef;

  --header-mobile-border: #d6d0c4;
  --background-nav-menu: #c2eec2;
  --background-hero: #e8fae8c7;
  --hero-font-color: #022e0e;
  --hero-cor-rosa: #094116;
  --fonte-mais-clara: #2c6e31;
  --cor-barra-horizontal-titulos: #e9ffd8;
  --background-branco-mais-escuro: #3baf30;

  --dark-font-color: #d4d8d1;
  --dark-accent-color-font: #9cf39ccb;
  --dark-accent-color-bg: #011405;

  --dark-white-color: #e0e8d8;
  --dark-white-background: #020c06;

  --dark-header-mobile-border: #0d180d;
  --dark-background-nav-menu: #050a05;
  --dark-background-hero: #0d120dcc;
  --dark-hero-font-color: #a8c8a0;
  --dark-hero-cor-rosa: #68c51d;
  --dark-fonte-mais-clara: #5a9e5a;
  --dark-cor-barra-horizontal-titulos: #1a2e1a;
  --dark-background-branco-mais-escuro: #050705;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--font-color);
  background-color: var(--white-background);
}

.dark-theme {
  --font-color: var(--dark-font-color);
  --accent-color-font: var(--dark-accent-color-font);
  --accent-color-bg: var(--dark-accent-color-bg);

  --white-color: var(--dark-white-color);
  --white-background: var(--dark-white-background);

  --header-mobile-border: var(--dark-header-mobile-border);
  --background-nav-menu: var(--dark-background-nav-menu);
  --background-hero: var(--dark-background-hero);
  --hero-font-color: var(--dark-hero-font-color);
  --hero-cor-rosa: var(--dark-hero-cor-rosa);
  --fonte-mais-clara: var(--dark-fonte-mais-clara);
  --cor-barra-horizontal-titulos: var(--dark-cor-barra-horizontal-titulos);
  --background-branco-mais-escuro: var(--dark-background-branco-mais-escuro);
}

#toggle-dark-theme-container {
  z-index: 3;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color-bg);
  cursor: pointer;
}

#toggle-dark-theme {
  font-size: 22px;
  color: var(--white-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--accent-color-font);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 65px;
  z-index: 1;
  background: var(--accent-color-bg);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

/* Hero tagline */
    .hero-tagline {
      font-size: 18px !important;
      color: var(--hero-font-color);
      opacity: 0.65;
      margin-top: 10px;
      margin-bottom: 0;
      max-width: 480px;
      line-height: 1.55;
      font-weight: 400;
      font-family: "Open Sans", sans-serif;
      letter-spacing: 0.01em;
    }

    @media (max-width: 992px) {
      .hero-tagline {
        font-size: 10px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* CV Buttons — hero */
    .cv-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }

    @media (max-width: 992px) {
      .cv-buttons {
        justify-content: center;
      }
    }

    .btn-cv {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: "Poppins", sans-serif;
    }

    .btn-cv-primary {
      background: var(--accent-color-bg);
      color: var(--white-color);
      border: 2px solid var(--accent-color-bg);
    }

    .btn-cv-primary:hover {
      background: transparent;
      color: var(--hero-cor-rosa);
      border-color: var(--hero-cor-rosa);
    }

    .btn-cv-outline {
      background: transparent;
      color: var(--hero-font-color);
      border: 2px solid var(--hero-font-color);
      opacity: 0.75;
    }

    .btn-cv-outline:hover {
      opacity: 1;
      color: var(--hero-cor-rosa);
      border-color: var(--hero-cor-rosa);
    }

    /* CV Buttons — resume section */
    .resume-cv-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1.2rem;
    }

    .btn-cv-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: "Poppins", sans-serif;
      background: var(--accent-color-bg);
      color: var(--white-color);
      border: 2px solid var(--accent-color-bg);
    }

    .btn-cv-dark:hover {
      background: transparent;
      color: var(--accent-color-font);
      border-color: var(--accent-color-font);
    }

    .btn-cv-dark-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: "Poppins", sans-serif;
      background: transparent;
      color: var(--accent-color-font);
      border: 2px solid var(--accent-color-font);
    }

    .btn-cv-dark-outline:hover {
      background: var(--accent-color-bg);
      color: var(--white-color);
      border-color: var(--accent-color-bg);
    }

.back-to-top i {
  font-size: 28px;
  color: var(--white-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-color-bg);
  color: var(--white-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.5s;
  padding: 0 15px;
  overflow-y: auto;
  min-width: 200px;
}

@media (max-width: 991px) {
  #header {
    width: 160px;
    background: var(--white-background);
    border-right: 1px solid var(--header-mobile-border);
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  padding: 0;
  display: 9997;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 140px;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: var(--accent-color-font);
  padding: 10px 18px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: var(--background-nav-menu);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: var(--accent-color-font);
}

@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: var(--white-color);
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: var(--white-color);
  background: var(--accent-color-bg);
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: var(--white-color);
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: var(--white-color);
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 3;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: var(--accent-color-font);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: var(--white-color);
  background-color: var(--accent-color-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExbWJyNjI3eHVzMjByNGZuMzJrNGtyaWo3NndtcGowcjV6eDc1cXN4OSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ZVik7pBtu9dNS/giphy.gif") center center no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

#hero:before {
  content: "";
  background: var(--background-hero);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Hero Scroll Down Arrow
--------------------------------------------------------------*/
.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-scroll-down span {
  color: var(--hero-font-color);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-scroll-down i {
  font-size: 28px;
  color: var(--hero-font-color);
  opacity: 0.7;
  animation: mouse-scroll 1.5s infinite;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--hero-cor-rosa);
  border-bottom: 2px solid var(--hero-cor-rosa);
  transform: rotate(45deg);
  animation: arrow-bounce 1.5s infinite;
}

@keyframes arrow-bounce {
  0%, 100% { margin-top: 0px; }
  50% { margin-top: 6px; }
}

@keyframes mouse-scroll {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(5px); opacity: 1; }
}


#hero h1 {
  margin: 3;
  font-size: 75px;
  font-weight: 700;
  line-height: 56px;
  color: var(--hero-font-color);
}

#hero p {
  color: var(--hero-font-color);
  margin: 0px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: var(--hero-cor-rosa);
  letter-spacing: 1px;
}

#hero .social-links {
  margin-top: px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: var(--hero-font-color);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: var(--hero-cor-rosa);
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 0px;
    justify-content: center;
  }

  #hero p {
    margin-top: 25px;
    font-size: 20px;
    line-height: 25px;
  }

  #hero .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: px;
    margin-right: 5px;
    margin-left: 5px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--fonte-mais-clara)
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--cor-barra-horizontal-titulos);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-color-bg);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--accent-color-font);
}

.about img {
  padding-left: 30px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color-font);
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .mobile-center {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--fonte-mais-clara)
}

.resume .content {
  padding-left: 50px;
}

.resume .resume-item {
  padding: 0 0 1px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color-font);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--accent-color-font);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: var(--background-branco-mais-escuro);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.description {
  margin-bottom: 0px;
  text-align: justify;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--white-background);
  border: 2px solid var(--accent-color-font);
}

.resume-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  border-left: 2px solid var(--accent-color-font);
  align-items: center;
  gap: 10px;
}

.resume-item-grid:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--white-background);
  border: 2px solid var(--accent-color-font);
}

.resume-item-grid li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 5px;
}

.resume-item-grid img {
  width: 30px;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .projects-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(79, 78, 78, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  border-radius: 13px;
}

.projects .row {
  padding-left: 45px;
}

.projects .projects-item .icon {
  margin-bottom: 10px;
}

.projects .projects-item .icon i {
  color: var(--accent-color-font);
  font-size: 36px;
  transition: 0.3s;
}

.projects .projects-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.projects .projects-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.projects .projects-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.projects .projects-item:hover {
  transform: translateY(-10px);
}

.projects .projects-item:hover h4 a {
  color: var(--accent-color-font);
}

.icon-img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.projects .read-more {
  color: var(--accent-color-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  margin-top: 20px;
}

.projects .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.projects .read-more:hover i {
  transform: translate(3px, 0);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--white-background)b5;
  margin-left: 120px;
  color: var(--white-color)cc;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .thanks {
  font-size: 15px;
  color: var(--fonte-mais-clara);
  margin-bottom: 2px;
}

#footer .social-links {
  margin-top: 3px;
}

#footer .social-links a {
  font-size: 24px;
  display: inline-block;
  color: var(--fonte-mais-clara);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  color: var(--accent-color-font);
}