:root {
    --corPrincipal: #051637;
    --corPrincipalc: #072258;
    --corContraste:#F09061;

}

html {
    scroll-behavior: smooth;
  }
  
a{
    text-decoration: none;
}

#bigger{
    font-size: 125%;
}

.desce{
    margin-top:60px;
}

body{
    font-family:Montserrat;
}
#warning{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    background-color: var(--corPrincipalc);
    width: 100%;
    height: 45px;
    color: white;
}

#headline{
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(media/FundoCapa.png);
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
 &::before{
        content:"";
        position: absolute;
        top:0;
        background-color: rgba(0,0,0, 0.2);
        height: 100%;
        z-index:0;
        width: 100%;
    }
    .content{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1;
        position: relative; 

        a:nth-of-type(1){
            width:70%;
            color:white;
            font-size:25px;
            font-weight:600;
            padding:15px 0px;
            border-radius:10px;
            text-align: center;
            background-color: #008300;
            transition: 0.2s ease-in-out;

            &:hover{
                transform: scale(1.1);
                background-color: #005e00;
            }
        }
        a:nth-of-type(2){
            width:70%;
            color:white;
            font-size:25px;
            font-weight:600;
            padding:15px 0px;
            border-radius:10px;
            text-align: center;
            background-color: #4889CA;
            transition: 0.2s ease-in-out;

            &:hover{
                transform: scale(1.1);
                background-color: #22517f;
            }
        }
        p{
            margin:1%;
            width: 70%;
            font-size: 20px;
            text-align: center;
        }
        

        .images1{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .images2{
            width: 50%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            position:relative;

            img:nth-of-type(2){
                width: 100%;
                position: relative;
                top:0;
            }
            img:nth-of-type(1){
                width: 100%;
                position: relative;
                top:49px;
            }
        }
    }
}
/* Módulos */
.container1{
    width: 100%;
    display:flex;
    color: white;
    padding:40px 0px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, var(--corPrincipal),var(--corPrincipalc));
    h1{
        font-size: 55px;
    }
    h2{
        font-weight: 400;
        font-size: 40px;
    }
    p:nth-of-type(2){
        margin:2%;
        font-size: 40px;
    }

    .images1{
        margin-top: 2%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        gap:5%;
        img{
            width: 50%;
        }
    }

    .images2{
        width:40%;
        gap:30px;

        img{
            width: 100%;
        }
    }

    a:nth-of-type(1){
        width:50%;
        color:white;
        font-size:25px;
        font-weight:600;
        margin-top:1%;
        padding:15px 0px;
        border-radius:10px;
        text-align: center;
        background-color: #008300;
        transition: 0.2s ease-in-out;

        &:hover{
            transform: scale(1.08);
            background-color: #005e00;
        }
    }
    a:nth-of-type(2){
        width:50%;
        color:white;
        font-size:25px;
        font-weight:600;
        margin-top:1%;
        padding:15px 0px;
        border-radius:10px;
        text-align: center;
        background-color: #008300;
        transition: 0.2s ease-in-out;

        &:hover{
            transform: scale(1.08);
            background-color: #005e00;
        }
    }
    .videoSection{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 90%;
        margin:2%;
        h1{
            font-size: 40px;
        }
        h2{
            font-weight: 400;
            font-size: 30px;
        }

        a:nth-of-type(1){
            width:50%;
            color:white;
            font-size:25px;
            font-weight:600;
            margin-top:2%;
            padding:15px 0px;
            border-radius:10px;
            text-align: center;
            background-color: #008300;
            transition: 0.2s ease-in-out;
    
            &:hover{
                transform: scale(1.08);
                background-color: #005e00;
            }
        }
        p{
            font-weight: 600;
            margin:0;
        }

        .videocontainer{
            margin:2%;
            display: flex;
            justify-content: center; /* Centraliza o vídeo */
            align-items: center;
            width: 100%; /* Ajuste a largura conforme necessário */
            max-width: 100%;
            position: relative;
            
    
        iframe{
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9; /* Garante a proporção correta */
            border: none;
            }
        }
    }
    
    
}
.carousel {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    object-fit: cover;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

button:hover {
    background: rgba(0, 0, 0, 0.8);
}
.container2{
    
}


@media screen and (min-width:320px) and (max-width:768px) {
    .container1{
        width: 100%;
        display:flex;
        color: white;
        padding:40px 0px;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(to bottom, var(--corPrincipal),var(--corPrincipalc));
        h1{
            font-size: 55px;
        }
        h2{
            font-weight: 400;
            font-size: 40px;
        }
        p:nth-of-type(2){
            margin:2%;
            width: 100%;
            font-size: 30px;
        }
    
        .images1{
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            width: 100%;
            gap:20px;
            img{
                width: 100%;
            }
        }
    
        .images2{
            width:95%;
            gap:30px;
    
            img{
                width: 100%;
            }
        }
    
        a:nth-of-type(1){
            width:90%;
            color:white;
            font-size:25px;
            font-weight:600;
            margin-top:1%;
            padding:15px 0px;
            border-radius:10px;
            text-align: center;
            background-color: #008300;
            transition: 0.2s ease-in-out;
    
            &:hover{
                transform: scale(1.08);
                background-color: #005e00;
            }
        }
        a:nth-of-type(2){
            width:90%;
            color:white;
            font-size:17px;
            font-weight:600;
            margin-top:1%;
            padding:15px 0px;
            border-radius:10px;
            text-align: center;
            background-color: #008300;
            transition: 0.2s ease-in-out;
    
            &:hover{
                transform: scale(1.08);
                background-color: #005e00;
            }
        }
        .videoSection{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            margin:2%;
            h1{
                font-size: 20px;
            }
            h2{
                font-weight: 400;
                font-size: 20px;
            }
    
            a:nth-of-type(1){
                width:90%;
                color:white;
                font-size:20px;
                font-weight:600;
                margin-top:2%;
                padding:15px 0px;
                border-radius:10px;
                text-align: center;
                background-color: #008300;
                transition: 0.2s ease-in-out;
        
                &:hover{
                    transform: scale(1.08);
                    background-color: #005e00;
                }
            }
            p{
                font-weight: 600;
                font-size: 12px;
                margin:0;
            }
    
            .videocontainer{
                margin:2%;
                display: flex;
                justify-content: center; /* Centraliza o vídeo */
                align-items: center;
                width: 100%; /* Ajuste a largura conforme necessário */
                max-width: 100%;
                position: relative;
                
        
            iframe{
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9; /* Garante a proporção correta */
                border: none;
                }
            }
        }
        
    }
    
        .swiper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
    
        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    
        .swiper-button-next{
            color:black !important;
    
        }
        .swiper-button-prev{
            color:black !important;
    
        }
    
    #headline{
        padding: 0px;
        width: 100%;
        .content{
            padding: 0px;
            width: 100%;
            p{
                width: 97%;
                font-size: 14px;
            }
            a:nth-of-type(1),a:nth-of-type(2){
                width: 95%;
            }
            .images1{
                width: 100%;
                img{
                    width: 100% !important;
                }

            }
            .images2{
                flex-direction: column-reverse;
                width: 90% !important;
                img:nth-of-type(2){
                    width: 100% !important;
                }
                img:nth-of-type(1){
                    bottom: 0;
                    top: 0;
                    width: 100% !important;
                }

            }
        }
    }
}
@media screen and (min-width:600px) and (max-width:768px) {
    #headline{
        padding: 0px;
        width: 100%;
        .content{
            padding: 0px;
            width: 100%;
            p{
                font-size: 16px;
            }
            a:nth-of-type(1),a:nth-of-type(2){
                width: 95%;
            }
            .images1{
                width: 100%;
                img{
                    width: 100% !important;
                }

            }
            .images2{
                flex-direction: column-reverse;
                width: 90% !important;
                img:nth-of-type(2){
                    width: 50% !important;
                }
                img:nth-of-type(1){
                    bottom: 0;
                    top: 0;
                    width: 50% !important;
                }

            }
        }
    }
}

@media screen and (min-width:769px) and (max-width:1024px) {
    #headline{
        padding: 0px;
        width: 100%;
        .content{
            padding: 0px;
            width: 100%;
            p{
                font-size: 16px;
            }
            a:nth-of-type(1),a:nth-of-type(2){
                width: 95%;
            }
            .images1{
                width: 100%;
                img{
                    width: 80% !important;
                }

            }
            .images2{
                flex-direction: row;
                width: 70% !important;
                img:nth-of-type(2){
                    width: 50% !important;
                }
                img:nth-of-type(1){
                    bottom: 0;
                    top: 21px;
                    width: 50% !important;
                }

            }
        }
    }
}


@media screen and (min-width:1024px) and (max-width:1440px) {
    .container1{
        .images2{
            width: 60%;
        }
    }
}