* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #1f2933;
  background: #f5f7fa;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* A – HERO COM TEXTURA */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: url('texture-1668079.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 32px 20px;
  margin-top: 80px;
}

.hero h1 {
  font-size: 4.25rem;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 2.5rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-location {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-tag {
  background: rgba(37, 99, 235, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 1.2rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: #e5edff;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 215px;
}

.hero-arrow {
  color: #e5edff;
  font-size: 1.3rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid #bfdbfe;
  background: #2563eb;
  color: #ffffff;
  transition: all 0.15s ease;
}

.btn.primary {
  background: #2563eb;
}

.btn:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  border-color: #93c5fd;
}

.hero-contact {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.95;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  white-space: nowrap;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* SEÇÕES B–E */

section {
  padding: 50px 0 10px;
}

section h2 {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 18px;
  border-bottom: 3px solid #2563eb;
  display: inline-block;
  padding-bottom: 4px;
}

.section-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

/* B – RESUMO */

.resumo-texto {
  font-size: 1.2rem;
  color: #111827;
}

/* C – EXPERIÊNCIA */

.exp-item {
  margin-bottom: 18px;
}

.exp-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.exp-empresa {
  font-weight: 600;
}

.exp-cargo {
  font-style: italic;
  font-size: 1.0rem;
  color: #4b5563;
}

.exp-local {
  font-size: 1.0rem;
  color: #6b7280;
}

.exp-detalhes {
  margin-left: 14px;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #111827;
}

.exp-detalhes li {
  margin-bottom: 4px;
}

/* D – HABILIDADES */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 6px;
  justify-items: flex-start;
}

.skill-pill {
  background: #eff6ff;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.skills-group-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

/* E – FORMAÇÃO */

.edu-item {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.edu-titulo {
  font-weight: 600;
}

.edu-sub {
  font-size: 1.0rem;
  color: #4b5563;
}

.edu-periodo {
  font-size: 0.9rem;
  color: #6b7280;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 24px 16px 32px;
  font-size: 0.86rem;
  color: #6b7280;
}

/* RESPONSIVO – MOBILE */

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    align-items: flex-start;
  }

  .hero-content {
    margin-top: 40px;
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .hero-tag {
    font-size: 0.95rem;
    padding: 6px 10px;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-wrap: wrap;          /* deixa quebrar linha no mobile */
    gap: 8px;
    margin-bottom: 24px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .hero-contact {
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 12px;
    white-space: normal;      /* permite quebrar linha no mobile */
  }

  section {
    padding: 32px 0 8px;
  }

  .section-card {
    padding: 18px 16px;
  }

  .resumo-texto,
  .exp-detalhes,
  .edu-item,
  .skills-group-title {
    font-size: 1rem;
  }

  .skill-pill {
    font-size: 0.9rem;
    padding: 7px 14px;
  }
}
