* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  background-color: #111;
  color: #fff;
}

header.hero {
    height: 100vh;
    background: url("imagenes2/fondo.jpg") center center no-repeat;
    background-size: contain; /* <-- Esto muestra la imagen completa */
    background-color: #000;   /* Fondo negro si sobra espacio */
  }
  

 header.hero .overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
 
}

header.hero h1.horizontal {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
}

header.hero p.horizontal {
  font-size: 1.6rem;
  font-style: italic;
  color: #ccc;
  margin-top: 0;
}

  

.seccion {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a0d468;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

input, textarea, button {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

input, textarea {
  background-color: #222;
  color: #fff;
}

button {
  background-color: #a0d468;
  color: #111;
  cursor: pointer;
}

.video-placeholder {
  background-color: #222;
  padding: 2rem;
  border: 2px dashed #555;
  text-align: center;
  margin-top: 2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #000;
  color: #777;
}
/* SECCIÓN SEMILLA */
.semilla {
  background-image: url("imagenes2/1744135359429.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f0f0f0;
  padding: 6rem 2rem;
  font-family: 'Georgia', serif;
  line-height: 1.8;
}

.contenido-manifiesto {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 12px;
}

.contenido-manifiesto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #88c57f;
}

.contenido-manifiesto h3 {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  color: #ccc;
}

.contenido-manifiesto p {
  margin-bottom: 1.5rem;
}

.contenido-manifiesto ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contenido-manifiesto ul li {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #a2d2a5;
}

/* SECCIÓN RAÍZ */
.raiz {
  background-color: #1a1a1a;
  color: #e6e6e6;
  padding: 6rem 2rem;
  font-family: 'Georgia', serif;
}

.contenido-raiz {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contenido-raiz h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #9bd089;
}

.contenido-raiz h3 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #b0e0b0;
}

.contenido-raiz ul {
  list-style: none;
  padding: 0;
}

.contenido-raiz ul li {
  margin-bottom: 1rem;
  font-weight: normal;
  color: #d0f0d0;
}

/* <-- menu navegación */

.menu {
  background-color: #0a0a0a;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  display: inline;
  margin: 0 1rem;
}

.menu ul li a {
  color: #88c57f;
  text-decoration: none;
  font-weight: bold;
}

.menu ul li a:hover {
  color: #ffffff;
}
html {
  scroll-behavior: smooth;
}
/* SECCIÓN TIERRA */
.tierra {
  background-color: #121212;
  color: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Georgia', serif;
}

.contenido-tierra {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contenido-tierra h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #8ec07c;
}

.contenido-tierra h3 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #a3e4b6;
}

.contenido-tierra ul {
  list-style: none;
  padding: 0;
}

.contenido-tierra ul li {
  margin-bottom: 1rem;
  font-weight: normal;
  color: #c8facc;
}
/* ENLACES DE NAVEGACIÓN ENTRE SECCIONES */
.ver-mas {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.2rem;
  background-color: #88c57f;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.ver-mas:hover {
  background-color: #a8e5a0;
}

@media (max-width: 768px) {

  body {
    font-size: 16px;
    padding: 0;
    margin: 0;
  }

  header {
    padding: 20px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .pantallas {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pantalla {
    width: 90%;
    max-width: 400px;
  }

  .pantalla img {
    width: 100%;
    height: auto;
  }

  .pantalla h3 {
    font-size: 20px;
  }

  .pantalla p {
    font-size: 15px;
  }

  footer {
    padding: 20px;
    text-align: center;
  }
}

/* ==== ESTILOS RESPONSIVE PARA MÓVIL ==== */
@media screen and (max-width: 768px) {

  .intro {
    height: auto;
    padding-bottom: 2rem;
  }

  .letras,
  .intro .overlay {
    position: static;
    transform: none;
    max-width: 90%;
    margin: 2rem auto;
    padding: 1.5rem;
    text-align: center;
    box-shadow: none;
  }

  .letras h1 {
    font-size: 2rem;
  }

  .letras p,
  .intro .overlay p {
    font-size: 1.1rem;
  }

  .intro h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .btn-servicios {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    margin: 1rem auto;
    display: block;
    text-align: center;
  }

  .servicios-opciones {
    flex-direction: column;
    align-items: center;
  }

  .servicio {
    width: 90%;
    text-align: center;
    font-size: 1rem;
  }

  .media img {
    border-radius: 8px;
  }

  .texto-hover {
    font-size: 0.95rem;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.6rem 1rem;
    max-width: 90%;
  }

}
