body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f2f2;
  color: #333;
  scroll-behavior: smooth;
}

.hero-logo {
  position: absolute;
  top: 4vw;
  left: 7vw;
  max-width: 300px;
  width: 30vw;
  height: auto;
  z-index: 2;
}

.hero {
/*  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bg.jpg') center/cover no-repeat;*/
  background: url('images/bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
}

.hero p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.cta-button {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #388E3C;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #c8e6c9;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.info-section {
  background-color: #efefeb;
  /*background: url('images/porque.jpg') center/cover no-repeat;*/
/*  height: 100vh;*/
/*  background: url('images/porque.jpg') center center / cover no-repeat;*/
  padding: 0px;
  text-align: left;
}
.info-section img{
	width: 90%;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: #e8f5e9;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.how-it-works {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;

}
h1{
	color: #08a08b;
	font-size: 2em;
}
p{
	color: #777;
}
h3{
	color: #545454;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.step {
  max-width: 250px;
  background-color: #e8f5e9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step img {
  width: 60px;
  margin-bottom: 15px;
}


.app-section {
  background-color: #F1F8E9;
}

.app-buttons img {
  margin: 10px;
  width: 200px;
  transition: transform 0.2s;
}

.app-buttons img:hover {
  transform: scale(1.05);
}

.contact-section {
  background-color: #E0F2F1;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

form input,
form textarea {
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}

form button {
  padding: 12px;
  background-color: #66BB6A;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #4CAF50;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #08a08b;
  color: white;
}
