/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Main Section */
.about-me {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.photo-container {
  flex: 1 1 300px;
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-container {
  flex: 2 1 400px;
  padding: 30px;
}

.info-container h2 {
  color: #000000;
  margin-bottom: 15px;
}

.info-container h3 {
  margin-top: 20px;
  color: #000000;
}

.info-container ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.contact-buttons {
  margin-top: 20px;
}

.contact-buttons .btn {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-buttons .btn:hover {
  background-color: #000000;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #050505;
  color: white;
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-me {
    flex-direction: column;
  }
  .photo-container, .info-container {
    flex: 1 1 100%;
  }
}

.back-menu {
  text-align: center;
  margin: 20px 0;
}

.btn-back {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

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