/* Experiência Profissional - Ícones à esquerda */
.experiencia-flex {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.experiencia-icone {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experiencia-icone i {
  font-size: 2rem;
  color: #4a90e2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #2c3e50;
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3498db;
}

.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  gap: 25px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
#sobre {
  background: white;
}

.sobre-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 300px;
}
.sobre-texto h3 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.8rem;
}
.sobre-texto p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.sobre-imagem {
  flex: 0 0 400px;
  text-align: center;
}
.sobre-imagem img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.habilidades {
  margin-top: 40px;
}
.habilidades h3 {
  margin-bottom: 25px;
  color: #2c3e50;
}

.habilidade-item {
  margin-bottom: 20px;
}

.habilidade-nome {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 8px;
  font-weight: 600;
}

.barra-progresso {
  height: 10px;
  background: #ecf0f1;
  border-radius: 5px;
  overflow: hidden;
}

.progresso {
  height: 100%;
  background: #3498db;
  border-radius: 5px;
  transition: width 1s ease-in-out;
  width: 0;
}

@media (max-width: 768px) {
  .sobre-content {
    flex-direction: column;
  }
  .sobre-imagem {
    flex: 1;
    width: 100%;
  }
}
#projetos {
  background: #f8f9fa;
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.projeto-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.projeto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.projeto-img {
  height: 200px;
  background: #3498db;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.projeto-info {
  padding: 25px;
}
.projeto-info h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}
.projeto-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.projeto-tech {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-tag {
  background: #ecf0f1;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #2c3e50;
}

#contato {
  background: white;
}

.contato-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 50px;
  flex-wrap: wrap;
}

.contato-info {
  flex: 1;
  min-width: 300px;
}
.contato-info h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}
.contato-info p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.contato-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.contato-icon {
  width: 50px;
  height: 50px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
}

.form-contato {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  transition: border 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

@media (max-width: 768px) {
  .contato-content {
    flex-direction: column;
  }
}
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin: 20px 0;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.3rem;
}
.social-link:hover {
  background: #3498db;
  transform: translateY(-5px);
}

.footer-text {
  margin-top: 20px;
  opacity: 0.8;
}

.hero {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  padding: 150px 0 100px;
  margin-top: 60px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 0 0 300px;
  text-align: center;
}

.profile-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.profile-img:hover {
  transform: scale(1.05);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.social-hero {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 20px 0;
}
.social-hero a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
.social-hero a:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px 10px 10px 0;
  transition: all 0.3s;
  font-weight: 600;
  border: 2px solid #e74c3c;
}
.btn:hover {
  background: transparent;
  color: #e74c3c;
}
.btn.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn.btn-outline:hover {
  background: white;
  color: #2c3e50;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #3498db;
  margin: 15px auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .profile-img {
    width: 200px;
    height: 200px;
  }
  .social-hero {
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */