@charset "UTF-8";
body {
  font-family: 'Arial', sans-serif;
  background-color: #3F3C3B;
  color: #F0F0F0;
  margin: 0;
  padding: 0;
  line-height: 1.6; }

h1, h2, h3, h4, h5, h6 {
  color: #F0F0F0;
  margin-bottom: 0.5em; }

a {
  color: #4582D6;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

main {
  padding: 20px;
  min-height: calc(100vh - 120px); }

header {
  background-color: #3F3C3B;
  padding: 20px;
  border-bottom: 1px solid #6D6A69; }
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Removido .hamburger-menu daqui */
    /* Removido .mobile-nav-menu daqui */ }
    header nav .logo {
      display: flex;
      gap: 5px;
      align-items: center;
      z-index: 1001; }
      header nav .logo .logo-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2em;
        font-weight: bold;
        color: white;
        overflow: hidden;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        animation: sway 3s ease-in-out infinite alternate; }
        header nav .logo .logo-circle.ruby-color {
          background: linear-gradient(to bottom right, #df6f6f, #be2a2a); }
        header nav .logo .logo-circle.css-color {
          background: linear-gradient(to bottom right, #6f9edf, #2a68be); }
        header nav .logo .logo-circle.js-color {
          background: linear-gradient(to bottom right, #dfcf6f, #bea92a); }
        header nav .logo .logo-circle:nth-child(1) {
          animation-delay: 0s; }
        header nav .logo .logo-circle:nth-child(2) {
          animation-delay: 0.5s; }
        header nav .logo .logo-circle:nth-child(3) {
          animation-delay: 1s; }
    header nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      gap: 30px; }
      header nav ul li {
        margin-left: 0; }
        header nav ul li a {
          color: #F0F0F0;
          font-weight: bold;
          font-size: 1.1em;
          text-decoration: none; }
          header nav ul li a:hover {
            color: #4582D6;
            text-decoration: underline; }

footer {
  background-color: #322f2f;
  color: #F0F0F0;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #6D6A69; }
  footer p {
    margin: 5px 0; }
  footer .social-links a {
    margin: 0 10px;
    font-size: 1.2em; }

section {
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto; }

.hero-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 70vh;
  text-align: left; }
  .hero-section .hero-content {
    flex: 1;
    padding-right: 20px; }
    .hero-section .hero-content .hero-title {
      font-size: 3em;
      margin-bottom: 10px;
      line-height: 1.2;
      color: #F0F0F0;
      display: inline-block;
      position: relative; }
      .hero-section .hero-content .hero-title span {
        color: #4582D6; }
    .hero-section .hero-content p {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: white; }
  .hero-section .social-buttons-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start; }
  .hero-section .button-social {
    display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
    min-width: 120px;
    text-align: center; }
  .hero-section .linkedin-button {
    background-color: #0A66C2; }
    .hero-section .linkedin-button:hover {
      background-color: #084d92; }
  .hero-section .github-button {
    background-color: #000000;
    color: #FFFFFF; }
    .hero-section .github-button:hover {
      background-color: #1a1a1a; }
  .hero-section .hero-image {
    flex: 1;
    text-align: center; }
    .hero-section .hero-image .avatar-img {
      max-width: 100%;
      height: auto;
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left; }
  .about-section .about-image {
    flex: none;
    text-align: center;
    margin-bottom: 0; }
    .about-section .about-image .about-avatar-img {
      max-width: 200px;
      height: auto;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
  .about-section .about-content {
    flex: 1;
    text-align: center; }
    .about-section .about-content h1 {
      font-size: 2.5em;
      margin-bottom: 20px; }
    .about-section .about-content p {
      margin-bottom: 15px;
      text-align: justify; }

.projects-section {
  text-align: center; }
  .projects-section h1 {
    font-size: 2.5em;
    margin-bottom: 40px; }
  .projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px; }
  .projects-section .project-card {
    background-color: #5C5857;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: rgba(240, 240, 240, 0.7);
    position: relative;
    overflow: hidden; }
    .projects-section .project-card .project-image {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 5px;
      object-fit: cover;
      max-height: 150px; }
    .projects-section .project-card h3 {
      font-size: 1.2em;
      margin-bottom: 5px;
      text-align: center; }
    .projects-section .project-card p {
      font-size: 0.85em;
      margin-bottom: 10px;
      overflow: auto;
      text-overflow: unset;
      -webkit-line-clamp: unset;
      -webkit-box-orient: unset;
      white-space: normal;
      flex-grow: 1; }
    .projects-section .project-card .project-links {
      margin-top: auto;
      display: flex;
      gap: 10px;
      justify-content: center;
      width: 100%; }
      .projects-section .project-card .project-links .project-link-button {
        background-color: #a2877e;
        color: #F0F0F0;
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        font-size: 0.9em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        display: inline-block; }
        .projects-section .project-card .project-links .project-link-button:hover {
          background-color: #7b6158;
          text-decoration: none; }
    .projects-section .project-card.coming-soon {
      font-size: 1.5em;
      background-color: #423f3e;
      position: relative;
      color: rgba(240, 240, 240, 0.5);
      display: flex;
      justify-content: center;
      align-items: center; }
      .projects-section .project-card.coming-soon span {
        position: absolute;
        transform: rotate(-45deg);
        background-color: rgba(214, 69, 69, 0.8);
        padding: 5px 30px;
        top: 20px;
        left: -30px;
        font-size: 0.9em;
        text-transform: uppercase;
        color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

.button-more, .button-minimize {
  background-color: #8A6D63;
  color: #F0F0F0;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease; }
  .button-more:hover, .button-minimize:hover {
    background-color: #6c564e; }

.github-link {
  font-size: 1.1em; }

.skills-section {
  text-align: center; }
  .skills-section h1 {
    font-size: 2.5em;
    margin-bottom: 40px; }
  .skills-section .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; }
  .skills-section .skill-item {
    background-color: #5C5857;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px; }
    .skills-section .skill-item .skill-icon {
      font-size: 2em;
      color: #D6C145;
      flex-shrink: 0; }
    .skills-section .skill-item .skill-details h3 {
      margin-top: 0;
      font-size: 1.5em; }
    .skills-section .skill-item .skill-details p {
      margin-bottom: 5px;
      font-size: 0.9em; }

.contact-section {
  text-align: center; }
  .contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px; }
  .contact-section p {
    font-size: 1.2em;
    margin-bottom: 30px; }
  .contact-section .contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px; }
    .contact-section .contact-social-links .button-social {
      display: inline-block;
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-decoration: none;
      min-width: 120px;
      text-align: center; }
    .contact-section .contact-social-links .linkedin-button {
      background-color: #0A66C2; }
      .contact-section .contact-social-links .linkedin-button:hover {
        background-color: #084d92; }
    .contact-section .contact-social-links .github-button {
      background-color: #000000;
      color: #FFFFFF; }
      .contact-section .contact-social-links .github-button:hover {
        background-color: #1a1a1a; }

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px; }
  .buttons-container button {
    min-width: 150px;
    text-align: center; }

@keyframes sway {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(5px); }
  100% {
    transform: translateX(0); } }

@media (max-width: 768px) {
  section {
    padding: 20px; }
  h1 {
    font-size: 2em;
    margin-bottom: 20px; }
  p {
    font-size: 0.9em; }
  header nav {
    flex-direction: column;
    align-items: center;
    padding: 15px; }
    header nav .logo {
      margin-bottom: 10px; }
    header nav ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-bottom: 10px;
      margin-top: 10px; }
      header nav ul li {
        margin: 10px 0;
        margin-left: 0;
        width: 100%; }
        header nav ul li a {
          display: block;
          padding: 10px;
          border-radius: 5px;
          transition: background-color 0.3s ease; }
          header nav ul li a:hover {
            background-color: #252322; }
  .hero-section {
    flex-direction: column-reverse;
    text-align: center; }
    .hero-section .hero-content {
      padding-right: 0;
      margin-top: 20px;
      text-align: center; }
      .hero-section .hero-content .social-buttons-container {
        justify-content: center; }
    .hero-section .hero-image {
      margin-bottom: 20px; }
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center; }
    .about-section .about-image {
      margin-bottom: 20px; }
  .projects-grid,
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px; }
  .project-card,
  .skill-item {
    padding: 15px;
    height: auto;
    min-height: 250px; }
  .project-card .project-image {
    max-height: 120px; }
  .project-card h3 {
    font-size: 1.1em; }
  .project-card p {
    font-size: 0.8em; }
  .button-more, .button-minimize {
    padding: 10px 20px;
    font-size: 1em; } }

@media (min-width: 769px) and (max-width: 1024px) {
  section {
    padding: 30px; }
  .projects-grid,
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); } }

/* Estilos Gerais da Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3F3C3B;
  padding: 10px 20px;
  color: #F0F0F0; }

/* Estilos do Brand/Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #F0F0F0;
  font-weight: bold; }

/* Estilos dos Links da Navbar */
.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none; }

.navbar-links li {
  margin-left: 20px; }
  .navbar-links li a {
    color: #F0F0F0;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    transition: background-color 0.3s ease; }
    .navbar-links li a:hover {
      background-color: #555;
      border-radius: 4px; }

/* Estilos Gerais da Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  color: #fff; }

/* Estilos do Brand/Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: bold; }

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

.logo-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  margin-right: 5px; }

.ruby-color {
  background-color: #e30000; }

.css-color {
  background-color: #007acc; }

.js-color {
  background-color: #f7df1e;
  color: #000; }

/* Estilos dos Links da Navbar */
.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none; }

.navbar-links li {
  margin-left: 20px; }

.navbar-links a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
  transition: background-color 0.3s ease; }

.navbar-links a:hover {
  background-color: #555;
  border-radius: 4px; }

/* Estilos do Botão Hambúrguer (Escondido por padrão em telas grandes) */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0; }

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease-in-out; }

/* Media Queries para Responsividade (telas pequenas) */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between; }
  .hamburger-menu {
    display: flex;
    /* Mostra o hambúrguer em telas pequenas */ }
  .navbar-links {
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: #444; }
  .navbar-links.active {
    display: flex; }
  .navbar-links ul {
    flex-direction: column;
    width: 100%; }
  .navbar-links li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #555; }
  .navbar-links li:last-child {
    border-bottom: none; }
  .navbar-links a {
    padding: 10px; }
  /* Animação do Hambúrguer */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0; }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); } }

/* Estilos para o grid de Habilidades */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; }

.skill-card {
  background-color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center; }

.skill-icon {
  font-size: 3em;
  /* Tamanho para ícones Font Awesome */
  color: #fff;
  margin-bottom: 10px; }

.skill-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3em; }

.skill-card p {
  font-size: 0.9em;
  line-height: 1.4; }

/* Estilos para a seção de Conquistas */
.achievements-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #2c2c2c;
  color: #eee; }

.achievements-section h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #fff; }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto; }

.achievement-item {
  background-color: #333;
  /* Cor de fundo do card de conquista */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease-in-out; }

.achievement-item:hover {
  transform: translateY(-5px); }

.achievement-item h3 {
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 15px; }

.achievement-item p {
  font-size: 0.9em;
  line-height: 1.5;
  color: #ccc; }

.achievement-image {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px; }

.placeholder-text {
  margin-top: 40px;
  font-style: italic;
  color: #aaa; }
