/* ---------- PÁGINA HIRE ME ---------- */
.hire-page {
  padding-top: 32px;
}

.hire-section {
  background: #fffbea;
  border-radius: 12px;
  padding: 32px;
  margin: 0 auto;
  /* sem borda */
}

/* Título principal */
.hire-section h1 {
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #333;
  font-weight: 700;
  text-align: center;
}

/* Conteúdo da seção */
.hire-content {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

/* Foto à esquerda com texto fluindo */
.hire-content .hire-photo {
  float: left;
  margin: 0 20px 16px 0;
}

.hire-content .hire-photo img {
  height: 300px;
  width: auto;
  display: block;
  border: 3px solid #333;    /* borda preta apenas na foto */
  border-radius: 12px;       /* cantos arredondados */
  object-fit: cover;
}

/* Parágrafos do texto */
.hire-content p {
  margin-bottom: 18px;
}

/* Certificações*/

.hire-certifications {
  display: flex;        /* coloca os itens lado a lado */
  gap: 30px;            /* espaçamento entre eles */
  flex-wrap: wrap;      /* permite quebrar linha em telas pequenas */
  justify-content: left;
}

.hire-certifications img {
  height: 150px;
  width: auto;
  border: 3px solid #333;
  border-radius: 12px;
}

/* Botões de contato */
.hire-buttons {
  margin-top: 28px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: left;
}

.hire-btn {
  padding: 12px 22px;
  border: 2px solid #333;
  background: #fffbea;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.hire-btn:hover {
  background: #333;
  color: #fffbea;
}

.hire-btn.email {
  background: #A9BA9D;
  color: #333;
}

.hire-btn.email:hover {
  background: #333;
  color: #fffbea;
}

.hire-btn.linkedin {
  background: #A9BA9D;
}

.hire-btn.linkedin:hover {
  background: #333;
  color: #fffbea;
}

.hire-btn.projects {
  background: #A9BA9D;
}

.hire-btn.projects:hover {
  background: #333;
  color: #fffbea;
}

/* Limpeza do float após conteúdo */
.hire-content::after {
  content: "";
  display: table;
  clear: both;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 700px) {

  .hire-section {
    padding: 20px;
  }

  .hire-section h1 {
    font-size: 1.8rem;
  }

  .hire-content {
    font-size: 1rem;
  }

  /* Foto passa para cima do texto e centralizada */
  .hire-content .hire-photo {
    float: none;
    margin: 0 auto 20px;
    text-align: center;
  }

  .hire-content .hire-photo img {
    height: 260px;
  }

  .hire-buttons {
    flex-direction: column;
  }

  .hire-btn {
    width: 100%;
    text-align: center;
  }
}