    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #F9F9F8;
    }

    /* NAVBAR */
    header {
      display: flex;
      position: fixed;
      top: 0;
      z-index: 1;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8%;
      background: #F9F9F8;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: 100px;
      width: 100%;
    }

    section{
      height: calc(100vh - 100px);
      /* margin-top: 100px; */
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      color: #1e3a5f;
    }

    .logo span {
      color: #428615;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #1e3a5f;
      font-weight: 500;
    }

    header img{
        height: stretch
    }

    header{
        height: 100px;
    }

    .btn-whatsapp {
      background: #428615;
      color: #F9F9F8;
      padding: 10px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
    }

    .buttons {
      margin-top: 20px;
    }

    .btn {
      padding: 12px 22px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      margin-right: 10px;
    }

    .btn-primary {
      background: #428615;
      color: #F9F9F8;

    }

    .btn-outline {
      border: 2px solid #428615;
      color: #428615;
    }

    .banner{
        background-image: url(/img/background2.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 20px 8%;
    }

    .banner-text{
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 40%;
    }

    .banner-text .titleAzul{
        font-size: 50px;
        font-weight: bold;
        color: #052755;
    }

    .banner-text .titleVerde{
        font-size: 50px;
        font-weight: bold;
        color: #428615;
    }

    /* BENEFITS */
    .benefits {
      background: white;
      margin: -40px auto;
      width: 85%;
      border-radius: 15px;
      display: flex;
      justify-content: space-around;
      padding: 25px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .benefit {
      text-align: center;
      max-width: 200px;
    }

    .benefit h3 {
      color: #0e2a47;
      margin-bottom: 5px;
    }

    .benefit p {
      font-size: 14px;
      color: #666;
    }

    /* FOOTER CTA */
    .footer {
      /* height: 100px; */
      background: linear-gradient(270deg, #0e2a47 50%, #428615 100%);
      color: white;
      padding: 60px 8%;
      /* margin-top: 60px; */
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer h2 {
      font-size: 28px;
    }