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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column; 
  justify-content: flex-start;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #000000, #e14336);
  color: white;
}

a, a:visited {
  color: white;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid white;
  margin-bottom: 2rem;
}

a, a:visited {
  color: white;
  text-decoration: none;
}

header > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header strong {
  font-weight: bold;
  font-size: 1rem;
  color: white;
}

.language-switcher {
  display: flex;
  gap: 0.25rem;
}

.language-switcher button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-size: 0.85rem;
}

.language-switcher button:hover {
  background: white;
  color: black;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  text-transform: lowercase;
  transition: opacity 0.3s;
  color: white;
  text-decoration: none;
}

header nav a:hover {
  opacity: 0.7;
}

.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.about-card {
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  max-width: 1600px;
  width: 100%;
  gap: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  align-items: flex-end;
}

.about-photo {
  flex-shrink: 0;
  align-self: flex-end;
}

.about-photo img {
  width: 700px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  object-fit: cover;
  object-position: bottom left;
  display: block;
}

.about-text {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}

.about-text h1 {
  font-family: 'Canela Text', serif;
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: left;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000000;
}