body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  color: #333;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 50px;
}

button {
  padding: 10px 20px;
  border-radius: 20px;
  background: #ff7aa2;
}

/* HEADER ARRIBA DE TODO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  z-index: 10; /* 👈 clave */
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: auto;
}

.logo:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.navbar {
  position: fixed;
  top: 8px; 
  left: 50%;
  transform: translateX(-50%);
  background: #5A4522;
  padding: 8px 30px;
  border-radius: 40px;
  display: flex;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  margin: 0 28px;
}

.navbar a:hover {
  transform: scale(1.1);
}

.lang-switch {
  position: absolute;
  top: 15px;
  right: 20px;
}

.lang-btn {
  width: 40px;
  cursor: pointer;
  margin-left: 8px;
  transition: 0.3s;
}

.lang-btn:hover {
  transform: scale(1.1);
}

/* HERO (IMAGEN) */
.hero {
  position: relative; /* NECESARIO */
  z-index: 0;

  width: 100%;
  height: 850px;
  background-image: url("img/Fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CAPA CAFÉ SOLO SOBRE LA IMAGEN */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #654321; /* fallback */
  background: linear-gradient(
    rgba(101, 67, 33, 0.6),
    rgba(101, 67, 33, 0.3)
  );

  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2; /* encima del overlay */
  color: white;
  
  top: 50%;
  transform: translateY(-50%);
   margin-left: 70px;
}

.hero-title {
  font-size: 60px;
  text-shadow: 
    0 0 5px rgba(0,0,0,0.6),
    0 0 15px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 20px;
  margin: 10px 0 20px;
}
.about-section {
  display: flex;
  width: 100%;
  height: 500px;
}

/*  LADO IZQUIERDO (texto beige) */
.about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.about-text h2 {
  color: #5A4522;
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  max-width: 500px;
}

/* 🖼️ LADO DERECHO (imagen) */
.about-image {
  width: 50%;
  background-image: url("img/tu-imagen.jpg"); /*  cambia esto */
  background-size: cover;
  background-position: center;
}