* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Background Hero */
#hero-banner {
  background: #020024;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
  color: #f1f1f1;
  padding: 10px 20px;
}

/* Hero container */
#hero-banner .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Hero */
.logo-link {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 2rem;
  cursor: pointer;
}

/* text Hero */
.hero-content {
  max-width: 600px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 3rem;
}

/* Button Style */
.hero-button {
  background-color: #f1f1f1;
  color: #188ea8;
  text-decoration: none;
  padding: 0.6rem;
  text-align: center;
  font-weight: 600;
  width: 180px;
  border-radius: 5px;
  margin-top: 25px;
  transition: 1s;
}

.hero-button:hover {
  color: #fff;
  background-color: #02bbff;
  border: 3px solid #fff;
}

/* Banner do Hero */
.hero-img {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-img img {
  width: 350px;
  border-radius: 25px;
}

/* Benefits Section */

/* Title */
 h2 {
    margin-top: 45px;
    text-align: center;
    color: #020024;
    margin-bottom: 30px;
}

#benefits {
    margin-bottom: 45px;
}

#benefits .container {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;

}

#benefits .benefit-box {
    color: #020024;
    padding: 1.2rem;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 1s;
    box-shadow: 10px 10px 5px -1px rgba(2,0,36,0.69);
    -webkit-box-shadow: 10px 10px 5px -1px rgba(2,0,36,0.69);
    -moz-box-shadow: 10px 10px 5px -1px rgba(2,0,36,0.69);
}

#benefits .benefit-box svg {
    margin-bottom: 15px;
}

#benefits .benefit-box h3 {
    margin-bottom: 5px;
}

#benefits .benefit-box p {
    width: 300px;
}

#benefits .benefit-box:hover {
    background-color: #ddd;
}

/* Form Section */
#form-section .container {
    margin: 0 auto;
    max-width: 1200px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-control {
    display: flex;
    padding: .3rem 1rem;
}

.form-control input {
    width: 100%;
    padding: .3rem .7rem;
    border: 2px solid #020024a1;
    border-radius: 5px;
}

.form-control input::placeholder {
    color: #020024;
    font-size: .9rem;
}

.form-control:first-child {
    gap: 5px;
    
}

.form-control:first-child input {
    max-width: 50%;
}

.form-control select {
    width: 100%;
    color: #020024;
    border: 2px solid #020024a1;
    padding: .3rem 1rem;
}

.form-control select:focus {
    border: 2px solid #020024;
}

.action-control {
    display: flex;
    justify-content: center;
}

.action-control button {
    padding: .3rem .7rem;
    margin-top: 35px;
    border-radius: 5px;
    background-color: #020024;
    color: #ddd;
    font-weight: 500;
    margin-bottom: 35px;
}

/* CTA Section */
#cta-section {
    height: 600px;
    background-image: url('../img/family.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: top bottom;
    background-repeat: no-repeat;
    
}

#cta-section .container {
    width: 100%;
    height: 100%;
    background-color: #02002484;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta1 {
    width: 50%;
}

.cta2 {
    width: 50%;
    height: 100%;
    background-color: #02002492;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta2 h3 {
    color: #ddd;
    font-size: 4rem;
    font-weight: 600;
    text-align: left;
    padding: 2rem;
}

.cta2 a {
    text-decoration: none;
    color: #ddd;
    padding: 1rem;
    border-radius: 35px;
    border: 2px solid #ddd;
    width: 250px;
    margin: 0 auto;
    margin-top: 80px;
    transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.cta2 a:hover {
    background-color: #ddd;
    color: #020024;
}

/* Footer */
#footer {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    background-color: #ccc;
    color: #020024;
    border-top: 2px solid #dddddd85;
    padding: .5rem .3rem;
}

/* Media Queries */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* Tablet */
@media (max-width: 768px) {

    /* Hero Banner */
  .logo-link {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .hero-img img {
    width: 200px;
  }

  .hero-content {
   gap: 15px;
    
  }

  /* Call to action */
  .cta2 h3 {
    font-size: 3rem;
  }
}

@media (max-width: 630px) {
    .cta1 {
        display: none;
    }

    .cta2 {
        width: 100%;
    }

    .cta2 h3 {
        text-align: center;
    }
}

@media (max-width: 580px) {
    /* Hero Banner */
    .hero-img  {
        display: none;
    } 
}


