/* Estilo global */
body{
  background-color: #f9f9f9;
}
main {
  font-family: 'Arial', sans-serif;
  color: #222;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  line-height: 1.6;
  
}

h1, h2, h3 {
  font-weight: 600;
  color: #111;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 {
  text-align: center;
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.3rem;
}

p {
  margin-bottom: 1rem;
}

/* Enlaces */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Formularios */
form {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

input[type="submit"], input[type="reset"] {
  background-color: #111;
  color: #eee;
  border: none;
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}

input[type="submit"]:hover, input[type="reset"]:hover {
  background-color: #333;
}

/* Espaciado general */
section {
  margin-bottom: 2rem;
}

/* Responsivo */
@media (max-width: 600px) {
  body {
    padding: 1rem;
    margin: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
}

#google_translate_element{
    position:fixed ;
    bottom:1rem ;
    right:1rem;
    z-index:10000 ;
}