@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/*Geral*/
*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

html:focus-within{
    scroll-behavior: smooth !important;
}

body{
    height: 100vh;
    background: #173b0d;
}




/*Animações carregar página*/
@keyframes crescer{
    0%{
        opacity: 0.7;
        transform: scale(0.9);
    }

    100%{
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes aparecer{
    0%{
      opacity: 0;
    }
  
    100%{
      opacity: 1;
    }
  }


@keyframes fade-up{
    0%{
      opacity: 0;
      transform: translateY(30px) scale(0.9);
    }
  
    100%{
      opacity: 1;
      transform: translateY(0px) scale(1);
    }
  }
  
  @keyframes fade-down{
    0%{
      opacity: 0;
      transform: translateY(-15px) scale(0.920);
    }
  
    100%{
      opacity: 1;
      transform: translateY(0px) scale(1);
    }
  }





/*Header*/
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 77px;
    padding: 0.5rem 7%;
    background-color: #0b1a06;
    border-bottom: 1px solid #ffb7423d;
    z-index: 999;
}

.navbar h2{
    color: #ffb742;
    font-weight: 600;
    font-size: 32px;
    animation: fade-down 1s;
}

.navbar ul{
    display: flex;
}

.navbar ul li{
    list-style: none;
}

.navbar ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-right: 70px;
    transition: color 0.3s ease;
    animation: aparecer 1s;
}

.navbar ul li:hover a{
    color: #ffb742;
}

.Rentabilidade{
    background: #ffb742;
    padding: 6px 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fade-down 1s;
}

.Rentabilidade a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.Rentabilidade:hover{
    background: #fb8c00;
}

.Rentabilidade:hover a{
    color: #ffe1bc;
}




/*Introdução*/
.container{
    min-height: 100vh;
    width: 100%;
    margin: auto;
    padding: 3rem 5rem;
    -webkit-mask-image: linear-gradient(black 85%, transparent);
    mask-image: linear-gradient(black 85% , transparent);
    background: url(../images/Banner.jpg) no-repeat;
    background-repeat: no-repeat; 
    background-size: cover;
    background-position: center;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
}

.container1{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 1rem;
}

.container3{
    max-width: 966px;
    margin: auto;
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #ffb742ce;
    z-index: -100;
}

header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem; 
}

header .content h4{
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
    animation: crescer 1s;
}

header .content h1{
    color: #fff;
    margin-bottom: 1rem;
    margin-left: 2rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    animation: crescer 1s;
}

header .content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #ffb742;
    text-shadow: #ffb74223 0px 0px 25px;
    animation: crescer 1s;
}

header .content p{
    margin-bottom: 2rem;
    margin-left: 2rem;
    color: #ccc;
    animation: crescer 1s;
}

header .Rentabilidade{
    margin-left: 2.1rem;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
}

header .image{
    position: relative;
    animation: float 9s ease-in-out infinite;
    z-index: -1;
}

@keyframes float{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-13px);
    }
    
}

header .image::before{
    content: "o";
    position: absolute;
    top: 7%;
    left: 48%;
    transform: translateX(-53%);
    font-size: 60rem;
    font-weight: 300;
    line-height: 20rem;
    color: #ffb7429a;
    opacity: 0.07;
    z-index: -100;
}

header .image img{
    position: relative;
    margin-left: 14%;
     max-width: 1200px;
     height: 33rem;
    
}




/* Vídeo Pitch */
.video{
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 55px 0 150px;
    animation: fade-up 1s;
}

.video iframe{
    height: 552px;
    width: 960px;
    border-radius: 12px;
    border-style: solid;
    border: 2px solid #091605;
    border-width: 15px;
    border-color: #0d1f07;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.384);
    animation: fade-up 1s;
}




/*Nossos recursos*/
section .header{
    margin-bottom: 1rem;
     text-align: center;
     font-size: 2.25rem;
     font-weight: 600;
     background-color: #081304;
     color: #ffb742;
     border-radius: 12px;
     box-shadow: 0 0 20px 3px #ffb7421c;
     border: 0.5px solid #ffa81b4b;
     animation: aparecer 1s;
}

section .header span{
    text-shadow: #ffb74233 0px 0px 25px;
    animation: aparecer 2s;
}

.container2 h1{
    margin-bottom: 1rem;
    margin-left: 8rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
    visibility: hidden;
}

.features{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    gap: 2rem;
}

.features .card{
    border-radius: 10px;
    height: 500px;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fade-up 1s;
    
}

.card img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    border: 1px solid #091605;
    transition: transform 0.5s;
}

.features .card h3{
    font-weight: 550;
    position: absolute;
	font-size: 35px;
	letter-spacing: 2px;
    color: #ffa616;
    text-shadow: #000 1px -1px 2px ;
    transition: opacity 0.4s;
    animation: fade-up 1s;
}

.overlay2{
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -1;
}

.overlay1 {
	width: 100%;
	height: 0;
	background: linear-gradient(transparent,#0b1a06 65%);
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 10px;
	text-align: center;
	font-size: 14px;
	transition: height 0.5s;
}

.overlay1 h4 {
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 73%;
	font-size: 35px;
	letter-spacing: 2px;
    color: #ffb742;
}

.overlay1 p {
	color: #fff;
	text-decoration: none;
	font-size: 17px;
    font-weight: 500;
	padding: 7px 15px;
}
.card:hover img{
    transform: scale(1.1);
}

.card:hover .overlay1{
    height: 100%;
}

.card:hover h3{
    opacity: 0;
}




/*Equipe*/
div .header{
    margin-bottom: 1rem;
     text-align: center;
     font-size: 2.25rem;
     font-weight: 600;
     background-color: #081304;
     color: #ffb742;
     border-radius: 12px;
     box-shadow: 0 0 20px 3px #ffb7421c;
     border: 0.5px solid #ffa81b4b;
     animation: aparecer 1s;
}

div .header span{
    text-shadow: #ffb74233 0px 0px 25px;
    animation: aparecer 2s;
}

.container2{
    max-width: 1400px;
    margin: auto;
    padding: 7rem 1rem;
}

.main-card .cardspictures{
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
    animation: fade-down 1s;
}

.main-card .cardspictures .cardpicture{
    background: #0d1f07;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    width: calc(100% / 3 - 140px);
    margin-top: 2.5rem;
    padding: 30px;
    border-radius: 24px;
    border: 2px solid #091605;
}

.cardspictures .cardpicture .content{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cardspictures .cardpicture .content .picture .Vini{
    height: 130px;
    width: 130px;
    margin-bottom: 14px;
    background: #a7a7a7;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    padding: 3px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardspictures .cardpicture .content .picture .Vini::before{
    content: "";
    background-image: conic-gradient(
        #ff0052 20deg,
        transparent 120deg 
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.cardspictures .cardpicture .content .picture .Vini::after{
    content: "";
    background: url(../images/Vinicius.png); 
    background-size: cover;
    background-position: center;
    width: 98%;
    height: 98%;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cardspictures .cardpicture .content .picture .Patrick{
    height: 130px;
    width: 130px;
    margin-bottom: 14px;
    background: #a7a7a7;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    padding: 3px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardspictures .cardpicture .content .picture .Patrick::before{
    content: "";
    background-image: conic-gradient(
        #ff0052 20deg,
        transparent 120deg 
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.cardspictures .cardpicture .content .picture .Patrick::after{
    content: "";
    background: url(../images/Patrick.png); 
    background-size: cover;
    background-position: center;
    width: 98%;
    height: 98%;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cardspictures .cardpicture .content .picture .Leandro{
    height: 130px;
    width: 130px;
    margin-bottom: 14px;
    background: #a7a7a7;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    padding: 3px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardspictures .cardpicture .content .picture .Leandro::before{
    content: "";
    background-image: conic-gradient(
        #ff0052 20deg,
        transparent 120deg 
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.cardspictures .cardpicture .content .picture .Leandro::after{
    content: "";
    background: url(../images/Leandro.png); 
    background-size: cover;
    background-position: center;
    width: 98%;
    height: 98%;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cardpicture .content .picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px solid #fff;
}

.cardpicture .content .details .name{
    font-size: 20px;
    font-weight: 500;
    color: #ffb742;
}

.cardpicture .content .details .job{
    font-size: 20px;
    color: #fff;
}

.cardpicture .content .media-icons{
    display: flex;
    margin-top: 15px;
}

.cardpicture .content .media-icons a{
    height: 35px;
    width: 35px;
    color: #fff;
    background: #f39600;;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.content .media-icons a:hover{
    border-color: #ffb742;
    color: #f39600;
    background: #fff;
}




/* Card2 */
.main-card1 .cardspictures1{
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
    animation: fade-up 1s;
}

.main-card1 .cardspictures1 .cardpicture1{
    background: #0d1f07;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    width: calc(100% / 3 - 80px);
    padding: 30px;
    margin-left: 7rem;
    margin-right: 7rem;
    margin-top: -6rem;
    border-radius: 24px;
    border: 2px solid #091605;
}

.cardspictures1 .cardpicture1 .content1{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Pedro{
    height: 130px;
    width: 130px;
    margin-bottom: 14px;
    background: #a7a7a7;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    padding: 3px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Pedro::before{
    content: "";
    background-image: conic-gradient(
        #ff0052 20deg,
        transparent 120deg 
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Pedro::after{
    content: "";
    background: url(../images/Pedro.png); 
    background-size: cover;
    background-position: center;
    width: 98%;
    height: 98%;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Rafael{
    height: 130px;
    width: 130px;
    margin-bottom: 14px;
    background: #a7a7a7;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    padding: 3px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Rafael::before{
    content: "";
    background-image: conic-gradient(
        #ff0052 20deg,
        transparent 120deg 
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.cardspictures1 .cardpicture1 .content1 .picture1 .Rafael::after{
    content: "";
    background: url(../images/Rafael.png); 
    background-size: cover;
    background-position: center;
    width: 98%;
    height: 98%;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cardpicture1 .content1 .picture1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px solid #fff;
}

.cardpicture1 .content1 .details1 .name1{
    font-size: 20px;
    font-weight: 500;
    color: #ffb742;
}

.cardpicture1 .content1 .details1 .job1{
    font-size: 20px;
    color: #fff;
}

.cardpicture1 .content1 .media-icons1{
    display: flex;
    margin-top: 10px;
}

.cardpicture1 .content1 .media-icons1 a{
    height: 35px;
    width: 35px;
    color: #fff;
    background: #f39600;;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.content1 .media-icons1 a:hover{
    border-color: #ffb742;
    color: #f39600;
    background: #fff;
}




/*Footer*/
footer{
    position: relative;
    width: 100%;
    min-height: 100px;
    justify-content: center;
    align-items: center;
    background: #0b1a06;
    padding: 80px 50px 40px;
    margin-top: 150px;
    z-index: -1;
}

footer .start{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    background-color: #ffb742;
    padding: 30px 25px;
    border-radius: 15px;
    width: 70%;
    top: -21%;
    left: 15%;
    box-shadow: 0 0 30px 2px #ffb74221;
    z-index: 10000;
}

footer .start p{
    font-size: 13px;
    width: 20%;
}

footer .start button{
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 550;
    transition: all 0.3s ease;
}

footer .start button a {
    text-decoration: none;
    color: #000;
}

footer .start button:hover{
    background-color: #fff;
    border-color: #fff;
    color: #f39600;
}

footer .cols{
    display: flex;
    align-items: start;
}

footer .cols .about-col{
    flex: 3;
}

footer .cols .about-col h3{
    color: #ffb742;
    margin-bottom: 20px;
}

footer .cols .about-col p{
    color: #cccccc;
    font-size: 13px;
}

footer .cols .links-col{
    flex: 2.5;
}

footer .cols .links-col h4{
    color: #fff;
    margin-bottom: 20px;
}

footer .cols .links-col a{
    display: block;
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    line-height: 26px;
    transition: color 0.3s ease;
    animation: aparecer 1s;
}

footer .cols .links-col a:hover{
    color: #ffb742;
}

footer .cols .social-icon{
    flex: 2.5;
}

footer .cols .social-icon h4{
    color: #fff;
    margin-bottom: 20px;
}

.social-icon a{
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: transparent;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .3);
    margin: 0 8px;
    z-index: 1;
    align-items: center;
    text-align: center;
    line-height: 45px;
    transition: .3s;
    animation: aparecer 1s;
}

.social-icon a:hover{
    background: #ffb742;
    box-shadow: 0 0 5px #ffb742, 0 0 10px #ffb742;
    transform: rotate(135deg)
}


.social-icon a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(3px);
    border-radius: 10px;
    background-size: 600%;
    background: linear-gradient(45deg, #ff0000b0, #ff7300b0, #fffb00b0, #48ff00b0, #00ffd5b0, #002bffb0, #ff00c8b0, #ff0000b0);
    z-index: -1;
}

.social-icon a i{
    font-size: 30px;
    color: #fff;
    transition: .3s;
}

.social-icon a:hover i{
    transform: rotate(225deg);
    color: #ffb742;
}

footer .wave{
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    height: 37%;
    background: url(../images/wave.png);
    background-size: 1000px 100px;
}

footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave{
    0%
    {
        background-position-x: 1000px;
    }
    100%
    {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02{
    0%
    {
        background-position-x: 0px;
    }
    100%
    {
        background-position-x: 1000px;
    }
}

.copyright{
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 1rem;
    background-color: #091304ee;
    color: #fff;
    font-size: 0.8rem;
    z-index: 1;
}






/* Responsivo */
/* 1841px */
@media screen and (max-width: 1841px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 50%;
    }


    /*Footer*/
    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
    }

    footer .cols .social-icon{
        flex-basis: 30%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }

}


/* 1760px */
@media screen and (max-width: 1760px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 52%;
    }


    /*Footer*/
    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
    }

    footer .cols .social-icon{
        flex-basis: 30%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }

}


/* 1661px */
@media screen and (max-width: 1661px) {
    
    /*Header*/
    header .image::before{
        top: 6%;
        left: 54%;
    }


    /*Footer*/
    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
    }

    footer .cols .social-icon{
        flex-basis: 20%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }
    
    
}


/* 1616px */
@media screen and (max-width: 1616px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 56%;
    }
    
}


/* 1516px */
@media screen and (max-width: 1516px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 59%;
    }

    .navbar{
        padding: 0.5rem 5%;
    }
    
    .navbar ul li a{
        margin-right: 50px;
        font-size: 18px;
    }
    
    .navbar h2{
        font-size: 32px;
    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }
    
}


/* 1416px */
@media screen and (max-width: 1416px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 64%;
    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }
    
}


/* 1344px */
@media screen and (max-width: 1344px){

    /*Header*/
    header .image::before{
        top: 6%;
        left: 58%;
        font-size: 58rem;
    }
    
    
    header .image img{
        margin-left: 8%;
         height: 32rem;
    }

    header .Rentabilidade{
        margin-left: 2rem;
        padding: 0.3rem 2rem;
        margin-top: 1.2rem;
        font-size: 1rem;
    }


    .navbar ul li a{
        margin-right: 46px;
        font-size: 18px;
    }
    
    .navbar h2{
        font-size: 31px;
    }

    
    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }

}


/* 1278px */
@media screen and (max-width: 1278px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 60%;
        font-size: 57rem;
    }
    
    
    header .image img{
        margin-left: 8%;
         height: 31rem;
    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }

}


/* 1201px */
@media screen and (max-width: 1201px) {

    /*Header*/
    header .image::before{
        top: 6%;
        left: 64%;
        font-size: 56rem;
    }
    
    header .image img{
        margin-left: 8%;
         height: 31rem;
    }


    /* Nossos Recursos */
    .features .card{
        height: 460px;

    }


    /* Equipe */
    .main-card .cardspictures .cardpicture{
        width: 26%;
    }
}


/* 1169px */
@media screen and (max-width: 1169px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 5%;
    }
    
    
    .navbar ul li a{
        margin-right: 35px;
        font-size: 18px;
    }
    
    .navbar h2{
        font-size: 28px;
    }


    header .image::before{
        top: 4%;
        left: 63%;
        font-size: 55rem;
    }
    
    
    header .image img{
        margin-left: 8%;
         height: 30rem;
    }



    /* Nossos Recursos */
    .features .card{
        height: 440px;

    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }

    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
    }

    footer .cols .social-icon{
        flex-basis: 20%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }
    
}


/* 1124px */
@media screen and (max-width: 1124px) {

    /* Header */
    header .image::before{
        top: 4%;
        left: 63%;
        font-size: 55rem;
    }
    
    
    header .image img{
        margin-left: 8%;
         height: 30rem;
    }
    
    header .Rentabilidade{
        margin-left: 2rem;
        padding: 0.3rem 2rem;
        margin-top: 1rem;
        font-size: 1rem;
    }

    .navbar{
        padding: 0.5rem 5%;
    }
    
    
    .navbar ul li a{
        margin-right: 37px;
        font-size: 17.5px;
    }
    
    .navbar h2{
        font-size: 28px;
    }


    /*Nossos recursos*/
    .features{
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }

    .features .card{
        width: 55%;
        
    }
    
    .card img{
        width: 100%;
        height: 100%;
    }
    
    .features .card h3{
        font-size: 30px;
    }
    
    .overlay1 h4 {
        font-size: 30px;
    }
    

     /* Equipe */
     .main-card .cardspictures .cardpicture{
        width: 25%;
    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        left: 10%;
        top: -20%;
    }

    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
    }

    footer .cols .social-icon{
        flex-basis: 20%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }

}


/* 1006px */
@media (max-width: 1006px){

    /* Vídeo Pitch */
    .video iframe{
        height: 552px;
        width: 100%;
    }
}


/* 1000px */
@media screen and (max-width: 1000px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 4%;
    }
    
    .navbar ul li a{
        margin-right: 30px;
        font-size: 17px;
    }
    
    .navbar h2{
        font-size: 28px;
    }

    .Rentabilidade a{
        font-size: 16px;
    }


    /*Introdução*/
    header .image::before{
        top: 0%;
        left: 64%;
        font-size: 50rem;
    }
    
    header .image img{
        margin-left: 8%;
         height: 27rem;
    }
    

    /*Nossos recursos*/
    .features .card h3{
        font-size: 26px;
    }

    .overlay1 h4 {
        font-size: 26px;
    }

    .features .card{
        height: 390px;

    }

}


/* 925px */
@media screen and (max-width: 925px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 3%;
    }
    
    
    .navbar ul li a{
        margin-right: 20px;
        font-size: 17px;
    }
    
    .navbar h2{
        font-size: 28px;
    }
    

    /*Introdução*/
    .Rentabilidade a{
        font-size: 16px;
    }

    header .image::before{
        top: 0%;
        left: 64%;
        font-size: 50rem;
    }    
    
    header .image img{
        margin-left: 8%;
         height: 27rem;
    }

    header .Rentabilidade{
        margin-left: 0.5rem;
        padding: 0.1rem 2rem;
        margin-top: 1rem;
        font-size: 1rem;
    }

    header .content h4{
        margin-left: 0.1%;
    }
    
    header .content h1{
        margin-left: 0.1%;
    }
    
    header .content p{
        margin-left: 0.1%;

    }


    /*Nossos recursos*/
    .features{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features .card{
        width: 61%;
        margin-left: 19%;    
    }
        
    .card img{
        width: 100%;
        height: 100%;
    }
        
    .features .card h3{
         font-size: 30px;
    }
        
    .overlay1 h4 {
         font-size: 30px;
     }
        
}


/* 800px */
@media screen and (max-width: 800px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 3%;
    }
    
    
    .navbar ul li a{
        margin-right: 18px;
        font-size: 16px;
    }
    
    .navbar h2{
        font-size: 28px;
    }


    /* Introdução */
    header .image::before{
        top: -5%;
        left: 64%;
        font-size: 44rem;
    }    
    
    header .image img{
        margin-left: 8%;
         height: 24rem;
    }


    /*Nossos recursos*/
    .features .card{
        width: 68%;
        margin-left: 19%;
        margin-top: 10%;
    }
    
    .features .card h3{
        font-size: 30px;
    }
    
    .overlay1 h4 {
        font-size: 30px;
    }


    /* Equipe */
    .main-card .cardspictures .cardpicture{
        width: 27%;
    }

    .main-card1 .cardspictures1 .cardpicture1{
        width: 37%;
        margin-left: 8%;
    }


    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        height: 35%;
        left: 10%;
        top: -20%;
    }

    footer .start p{
        font-size: 12px;
        width: 20%;
    }
    
    footer .start button{
        background: transparent;
        border: 1px solid #000;
        cursor: pointer;
        padding: 10px 5px;
        border-radius: 100px;
        font-weight: 550;
        transition: all 0.3s ease;
    }
}


/* 741px */
@media screen and (max-width: 741px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 3%;
    }
    
    .navbar ul li a{
        margin-right: 14px;
        font-size: 15px;
    }
    
    .navbar h2{
        font-size: 25px;
    }

    .Rentabilidade a{
        font-size: 16px;
    }

    .Rentabilidade{
        width: 25%;
    }


    /* Introdução */
    header .image::before{
        top: -21%;
        left: 53%;
        font-size: 44rem;
    }
    
    header .image img{
        margin-left: 14%;
        margin-top: -11%;
         height: 25rem;
    }

    .container{
        padding: 3.5rem 5rem;
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }


    /*Nossos recursos*/
    .features .card{
        width: 75%;
        margin-left: 10%;
        margin-top: 10%;
    }
    
    .features .card h3{
        font-size: 30px;
    }
    
    .overlay1 h4 {
        font-size: 30px;
    }


    /* Equipe */
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 5%;
    }

}


/* 790px */
@media screen and (max-width: 790px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 3%;
    }
    
    .navbar ul li a{
        margin-right: 14px;
        font-size: 15px;
    }
    
    .navbar h2{
        font-size: 25px;
    }

    .Rentabilidade a{
        font-size: 16px;
    }

    .Rentabilidade{
        width: 25%;
    }


    /* Introdução */
    header .image::before{
        top: -21%;
        left: 54%;
        font-size: 44rem;
    }
    
    header .image img{
        margin-left: 14%;
        margin-top: -11%;
         height: 25rem;
    }

    .container{
        padding: 3.5rem 5rem;
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }


    /*Nossos recursos*/
    .features .card{
        width: 75%;
        margin-left: 10%;
        margin-top: 10%;
    }
    
    .features .card h3{
        font-size: 30px;
    }
    
    .overlay1 h4 {
        font-size: 30px;
    }


    /* Equipe */
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 5%;
    }

}


/* 785px */
@media screen and (max-width: 785px) {

    /* Introdução */
    header .image{
        margin-top: 1rem;
    }
    
    header .image::before{
        top: -51%;
        left: 52%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 15%;
        margin-top: -21%;
    }

    header .Rentabilidade{
        margin-left: 0.5rem;
        padding: 0.5rem 0.5rem;
        font-size: 1rem;
    }

    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        height: 35%;
        left: 10%;
        top: -20%;
    }

    footer .start p{
        font-size: 12px;
        width: 20%;
    }
    
    footer .start button{
        background: transparent;
        border: 1px solid #000;
        cursor: pointer;
        padding: 10px 5px;
        border-radius: 100px;
        font-weight: 550;
        transition: all 0.3s ease;
    }

    /*Equipe*/
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 8%;
    }
    
}



/* 758px */
@media screen and (max-width: 758px) {

    /* Introdução */
    header .image::before{
        top: -47%;
        left: 51%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 12%;
        margin-top: -21%;
    }

    /*Equipe*/
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 7%;
    }
    
    
}


/* 735px */
@media screen and (max-width: 735px) {

    /* Introdução */
    header .image::before{
        top: -45%;
        left: 51%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 11%;
        margin-top: -21%;
    }


    /*Equipe*/
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 6%;
    }
    
    
}


/* 712px */
@media screen and (max-width: 712px) {

    /* Introdução */
    header .image::before{
        top: -43%;
        left: 52%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 10%;
        margin-top: -21%;
    }


    /*Equipe*/
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 5%;
    }
}


/* 696px */
@media screen and (max-width: 696px) {

    /* Introdução */
    header .image::before{
        top: -40%;
        left: 52%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 8%;
        margin-top: -21%;
    }


    /*Equipe*/
    .main-card1 .cardspictures1 .cardpicture1{
        margin-left: 3%;
    }
}



/* 680px */
@media screen and (max-width: 680px) {

    /*Header*/
    .navbar{
       padding: 0.5rem 5%;
   }
   
   .navbar ul li a{
       margin-right: 2px;
       font-size: 14px;
       visibility: hidden;
   }
   
   .navbar h2{
       font-size: 30px;
   }
   

   /*Introdução*/
   .Rentabilidade a{
       font-size: 16px;
       text-align: center;
       align-items: center;
   }

   .Rentabilidade{
       width: 30%;
       padding: 7px 8px;
   }

   header .image::before{
       top: -45%;
       left: 54%;
       font-size: 45rem;
   }
   
   header .image img{
       margin-left: 15%;
       margin-top: -21%;
        height: 25rem;
   }


   /*Nossos recursos*/
   .container{
       padding: 3.5rem 3rem;
       display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   }

   .features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

   .features .card{
       width: 80%;
       margin-left: 10%;
       margin-top: 10%;
   }


   /*Equipe*/
   .main-card .cardspictures .cardpicture{
    width: 55%;
    margin-left: 21%;
    margin-top: 20%;
}

.main-card .cardspictures{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.main-card1 .cardspictures1 .cardpicture1{
    width: 55%;
    margin-left: 21%;
    margin-top: 20%;
}

.container1{
    margin-top: -30%;
}

.main-card1 .cardspictures1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


/* footer */
footer .cols .links-col{
    flex-basis: 50%;
    visibility: hidden;
}

footer .cols .social-icon{
    flex-basis: 50%;
}

}


/* 660px */
@media screen and (max-width: 660px) {

    /* Introdução */
    header .image::before{
        top: -44%;
        left: 51%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 10%;
        margin-top: -21%;
    }
    
}


/* 640px */
@media screen and (max-width: 640px) {

    /* Introdução */
    header .image::before{
        top: -42%;
        left: 52%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 10%;
        margin-top: -21%;
    }
    
}


/* 620px */
@media screen and (max-width: 620px) {

    /* Introdução */
    header .image::before{
        top: -41%;
        left: 54%;
        font-size: 46rem;
    }
    
    header .image img{
        margin-left: 10%;
        margin-top: -21%;
    }
    
}


/* 600px */
@media screen and (max-width: 600px) {

    /*Header*/
    .navbar{
       padding: 0.5rem 5%;
   }
   
   .navbar ul li a{
       margin-right: 2px;
       margin-left: 1px;
       font-size: 1px;
       visibility: hidden;
   }
   
   .navbar h2{
       font-size: 27px;
   }
   

   /*Introdução*/
   .Rentabilidade a{
       font-size: 16px;
       text-align: center;
       align-items: center;
   }

   .Rentabilidade{
       width: 40%;
       padding: 7px 8px;
   }

   header .image::before{
       top: -38%;
       left: 53%;
       font-size: 46rem;
   }
   
   header .image img{
       margin-left: 7%;
       margin-top: -21%;
        height: 25rem;
   }


   /*Nossos recursos*/
   .container{
       padding: 3.5rem 3rem;
       display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   }
  
   .features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

   .features .card{
       width: 52%;
       margin-left: 22%;
   }


   /*Equipe*/
   .main-card .cardspictures .cardpicture{
       width: 65%;
       margin-left: 18%;
       margin-top: 20%;
   }

   .main-card .cardspictures{
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   }

   .main-card1 .cardspictures1 .cardpicture1{
       width: 65%;
       margin-left: 18%;
       margin-top: 20%;
   }

   .container1{
       margin-top: -35%;
   }

   .main-card1 .cardspictures1{
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   }

 
   /*Footer*/
   footer{
       margin-top: 150px;
   }

   footer .start{
       width: 80%;
       height: 35%;
       left: 10%;
       top: -24%;
   }

   footer .cols .about-col{
       flex-basis: 50%;
   }

   footer .cols .links-col{
       flex-basis: 50%;
       visibility: hidden;
   }

   footer .cols .social-icon{
       flex-basis: 30%;
   }

   footer .cols .new-col{
       flex-basis: 50%;
   }

   footer .start p{
       width: 50%;
   }

   .copyright{
       align-items: center;
       text-align: center;
       justify-content: center;
   }

}


/* 577px */
@media screen and (max-width: 577px) {

    /* Introdução */
    header .image::before{
        top: -35%;
        left: 52%;
        font-size: 45rem;
    }
    
    header .image img{
        margin-left: 4%;
        margin-top: -21%;
         height: 25rem;
    }
 
 }


/* 555px */
@media screen and (max-width: 555px) {

   /* Introdução */
   header .image::before{
       top: -34%;
       left: 53%;
       font-size: 45rem;
   }
   
   header .image img{
       margin-left: 2%;
       margin-top: -21%;
        height: 25rem;
   }

}


/* 527px */
@media screen and (max-width: 555px) {

    /* Introdução */
    header .image::before{
        top: -32%;
        left: 53%;
        font-size: 45rem;
    }
    
    header .image img{
        margin-left: -1%;
        margin-top: -21%;
         height: 25rem;
    }
 
 }


/* 500px */
@media screen and (max-width: 500px) {

     /*Header*/
     .navbar{
        padding: 0.5rem 5%;
    }
    
    .navbar ul li a{
        margin-right: 2px;
        margin-left: 1px;
        font-size: 1px;
        visibility: hidden;
    }
    
    .navbar h2{
        font-size: 27px;
    }
    

    /*Introdução*/
    .Rentabilidade a{
        font-size: 16px;
        text-align: center;
        align-items: center;
    }

    .Rentabilidade{
        width: 40%;
        padding: 7px 8px;
    }

    header .image::before{
        top: -32%;
        left: 51%;
        font-size: 43rem;
    }
    
    header .image img{
        margin-left: -4%;
        margin-top: -21%;
         height: 24rem;
    }


    /*Nossos recursos*/
    .container{
        padding: 3.5rem 3rem;
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    }

   
    .features .card{
        width: 60%;
        margin-left: 20%;
    }


    /*Equipe*/
    .main-card .cardspictures .cardpicture{
        width: 65%;
        margin-left: 18%;
        margin-top: 20%;
    }

    .main-card .cardspictures{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .main-card1 .cardspictures1 .cardpicture1{
        width: 65%;
        margin-left: 18%;
        margin-top: 20%;
    }

    .container1{
        margin-top: -35%;
    }

    .main-card1 .cardspictures1{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

  

    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        height: 35%;
        left: 10%;
        top: -24%;
    }

    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
        visibility: hidden;
    }

    footer .cols .social-icon{
        flex-basis: 30%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }

    footer .start p{
        width: 50%;
    }

    .copyright{
        align-items: center;
        text-align: center;
        justify-content: center;
    }

}


/* 430px */
@media screen and (max-width: 430px) {

    /*Header*/
    .navbar{
        padding: 0.5rem 5%;
    }
    
    .navbar ul li a{
        margin-right: 2px;
        margin-left: 1px;
        font-size: 1px;
        visibility: hidden;
    }
    
    .navbar h2{
        font-size: 25px;
    }
    

    /*Introdução*/
    .Rentabilidade a{
        font-size: 15px;
        text-align: center;
        align-items: center;
    }

    .Rentabilidade{
        width: 40%;
        padding: 7px 8px;
    }

    header .Rentabilidade{
        margin-left: 1.5rem;
        padding: 0.5rem 0.5rem;
        font-size: 1rem;
    }

    header .image{
        padding-top: 3rem;
    }

    header .image::before{
        top: 0%;
        left: 60%;
        font-size: 10rem;
    }
    
    header .image img{
        margin-left: 2%;
        margin-top: -11%;
         height: 21rem;
    }


 /* Vídeo Pitch */
 .video iframe{
    height: 385px;
    width: 100%;
}


    /*Nossos recursos*/
    .container{
        padding: 3.5rem 2rem;
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    }

    .container2 h1{
        visibility: visible;
    }

    .features .card{
        width: 70%;
        margin-left: 15%;
    }


    /*Equipe*/
    .main-card .cardspictures .cardpicture{
        width: 78%;
        margin-left: 11%;
        margin-top: 20%;
    }

    .main-card .cardspictures{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .main-card1 .cardspictures1 .cardpicture1{
        width: 77%;
        margin-left: 12%;
        margin-top: 20%;
    }

    .container1{
        margin-top: -35%;
    }

    .main-card1 .cardspictures1{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

  

    /*Footer*/
    footer{
        margin-top: 150px;
    }

    footer .start{
        width: 80%;
        height: 35%;
        left: 10%;
        top: -20%;
    }

    footer .start p{
        font-size: 10px;
        width: 52%;
        visibility: hidden;
    }
    
    footer .start button{
        background: transparent;
        border: 1px solid #000;
        cursor: pointer;
        padding: 2px 20px;
        border-radius: 100px;
        font-weight: 550;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer .start a{
        text-decoration: none;
    }
    

    footer .cols .about-col{
        flex-basis: 50%;
    }

    footer .cols .links-col{
        flex-basis: 50%;
        visibility: hidden;
    }

    footer .cols .social-icon{
        flex-basis: 30%;
    }

    footer .cols .new-col{
        flex-basis: 50%;
    }

    footer .start p{
        width: 50%;
    }

    .copyright{
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}


/* 414px */
@media screen and (max-width: 414px) {

    /* Nossos Recursos */
    .container2 h1{
        margin-left: 7rem;
    }
    
}


/* 390px */
@media screen and (max-width: 390px) {

    /* Header */
    .Rentabilidade a{
        font-size: 15px;
        text-align: center;
        align-items: center;
    }

    .Rentabilidade{
        width: 40%;
        padding: 9px 8px;
    }

    header .Rentabilidade{
        margin-left: 1rem;
        padding: 0.5rem 0.5rem;
        font-size: 1rem;
    }


    /* Introdução */
    header .image img{
        margin-left: -4%;
        margin-top: -11%;
         height: 21rem;
    }


    /* Nossos Recursos */
    .container2 h1{
        margin-left: 6.5rem;
    }

    
    .container1{
        margin-top: -35%;
    }
}


/* 375px */
@media screen and (max-width: 375px) {

    /* Header */
    .Rentabilidade a{
        font-size: 14px;
        text-align: center;
        align-items: center;
    }

    .Rentabilidade{
        width: 40%;
        padding: 9px 8px;
    }

    /* Introdução */
    header .image img{
        margin-left: -6%;
        margin-top: -11%;
         height: 21rem;
    }


    /* Nossos Recursos */
    .container2 h1{
        margin-left: 6rem;
    }

    .container1{
        margin-top: -35%;
    }
}


/* 360px */
@media screen and (max-width: 360px) {

    /* Introdução */
    header .image img{
        margin-left: -8.5%;
        margin-top: -11%;
         height: 21rem;
    }
    
    /* Nossos Recursos */
    .container2 h1{
        margin-left: 5.5rem;
    }

}

/* 320 px */
@media screen and (max-width: 320px) {

    /* Introdução */
    .Rentabilidade a{
        font-size: 14px;
        text-align: center;
        align-items: center;
    }

    .Rentabilidade{
        width: 40%;
        padding: 9px 8px;
    }

    header .image img{
        margin-left: -7%;
        margin-top: -11%;
         height: 18rem;
    }


 /* Vídeo Pitch */
 .video iframe{
    height: 300px;
    width: 100%;
}


    /* Nossos Recursos */
    .container2 h1{
        margin-left: 4.5rem;
    }

    .features .card{
        width: 60%;
        margin-left: 20%;    
    }

    .features .card h3{
        font-size: 26px;
   }
       
   .overlay1 h4 {
        font-size: 25px;
    }


    /*Equipe*/
    .main-card .cardspictures .cardpicture{
        width: 78%;
        margin-left: 2%;
        margin-top: 20%;
    }

    .main-card .cardspictures{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .main-card1 .cardspictures1 .cardpicture1{
        width: 78%;
        margin-left: 2%;
        margin-top: 20%;
    }

    .main-card1 .cardspictures1{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }


    /* Footer */
    footer .start{
        width: 86%;
        height: 34%;
        left: 7%;
        top: -20%;
    }

    footer .start button{
        background: transparent;
        border: 1px solid #000;
        cursor: pointer;
        padding: 2px 10px;
        border-radius: 100px;
        font-weight: 550;
        transition: all 0.3s ease;
    }


    .container1{
        margin-top: -43%;
    }
}