
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    
}

h1{
    color: white;
    font-size: 4rem;
    font-weight: 200;
    line-height: 4.3rem;
}
.section-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bgLanding_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 5rem 0 5rem;

}

.box {
    flex:1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box1 {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.orange{
    text-transform: uppercase;
    color: #ea7215;
    font-weight: 900;
}

.blue{
    text-transform: uppercase;
    color: #023c7b;
    font-weight: 900;
}


.box3 {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.box3 a{
    padding: 0 0 0 3rem;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: .3s all ease-in-out;
    cursor: pointer;
}

.box3 a:hover{
    color: #00ff00;
    scale: 1.2;
}

.box i {
    font-size: 4rem;
    margin-right: .5rem;
}

img{
    animation: is-bouncing 1s ease-in alternate infinite;
}

 /* Breakpoint para telas menores que 768px (dispositivos móveis) */
 @media (max-width: 768px) {

    .section-container {
        display: flex;
        flex-direction: column;
        background-image: url(../img/bgLanding_mobile.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0 3.5rem;
        height: 100vh;
    }
    h1{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .box {
        flex-basis: 100%;
    }
    .box1 {
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 0 0 0 7rem;
    }

    .box1 h1{
        font-size: 2rem;
        line-height: 2rem;
    }
   .box2{
    padding: .5rem 0;
   }
    .box3 {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 1rem;
    }
    .box3 a{
        padding: 0rem;
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
        transition: .3s all ease-in-out;
        cursor: pointer;
    }
    .box i {
        font-size: 2rem;
        margin-right: .5rem;
    }
}

/* Breakpoint para telas menores que 1024px (tablets) */
@media (max-width: 1024px) {
    .box {
        font-size: 20px;
    }
}

/* Breakpoint para telas maiores que 1024px (desktops) */
@media (min-width: 1025px) {
    .box {
        font-size: 24px;
    }
}


/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
      
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
  }
  @keyframes slide-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
      
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
  }

  .slide-top {
	-webkit-animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
	        animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}

/**
 * ----------------------------------------
 * animation is-bouncing
 * ----------------------------------------
 */


@keyframes is-bouncing{
    to{
        transform: translateY(30px);
    }
}

.is-bouncing{
    animation: is-bouncing 1s ease-in alternate infinite;
}

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */

@-webkit-keyframes slide-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
              transform: translateY(100px);
      
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
  }

@keyframes slide-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
              transform: translateY(100px);
      
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
  }

  .slide-bottom {
	-webkit-animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
	        animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
  }