@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
:root {
  --primary-color: #4e73df; /* Azul suave */
  --secondary-color: #f5f5f5; /* Branco quebrado */
  --accent-color: #ff6f61; /* Laranja suave */
  --text-color: #333; /* Cor do texto */
  --background-color: #fafafa; /* Cor de fundo suave */
}
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-color: #f9f9f9;
      color: #333;
    }

    .header {
      background-color: #4a90e2;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      font-weight: 500;
    }

    .hero {
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, #4a90e2 0%, #904ae2 100%);
      color: white;
      position: relative;
      padding: 0 2rem;
    }
    
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    
    .hero-photo {
      margin-bottom: 20px;
      border-radius: 50%;
      overflow: hidden;
      width: 150px;
      height: 150px;
    }
    
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    
    .highlight {
      color: #f8e71c;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    
    .btn {
      padding: 0.8rem 2rem;
      border: none;
      background-color: #f8e71c;
      color: #333;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 1rem;
    }
    
    
    .arthur_info {
      padding: 20px;
      background-color: var(--secondary-color);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .arthur_info-card-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .arthur_info-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 45%; /* Tamanho dos cards */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .arthur_info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .arthur_info-card h3 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    
    .arthur_info-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-color);
    }
    
    .social-links {
      margin-top: 1.5rem;
    }
    
    .social-links a {
      margin: 0 10px;
      display: inline-block;
    }
    
    .social-icon {
      width: 35px;
      height: 35px;
      transition: transform 0.3s ease;
    }
    
    .social-links a:hover .social-icon {
      transform: scale(1.2);
    }
    
    .about, .projects, .contact {
      padding: 4rem 2rem;
      text-align: center;
    }

    .projects {
      padding: 40px;
      background-color: var(--secondary-color);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center; /* Centraliza o conteúdo */
    }
    
    h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-align: center;
    }
    
    /* Card maior */
    .project-container {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
      padding: 20px;
      margin: 20px;
      max-width: 900px; /* Largura máxima do card maior */
      width: 100%;
      box-sizing: border-box;
    }
    
    /* Container dos cards menores */
    .project-card-container {
      display: flex;
      flex-wrap: wrap; /* Permite quebra de linha em telas menores */
      gap: 20px; /* Espaçamento entre os cards */
      justify-content: center; /* Centraliza os cards pequenos */
    }
    
    /* Cards menores */
    .project-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 280px; /* Largura fixa */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .project-card h3 {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    
    .project-card p {
      font-size: 1rem;
      color: var(--text-color);
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .project-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
    }
    
    .project-buttons .btn {
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .project-buttons .saiba-mais {
      background-color: #4e73df;
      color: #fff;
      border: 2px solid #4e73df;
    }
    
    .project-buttons .ir-para-site {
      background-color: #ff6f61;
      color: #fff;
      border: 2px solid #ff6f61;
    }
    
    .project-buttons .btn:hover {
      transform: translateY(-5px);
    }
    
    .project-buttons .saiba-mais:hover {
      background-color: #3b5cb6;
      border-color: #3b5cb6;
    }
    
    .project-buttons .ir-para-site:hover {
      background-color: #e45e53;
      border-color: #e45e53;
    }
    
    

    .contact form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .contact input, .contact textarea {
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
    }
    .skills {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
      }
      
      /* Card wrapper */
      .skills-card-wrapper {
        padding: 20px;
        border-radius: 15px;
        background-color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }
      
      /* Estilos do card container */
      .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
        margin-top: 40px;
      }
      
      /* Estilos do card */
      .card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s ease;
      }
      
      .card:hover {
        transform: translateY(-10px);
      }
      
      .card h2 {
        font-size: 1.6em;
        color: #333;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .skill-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
      }
      
      .card:hover .skill-icon {
        transform: scale(1.1);
      }
      
      /* Barra de progresso */
      .progress-bar {
        background-color: #e0e0e0;
        border-radius: 10px;
        height: 10px;
        margin-top: 10px;
        width: 100%;
      }
      
      .progress {
        background-color: #4caf50;
        height: 100%;
        border-radius: 10px;
        text-align: center;
        color: white;
        font-weight: bold;
        line-height: 10px; /* Alinha o texto verticalmente */
        transition: width 0.4s ease-in-out;
      }

    .footer {
      padding: 1rem;
      background: #333;
      color: white;
      text-align: center;
    }