body {
  font-family: 'Raleway', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.container {
  width: 100vw;
  margin: 0;
  padding: 40px;
  box-sizing: border-box;
}

.logo {
  text-align: center;
}

.logo img {
  width: 157px;
  height: 117px;
}

.main-content {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  align-items: flex-start;
}

.form-section {
  flex: 1;
  padding: 0px 40px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-section h1 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.2;
}

form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"] {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 9px;
  font-size: 1rem;
  background: #eaeae9;
  outline: none;
  margin-bottom: 0;
}

.termos {
  font-size: 0.9rem;
  color: #222;
  margin: 18px 0 18px 0;
}

.btn-enviar {
  width: 50%;
  background: #43df68;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  padding: 5px 0;
  cursor: pointer;
  margin: 0 0 -15px auto;
  display: block;
  transition: background 0.2s;
}

.btn-enviar:hover {
  background: #1bb03d;
}

.beneficios {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: flex-start;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 22px;
}

.beneficio img {
  width: 50px;
  height: 70px;
}

.destaque {
  font-weight: 700;
  font-size: 1.30rem;
}

.energia-limpa {
  display: flex;
  align-items: center;
  gap: 32px;
}

.energia-limpa img {
  width: 60px;
  height: 62px;
}

.energia-limpa span {
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 22px;
}

.imagem-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
}

.imagem-mulher {
  width: 682px;
  height: 768px;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.95) saturate(1.1);
  margin-top: 35px;
}

@media (max-width: 1200px) {
  .container {
    width: 98vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 12px;
    width: 100%;
  }

  .main-content {
    flex-direction: column;
  }

  .form-section {
    padding: 0;
  }

  .form-section h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .form-row {
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 18px;
  }

  .form-row .form-group {
    width: calc(50% - 0.5rem);
    min-width: 150px;
  }

  .form-row.full-width-mobile {
    flex-direction: column;
    gap: 18px;
  }

  .form-row.full-width-mobile .form-group {
    width: 100%;
  }

  .btn-enviar {
    width: 48%;
    padding: 6px 0;
    margin-top: -15px;
  }

  .termos {
    text-align: left;
    font-size: 0.72rem;
  }

  .beneficios {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .beneficio, .energia-limpa {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.32rem;
    gap: 8px;
  }

  .beneficio img, .energia-limpa img {
    width: 55px;
    height: auto;
  }

  .imagem-section {
    display: block;
  }

  .imagem-mulher {
    width: 100%;
    height: auto;
  }

  input[type="text"],
  input[type="email"] {
    font-size: 0.8rem;
    padding: 8px 6px;
  }
}
