@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --background-blue: #0c2b4b;
}

/*Global CSS*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::after,
::before{
    box-sizing: border-box;
}


body {
    font-family: "Open Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}



/*HEADER*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.navbar-top-default{
    position: absolute !important;
    top: 0;
    z-index: 9999;
    overflow: hidden;
    height: 65px;
    width: 100%;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
    background-color: rgba(255,255,255, 0.6);   
}

.social-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none !important;
    color: var(--background-blue);

    
}
.social-icon i{
    font-size: 20px;
}




/*BUTTONS*/

.btn-header {
    font-size: .9rem;
    letter-spacing: 1px;
    text-decoration: none !important;
    padding: 10px 15px;
    color: #fff;
    background: var(--background-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;;
    border-radius: 4px;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.btn-header:hover {
    color: rgba(255, 255, 255 , 0.8);
}

.btn-section {
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none !important;
    padding: 20px;
    color: #fff;
    background: var(--background-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;;
    border-radius: 4px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.btn-section:hover {
    color: rgba(255, 255, 255 , 0.8);
}

/*SECTIONS*/

.bg-section{
    height: 100vh !important;
    width: 100vw !important;
    z-index: 999;
}

.h2-section {
    font-size: 3rem;
    text-transform: uppercase;
}


.grid-item {
    background: rgba(255, 255, 255 , 0.4);
    height: 250px;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.grid-item h5 {
    text-transform: uppercase;
    font-weight: 600;
}

/*ICONS*/

.grid-item i {
    width: 70px;
    height: 70px;
    font-size: 70px;
    color: rgb(238, 174, 11);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Edição de classes do Bootstrap*/

.navbar-nav {
    gap: 10px;
}


/*SECTION VIDEO*/

.card-section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 40px 50px 30px 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    height: 315px;
}

.card-section span {
    font-size: .8rem;
    color: darkgoldenrod;
    text-transform: uppercase;
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    padding-top: 40px;
    display: flex;
    align-items: center;
}

.card-section h3 {
    font-size: 1.35rem;
    color: rgba(0, 0, 0, 0.9);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}


.card-section a {
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-decoration: none !important;
    padding: 15px 20px;
    color: #fff;
    background: var(--background-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;;
    border-radius: 4px;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}



/*SECTION FORM*/
.form-section {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-section .section-title {
    margin-bottom: 40px;
}


.form-section .section-title span {
    font-size: .8rem;
    color: darkgoldenrod;
    text-transform: uppercase;
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section .section-title h2 {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.9);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.form-input{
    height: 50px;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-bottom: 10px;
}
.form-input:hover {
    border: 1px solid rgba(0, 0, 0, 0.6);;
}

.form-section .site-btn {
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none !important;
    padding: 15px 20px;
    color: #fff;
    background: var(--background-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;;
    border-radius: 4px;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

/*FOOTER*/

.footer {
    height: 80px;
    color: #fff;
    background-color: var(--background-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: .2rem;
}

.footer .line-footer {
    margin-top: 2px;
    border: 0.5px solid rgba(255, 255, 255 , 0.1);
}


/*Media 1024 px) */
@media (max-width: 1024px) {
    .bg-grid-section1 {
        grid-template-columns: 1fr 1fr;
        margin: 0 auto;
    }

    .grid-item:nth-child(1) {
        grid-column: 1 / 3;
    }

}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    .navbar-nav {
        flex-direction: row !important;
        gap: 20px;
    }

    .grid-item:nth-child(1) {
        text-align: center;

    }
    .grid-item:nth-child(1) span {
        margin: 0 auto;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .btn-header {
        display: none;
    } 

    .navbar-nav {
        flex-direction: row !important;
        gap: 20px;
    }

    .bg-grid-section1 {
        display: block;
    }

    .grid-item:nth-child(n + 2) {
        margin-bottom: 20px;
    }
}

/*Animações*/
.card__expanded {
    transition: all 300ms ease-in-out;
}
.card__expanded img {
    opacity: 0.9;
}


.card__expanded:hover {
    transform: scale(1.1);
}
.card__expanded img:hover {
    opacity: 1;
}


/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
       
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
        
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
       
	}
}

/*Carrosel*/
#image-carousel {
    margin: 0 auto;
}
#image-carousel-slide01{
    background-image: url(../img/aperto-maos.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
     
}
#image-carousel-slide02{
    background-image: url(../img/jovem-casal.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}
#image-carousel-slide03{
    background-image: url(../img/pig.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
   
}

@media (max-width: 1200px) {
    #image-carousel-slide01 {
        height: 600px !important;
    }
    #image-carousel-slide02 {
        height: 600px !important;
    }
    #image-carousel-slide03 {
        height: 600px !important;
    }
}

.slide-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.slide-text p {
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.slide-text span {
    font-size: 10rem;
    color: #ffb901;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.slide-text2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.slide-text2 p {
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.slide-text2 span{
    font-size: 6rem;
    color: #ffb901;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-slide {
    z-index: 999;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    background: var(--background-blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    font-size: .9rem;
    
}