/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #111;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}


.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6b35;
}


.header-text {
  text-align: left;
  max-width: 500px;
}


@media (max-width: 650px) {
  .header-content {
    flex-direction: column;
  }

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


.apple-header {
  text-align: center;
  background: #000000;
  padding: 40px 20px;
  width: 100%;
  max-width: 820px;
  border-radius: 36px;
  margin-bottom: 35px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.07);
}

.apple-header h1 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.apple-header h2 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 18px;
}

/* Foto Apple */
.profile-img {
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6b35;
  margin-top: 12px;
}


.btn-cv {
  display: inline-block;
  background-color: #ff6b35;
  color: #000000;
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-cv:hover {
  background-color: #e85c2e;
  transform: translateY(-2px);
}


.container {
  max-width: 820px;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 38px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

section {
  margin-top: 40px;
}

section h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  border-left: 5px solid #ff6b35;
  padding-left: 10px;
}

/* Texto */
section p,
section li {
  font-size: 1rem;
  color: #222;
}

ul { margin-left: 20px; }

/* Links */
a {
  color: #ff6b35;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

/* Tags skills */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: #f5f5f5;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1px solid #e6e6e6;
  transition: 0.2s ease;
}

.tags span:hover {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

/* Responsivo */
@media (max-width: 600px) {
  .container {
    padding: 25px 20px;
  }
  .apple-header h1 {
    font-size: 2rem;
  }
  .apple-header h2 {
    font-size: 1rem;
  }
}
