body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #002d26;
}
main {
max-width: 1200px;
margin: auto;
background: url("./img/padraobg.png");
}
.header{
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0,0,0,0.4);
}
.header img{
width: 90%;
height: auto;
}
.aside {
display: flex;
justify-content: center;
align-items: center;
}
.aside .beneficios {
width: 50%;
background-color: #003541;
position: relative;
transform: translate(50%, 10%);
border-radius: 20px 0 0  20px;
box-sizing: border-box;
z-index: 3;
}
.info{
padding-top: 40px;
box-sizing: border-box;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
z-index: 2;
}

.texto{
  width: 90%;
}
.texto p{
  font-size: 1.3em;
  color: #003541;
}
.parceria{
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.parceria p{
  color: #08ac9b;
  font-size: 2em;
  font-weight: 900;
    line-height: 34px;
}
.parceria p span{
  color: white;
  background-color: #08ac9b;
  border-radius: 10px;
}
section.intro {
background:linear-gradient( to right, #00a595 0, #00a595 60%, transparent 100%),url("./img/padraobg.png");
background-size: cover;
background-position: center;
color: #01494e;
padding: 50px 30px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.intro img {
height: 80px;
vertical-align: middle;
}
.intro p{
width: 80%;
font-size: 1.5em;
    background: linear-gradient(to right, #00a595 0, #00a595 60%, transparent 100%), url(./img/padraobg.png);
    background-size: cover;
    background-position: center;
    color: #01494e;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.services {
background: linear-gradient(135deg, #003845, #024f5a  );
color: white;
padding: 40px 20px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.services h1 {
font-size: 1.5em;
margin: 0;
color: white;
}
.services h2 {
font-size: 2.5em;
margin: 0;
color: white;
}
.services-grid {
width: 80%;
display: grid;
grid-template-columns:repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}
.service-item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;

padding: 15px 20px;
border-radius: 8px;
color: white;
font-weight: bold;
background: linear-gradient(45deg, #004d40 0 30%, #009688 30% 100%);
}
.service-item img {
height: 50px;
}
.service-item p {
width: 60%;
font-size: 1.5em;
    color: #ffffff;
}
section.vantagens {
padding: 40px 20px;
background: linear-gradient(45deg, #003845, #024f5a  );;
color: #004d40;
}
section.vantagens h1 {
text-align: left;
font-size: 2em;
margin: 0;
color : white;
}
section.vantagens h2 {
text-align: left;
font-size: 2.5em;
margin: 0;
color : white;
}
.vantagens-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}
.vantagem {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
section.beneficios {
text-align: center;
background: #f4f4f4;
}
section.beneficios img {
width: 100%;
height: auto;
}
.formulario {
background: white;
padding: 30px 20px;
box-sizing: border-box;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
margin: 20px;
border-radius: 10px;
}
form {
max-width: 95%;
margin: auto;
display: flex;
flex-direction: column;
gap: 15px;
}
form h2 {
text-align: center;
margin-bottom: 20px;
color: #333;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #444;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.linha {
  display: flex;
  gap: 50px;
  align-items: center;
}

.check-whatsapp {
  display: flex;
  align-items: center;
  gap: 5px;
}

fieldset {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 15px 0;
  padding: 10px;
}

legend {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

fieldset label {
  display: block;
  margin: 5px 0;
  font-weight: normal;
}

.aviso {
  font-size: 13px;
  color: #555;
  margin-top: 15px;
}

.aviso a {
  color: #007bff;
  text-decoration: none;
}

.checkbox {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 14px;
}

button {
  width: 40%;
  padding: 12px;
  background: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}


