*, a {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body{
   background: #F4F5F3;
   font-family: 'Open Sans', helvetica, sans-serif;
}

h1 {
    color: #ffffff;
    background: #2F3741;
    padding: 20px 0 ; 
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

h2, ul, li, form, button {
    font-family:'Open Sans', helvetica, sans-serif; ;
    color: #5D6D81;
    font-size: 20px;
    line-height: 1.38105;
    font-weight: 400;
    letter-spacing: .011em;
    text-rendering: optimizeLegibility;
}

.bg-image {
    background-image: url(https://www.santos.sp.gov.br/../../static/files_www/styles/focal_point_full/public/field/image/bg-jose.jpg?itok=IfJBxxS2); 
    background-size: cover;
    background-position: center center;
    height: 600px;    
}
 .video {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
 }
.main-video {
    height: 720px;
    width: 1280px;
    margin: 30px;
}

.menu {
    background: #171B21;
    display: inline-flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    height: 50px;    
}

.menu a {
    color: #DAE8D7;
    font-size: 20px;
    font-weight: normal;
    position: relative; 
    cursor: pointer; 
    transition: all 0.5s;  
}

.menu a::after {
    content: ' ';
    width: 0;
    height: 2px;
    background: #67B450;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.2s ease;
}
.menu h2 a:hover::after{
    width: 100%;
}

.icon-menu {
    background: none;
    border: none;
    font-size: 32px;
    position: absolute;
    right: 20px;
    display: none;
    color: #ffffff;
    top: 18px;
    cursor: pointer;
    transition: .5s ease;
  }
.icon-menu:hover {
    opacity: 20%;  
    
    
}

h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 20px;
    display: flex;
    justify-content: center;
}

p{
    max-width: 700px;
    text-align: justify;
    display: flex;
    margin: 0 auto;
    padding: 10px;
    color: #5D6D81;
    font-size: 20px;
    line-height: 1.38105;
    font-weight: 400;
    letter-spacing: .011em;
}

strong {
    display: contents;
}

.dados ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

form {
    display: flex;    
    justify-content: center;
    margin-bottom: 50px;
}

fieldset {
    border: 2px solid #67B450;
    border-radius: 4px;
}

fieldset legend {
    text-align: center;
    
}
fieldset legend h2 {
    margin: 0;
}

fieldset label {
    margin-right: 15px ;
}

form div {
    margin: 10px 0;
}

fieldset input:focus {
    box-shadow: inset 0 0 5px #67B450;
    transform: scale(1.2);
}

form .btn {
    display: flex;
    justify-content: center;
    gap: 20px;
}
form .btn button {
    border: none;
    border-radius: 4px;
    color: #ffffff;
    background: #67B450;
}

form .btn button:hover {
    opacity: 80%;    
}

.arrow {
    background: #2F3741;
    width: 50px;
    height: 50px;
    clip-path: circle();
    right: 15px;
    bottom: 90px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;      
}

.arrow a {    
    color: #BDC4CC;
    font-size: 40px;      
}


footer {
    background: #090B0D;
    border-top: 5px solid #67B450;
    height: 100px;
    font-size: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;    
}

footer a {
    color: #BDC4CC;

}

@media (max-width:768px) {
    .menu h2 a {
        font-size: 16px;
        
    }

    main .bg-image {
        height: 400px;       
        
    }
    .main-video {
        height: 480px;
        width: 720px;
        margin: 30px;
    }

    .menu {
        background: #171B21;        
        width: 100%;
        align-items: center;
        flex-direction: column;
        height: 0; 
        display: block;
        position: absolute;        
        top: 78px;             
                      
    } 
    .menu h2 {
        margin: 10px;
        visibility: hidden;

    }
    .icon-menu {
        display: flex;         
    }

    #nav.active #menu {
        height: auto;        
        top: 78px;        
        overflow-x: auto;                 
    } 
    #nav.active #menu h2 {
        visibility: visible;                 
    } 

}

@media (max-width:425px) {
    .menu h2 a {
        font-size: 14px;
        
    }

    main .bg-image {
        height: 200px;       
        
    }
    .main-video {
        height: 360px;
        width: 640px;
        margin: 30px;
    }

}




