/* Fuente tipo Apple para toda la web */
body, input, button, select, textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #1a1a1a;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #ffcc00;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Dropdown idiomas */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 1001;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown-content.show {
  display: block;
}

/* Hero banner */
.hero {
  height: 100vh;
  background: url('banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn {
  padding: 12px 28px;
  background-color: #ffcc00;
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
  font-family: inherit;
}

.btn:hover {
  background-color: #e6b800;
}

/* Contenido principal */
main {
  padding-top: 80px;
  max-width: 900px;
  margin: 0 auto;
  font-family: inherit;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid #1a1a1a;
  margin: 20px 0;
  padding-left: 15px;
}
.timeline-item h3 {
  margin: 0;
  color: #1a1a1a;
  font-weight: 600;
}
.timeline-item p {
  margin: 5px 0 0;
  font-weight: 400;
}

/* Enlaces de contacto */
#contact a {
  color: #1a1a1a;
  text-decoration: underline;
}

#contact a:hover {
  color: #ffcc00;
}
