/* ---------- Estilo Base ---------- */
body {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

section.content {
  background-color: #f9f9f9;
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Container ---------- */
.container {
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 2px solid #ccc;
}

/* ---------- Header ---------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 10px;
}

.header-text {
  flex: 1;
  text-align: center;
}

.header-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 10%;

}

/* Nome */
.header-text h1 {
  margin: 0 0 10px 0;
  font-size: 2em;
  color: #2c3e50;
}

/* Contato */
.contact {
  margin-top: 5px;
  font-size: 0.95em;
}

.contact a {
  color: #3498db;
  text-decoration: none;
  margin: 0 5px;
}

.contact a:hover {
  text-decoration: underline;
}

.contact i {
  margin-right: 5px;
}

/* Títulos Secundários */
h2 {
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 5px;
  font-size: 18px;
  margin-top: 20px;
}

/* ---------- Resumo Profissional ---------- */
.resumo-profissional {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 1.5em;
  text-align: justify;
}

/* Listas */
ul {
  padding-left: 20px;
  text-align: justify;
}


/* ---------- Botão Imprimir ---------- */
#btnImprimir {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

#btnImprimir:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* ---------- Responsivo ---------- */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .header-text {
    text-align: center;
    margin-bottom: 15px;
  }

  .header-img img {
    margin: 0 auto;
  }

  #btnImprimir {
    width: 45px;
    height: 45px;
    font-size: 18px;
    right: 20px;
  }

  #btnImprimir {
    bottom: 80px;
  }
}

/* ---------- Impressão ---------- */
@media print {
  #btnImprimir,
  .navbar,
  .footer {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .container {
    box-shadow: none;
    border: none;
  }
}