body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}
header {
  background: url('assets/header-bg.jpg') center/cover no-repeat;
  color: rgb(255, 255, 255);
  padding: 6rem 0rem;
  text-align: center;
  position: relative;
}
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.717);
  z-index: 0;
}
.header-content {
  position: relative;
  z-index: 1;
}
h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
}
p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}



nav.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.937);
}
nav .logo {
  font-weight: bold;
  font-size: 1.2rem;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  text-decoration: underline;
}


.container {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 0.8s ease-in-out;
}

section {
  margin-bottom: 2rem;
}
h2 {  
  color: #602e77;
}
ul {
  list-style: none;
  padding: 0;
}
ul li::before {
  content: "✔ ";
  color: rgb(235, 11, 220);
}
.precios span {
  display: block;
  margin-top: 0.5rem;
}
.boton {
  display: inline-block;
  background: #4a90e2;
  color: white;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}
.boton:hover {
  background: #357ab8;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  font-size: 0.9rem;
  animation: fadeIn 1s ease-in;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}



/* Estilos para botón de idioma */
#toggle-lang {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}
#toggle-lang:hover {
  background-color: #357ab8;
}


