:root {
    --background-green: #1DAA61;
    --background-color: #ffffff;
    --dark-background: #0F6134;
    --grey: #434343;
  }

  html {
    color-scheme: light;
  }
  body{
      background-color: var(--background-color);
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      line-height: 23px;
      color: #777;
      font-weight: 400;
      position: relative;
      overflow-x: hidden;
  }
  h1{
    font-size: 95px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--text-color);
    letter-spacing: -0.05em;
  } 
  h2, h3, h4, h5, h6 {
    font-size: 30px;
    line-height: 1.2;
    margin: 30px 0 10px;
    color: var(--grey);
    letter-spacing: -0.05em;
  }
  p, ul{
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--grey);
    letter-spacing: -0.05em;
  }
  ul {
    color: var(--grey);
    list-style-type: disc;
    margin-left: 5%;
    font-size: 20px;
  }
  ul.circulo {
    list-style-type: circle;
  }  
  p, li {
    line-height: 1.5;
  }
  li {
    margin-top: 5px;
  }
  .logo {
    padding: 2vh 0 0 6vw;
  }
  .container-content {
    width: 100vw;
    padding: 10vh 10vw;
  }
  .container-img {
    padding: 0 5vw;
  }
  .container-content img {
    width: 40vw; 
    height: auto;
    max-height: 300px;
  }
  .heading-element {
    margin-left: 10px;
    color: var(--dark-background);
    font-size: 25px;
  }
  .container-text {
    margin-top: 5%;
    margin-left: 15px;
  }

  .button-form {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-green);
  background-color: var(--background-color);
  border: 2px solid var(--background-green);
  font-size: 20px;
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
  margin: 40px auto 0 auto;
  outline: none;
}

.button-form:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: var(--background-green);
}

button:focus {
  outline: none;
  box-shadow: none;
}

.container-form {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}


form label {
  display: block;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

  /* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  h1{
    font-size: 60px !important;
  } 
  h2, h3, h4, h5, h6 {
    font-size: 25px;
  }
  p, ul{
    font-size: 18px;
  }
  .logo {
    padding: 0vh 0 0 2vw;
  }
  .container-content {
    width: 100vw;
    padding: 2vh 6vw;
  }
  .container-content img {
    width: 90vw; 
    height: auto;
    max-height: 180px;
  }
  .container-img {
    flex-direction: column;
  }
  .heading-element {
    margin-left: 5px;
    font-size: 20px;
    text-align: center;
  }
  .container-text {
    margin-left: 10px;
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo {
    padding: 1vh 0 0 1vw;
    }
    .logo img{
    min-width: 45px;
    height: auto;
    }
    .container-content {
    width: 100vw;
    padding: 5vh 6vw;
    }
    .container-content img {
    width: 55vw; 
    height: auto;
    max-height: 200px;
    }
    .heading-element {
    margin-left: 5px;
    font-size: 25px;
    }
    .container-text {
    margin-left: 10px;
    }
}   
/* medium screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .logo {
        padding: 1vh 0 0 1vw;
    }
    .logo img{
    min-width: 60px;
    height: auto;
    }
    .container-content {
    width: 100vw;
    padding: 5vh 6vw;
    }
    .container-content img {
    width: 55vw; 
    height: auto;
    max-height: 250px;
    }
    .heading-element {
    margin-left: 5px;
    font-size: 25px;
    }
    .container-text {
    margin-left: 10px;
    }
    
}