:root {
  --principal: darkorange;
  --secundario: #141414;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
  font-family: 'Sulphur Point', sans-serif;
}

body {
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

/* Nav */
nav {
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 4rem;
  padding: 1rem;
  width: 100%;
  position: fixed;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul li a{
  color: black;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav img{
  box-shadow: none;
}

nav a:hover {
  color: var(--principal);
}

#registro:hover{
  color: var(--principal);
  background-color: #2c2c2c;
}

button:hover{
  background-color: #d9341e;
  cursor: pointer;
}

nav li:first-child {
  margin-right: auto;
}

/* Sidebar y menú en mobile */
.sidebar {
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgb(199, 199, 199);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.menu-button {
  display: none;
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }
  
  .menu-button {
    display: block;
  }
}

@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}

/* Banner */
header {
  text-align: center;
  padding: 1rem;
}

/*resaltar managewise*/
.highlight{
  color: var(--principal);
}

#banner {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: space-around;
  margin-top: 2rem;
  padding:  1rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
}

#banner #eslogan {
  width: 100%; 
  max-width: 600px;
  text-align: left;
  margin-bottom: 1rem;
}

#banner img {
  max-width: 100%; 
  height: auto;
}

/* Para pantallas más pequeñas */
@media (max-width: 768px) {
  #banner {
    flex-direction: column; 
  }
  
  #DescripcionGeneral .contenedorDescripcion {
    flex-direction: column;
  }
  
  #DescripcionGeneral .contenedorDescripcion:nth-child(odd) {
      flex-direction: column-reverse;
  }

  #DescripcionGeneral .contenedorDescripcion:nth-child(even) {
      flex-direction: column;
  }

  #Beneficios {
      flex-direction: column;
  }

  #banner #eslogan {
    text-align: center; 
  }
  
  #DescripcionGeneral .contenedorDescripcion {
      text-align: center; 
  }

  #Beneficios .contenedorBeneficios {
      text-align: center; 
  }

  #banner img {
    width: 80%;
  }
  #Beneficios img{
      width: 20%;
  }
  
  #DescripcionGeneral img{
      width: 80%;
  }

  .puntos{
      width: 80%;
  }
}

@media (max-width: 480px) {
  #banner #eslogan {
    font-size: 1rem; 
  }

  #banner img {
    width: 100%; 
  }

  #Beneficios img{
      width: 20%;
  }
  
  #DescripcionGeneral img{
      width: 100%;
  }

  .puntos{
      width: 250px;
  }
}
/*FIN US45*/


#DescripcionGeneral {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secundario);
  padding: 5rem 2rem;
}

.contenedorDescripcion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 2rem 2rem;
}

.contenedorDescripcion img {
  width: 40%;
  max-width: 500px;
  height: auto;
}

.contenedorDescripcion .puntos {
  width: 70%;
  max-width: 600px;
  padding: 0 1rem;
  text-align: left;
}

.puntos{
  color: white;
  width: 30rem;
}


/*Beneficios*/
#Beneficios {
display: flex;
justify-content: space-around;
align-items: flex-start; 
padding: 2rem;
background-color: lightgray;
flex-wrap: wrap; 
}

.contenedorBeneficios {
display: flex;
flex-direction: column;
align-items: center; 
justify-content: flex-start; 
flex: 1;
margin: 1rem;
text-align: center;
}

.contenedorBeneficios img {
margin-bottom: 1rem; 
width: 100px; 
box-shadow: none;
}


/*Sobre Nosotros*/

#Nosotros{
  padding: 2rem;
  max-width: 1200px; 
  margin: 0 auto; 
}

#nosotrosHorizon{
  padding: 1rem;
}


/*lanzar*/
#lanzar{
  height: 15rem;
  text-align: center;
}

/*botones*/
button{
  background-color:  var(--principal);
  border-style: none;
  height: 40px;
  width: 150px;
  border-radius: 5px;
  color: white;
}

#registro{
  background-color: var(--secundario);
  height: 30px;
  color: white;
  border-radius: 5px;
}

img{
  border-radius: 5px;
}

/*footer*/
footer{
  height: 5rem;
  background-color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  color: white;
}

#siguenos{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#siguenos img{
  margin-left: 1rem;
}

/*registro e inicio sesion*/

.formulario{
  background-color: var(--secundario);
  height:80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#Registrarse, #IniciarSesion{
  background-color: lightgray;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 10px;    
}

form button{
  margin-left: 90px;
}

hr{
width: 90%;
margin: auto;
}

input{
  width: 20rem;
  border-radius: 5px;
}

#Beneficios .contenedorBeneficios h3{
margin-bottom: 1rem; 
}

/*seccion contactanos*/

#Contactanos {
padding: 50px 0;
background-color: #f9f9f9;
text-align: center;
}

#Contactanos h2 {
font-size: 2.5em;
margin-bottom: 20px;
}

#Contactanos p {
font-size: 1.2em;
margin-bottom: 30px;
}

.contenedorContacto {
width: 80%;
max-width: 600px;
margin: auto;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-weight: 700;
margin-bottom: 10px;
text-align: left;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: var(--principal);
outline: none;
}

.enviar {
padding: 10px 30px;
background-color: var(--principal);
color: #fff;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s ease;
margin: auto;
}

.enviar:hover {
background-color: #2c2c2c;
}
.faq-section {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.faq {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.faq h4 {
  margin: 0;
}

.faq-answer {
  display: none; /* Ocultar respuesta por defecto */
  margin-top: 10px;
}

.faq-answer p {
  margin: 0;
  padding: 5px;
  background-color: #eaeaea;
  border-radius: 4px;
}

.faq-container{
  max-width: 64rem;
  margin: auto;
}
