
 
 
 @font-face {
    font-family: MontSerrat-Black;
	src: local('MontSerrat-Black'), url(/css/font/Montserrat-Black.ttf);
	}

@font-face {
	font-family: Montserrat-Medium;
	src: local('Montserrat-Medium'), url(/css/font/Montserrat-Medium.ttf);
		}

@font-face {
	font-family: Roboto-Regular;
	src: local('Roboto-Regular.ttf'), url(/css/font/Roboto-Regular.ttf);
		}
        


 
  


:root{
    --main-font-family: "Roboto-Regular" ;
	--main-font-size: 20px;
	--main-color-font:#353132;
    color-scheme: light only;
   
    
    /*Cores  */

    --main-purple:#8B5D9C;
    --main-green:#269C9B;

	--primary-color:#05354C;
	--primary-color-900:#02151E;
	--primary-color-800:#031D29;
	--primary-color-700:#042535;
	--primary-color-600:#042D40;
	--primary-color-500:#05354C;
	--primary-color-400:#1C556F;
	--primary-color-300:#417993;
	--primary-color-200:#73A1B7;
	--primary-color-100:#B3CEDB;
	
	--secondary-color:#0B6C99;
	--secondary-color-900:#052B3D;
	--secondary-color-800:#063B54;
	--secondary-color-700:#084C6B;
	--secondary-color-600:#0A5C82;
	--secondary-color-500:#0B6C99;
	--secondary-color-400:#2D85AD;
	--secondary-color-300:#569FC1;
	--secondary-color-200:#87BDD6;
	--secondary-color-100:#BFDCEA;
	
    
    
	--red:#E6435E;
	--red-900:#752230;
	--red-800:#972C3E;
	--red-700:#BA374D;
	--red-600:#DC415B;
	--red-500:#E6435E;
	--red-400:#FF6680;
	--red-300:#FF8196;
	--red-200:#FF9CAD;
	--red-100:#FAC5D1;

	--yellow: #F49A1A;
	--yellow-900:#975a05;
	--yellow-800:#af6b0c;
	--yellow-700:#ca7d11;
	--yellow-600:#f09414;
	--yellow-500:#F49A1A;
	--yellow-400:#f8a126;
	--yellow-300:#f1a73f;
	--yellow-200:#f7b150;
	--yellow-100:#f5c47f;

	--gray: #353132;
	--gray-900:#131011;
	--gray-800:#1b191a;
	--gray-700:#201d1e;
	--gray-600:#272425;
	--gray-500:#302b2c;
	--gray-400:#423e3f;
	--gray-300:#5c5758;
	--gray-200:#6d6a6a;
	--gray-100:#969394;

	--green: #0CA38A;
	--green-900:#065145;
	--green-800:#086555;
	--green-700:#097A67;
	--green-600:#0B8E78;
	--green-500:#0CA38A;
	--green-400:#21AE97;
	--green-300:#39BAA4;
	--green-200:#53C5B2;
	--green-100:#8AEDDE;

	
 }


*{
box-sizing: border-box;
}

 html
 {
 height:100%;
 padding:0;
 margin:0;
 scroll-behavior: smooth;
 
 }

body{
    margin: 0;
    padding: 0;
    font-family:  var(--main-font-family);
    font-size: var(--main-font-size);

    }

a
{
    color:#333333;
text-decoration:none;
}

a:hover
{
text-decoration:underline;
color:#333333;

}

a:visited
{
    
    color:#333333;
	text-decoration:none;
}






h1
{
font-size:42px;
font-family: MontSerrat-Black;
padding:0;
margin: 0;
}
h2
{
font-size:26px;
font-weight:normal;
padding:0;
margin: 0;
}
h3
{
font-size:20px;
font-weight:normal;
padding:0;
margin: 0;	
}

h4
{
font-size:16px;
font-weight:normal;	
padding:0;
margin: 0;
}

.img-responsive{

    width: 100%;
}

.r-align{
    text-align: right;
}

.c-align{
    text-align: center;
}
.v-align{
    vertical-align: middle;

}


.pd-top{
padding-top:40px;
}

.pd-bottom{
    padding-bottom:40px;
    }

.mg-top{
margin-top: 40px;
}    


.mg-bottom{
    margin-bottom: 40px;
}

.container{

width: 100%;
display: flex;


}

.container-center{

margin: auto;   


}






.img-logo{
    width: 280px;
    
    }




    .home-main{
       
        background-size: cover;
        background-repeat: no-repeat;
        
        flex-grow: 1; 
        height: 800px;
        position: relative;
        margin-bottom: 100px;
        background-image:  url('../images/bg2.jpg');
        
             
        
    }   
    
    .home-main-mask{
    
        height: 800px;
        z-index:0 ;
        
        display: flex;
        align-items: center;
        justify-content: center;
        
background: linear-gradient(194deg, rgba(241, 160, 37, 0.297) 10%, rgba(19, 18, 18, 0.311) 15%, rgba(0,0,0,1) 99%);
        
        }
    

.home-text{

    font-size:26px;
    opacity: 1;
    z-index: 90;
    flex-grow: 1;
    padding:10px ;
    padding-left: 100px;
    color: white;
    
    
    
    
      
        
}



.h-title-1{
    
    color:var(--gray);
    text-transform: uppercase;
    
}

.h-title-2{
    font-weight: bold;
    color:var(--yellow);
    text-transform: uppercase;
}


.home-title{
    font-size: 35px;
    font-family: 'MontSerrat-Black';
    
}




.dog-head{

    
    position: absolute;
    right:200px;
    bottom:-100px;
    
}


.scroll-down{


text-align: center;
width: 50px;   
margin: auto;
margin-top: -50px;

}

.fade-in{
    animation: fade-in 3s;    
}

.fade-out{
    animation: fade-out 3s;    
}


@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  @keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }

.home-text-highlight{
font-size: 20px;
font-family: Montserrat-Medium;
animation: fade-in 10s;

}



.btn-main{

    border: 1px solid var(--yellow-700);
    outline: none;
    border-radius: 10px;
    height: 40px;
    text-align: center;
    background-color: var(--yellow);
    

    
   
}








.pages-head{
         
    
     padding: 40px;
    
    
}

.pages-content{
         
 padding: 40px;
  
    
}



.pointer{
    cursor: pointer;
}


.flutuar {
    animation: float 2s ease-in-out infinite;
}


@keyframes float{	0%,100%{transform:translatey(0)}50%{ transform:translatey(-15px)}}

  


@keyframes open{
0%{ width: 1%;height: 1%;}
100%{width: 150px; height: 100%;}
    
}



.home-section{

    
    display: flex;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 10px;
    
    
    
}

.home-section-item{
    flex-grow: 1;
    flex-basis: 0;
    padding: 20px;
    z-index: 1;
    

}




.btn-default{

    border: none;
    background: transparent;
    color: #0f0f0f;
    border: 1px solid #1e1e1e;
    outline: none;
    border-radius: 20px;
    text-align: center;
    padding: 10px;

}


 
.block-form{

    background-color: #ffffff;
    border-radius: 30px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        
        
    
}

.form-title{
    text-align: center;
    color: #131011;
    font-family: Montserrat-Medium;
}

.contact-form{
    display: flex;
    align-items: center;
    
}

.contact-form-item{
    flex-grow: 1;
    flex-basis: 0;
    padding: 40px;
}

.contact-form-info{

    
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    background-color: var(--gray);
background-size: cover;
color: white;
    

}

.contact-form-input
{
    background: transparent;
    border: 0;
    border-bottom: 1px solid #4d4d4d;
    padding: 2px;
    width: 100%;
    
    cursor:pointer;
    outline: none;
     font-family: var(--main-font-family);
     font-size: 18px;
}


.contact-form-textarea
{
    border: 0;
    background: transparent;
    border-bottom: 1px solid #4d4d4d;
    width: 100%;
    height: 80px;
    
    cursor:pointer;
    outline: none;
        font-family: var(--main-font-family);
}

.contact-form-btn{

    background-color:var(--yellow);
    font-family: var(--main-font-family);
    cursor:pointer;
    outline: none;
    border: 1px solid var(--yellow-700);
    
    border-radius: 10px;
     height: 40px;
}





.group-box{
    
    display: flex;
    justify-content: center;
    gap:10px;

}

.item-box{

    width: 250px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: var(--yellow-200);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
    
}



.areas{

display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;

}

.areas-item{
    
    border-radius: 10px;
    
    border: 1px solid gray;
    text-align: center;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
     flex-basis: 0;
     flex-grow: 1;
     
    
    
    

}


.bottom-bg{
       
    background-size: cover;
    background-repeat: no-repeat;
            height: 500px;
       background-image:  url('../images/bgbottom.jpg');
    
         
    
}   

  .bottom
  {

width: 100%;
margin-top: 50px;
padding-bottom: 50px;
background-color: #333333;
color: #fff;
  }

  .bottom a{
    color: #FFFFFF;
      }

.bottom a:hover{
        color: #FFFFFF;
          }
    
  .bottom-center{
   
    margin: auto;
    padding: 30px;
    display: flex;
    padding-top: 80px;
  }

  .bottom-item{
    flex-grow: 1;
    flex-basis: 0;
  }


  .bottom-img-logo{
    width: 200px;
    
    
    }


  




      .warning-information, .warning-error, .warning-success, .warning-main , .warning-blank
{
-moz-border-radius: 20px; /* Para Firefox */
-webkit-border-radius: 20px; /*Para Safari e Chrome */
border-radius: 20px; /* Para Opera 10.5+*/
padding: 20px;
margin-bottom:10px;
margin-top:10px;
min-height: 20px;

}

.warning-main
{
border: 1px solid var(--secondary-color-200);
color: var(--secondary-color-700);
background-color:var(--secondary-color-100);
}

.warning-information
{
border: 1px solid var(--yellow-200);
color: var(--yellow-900);
background-color: var(--yellow-100);
}
.warning-error
{
border: 1px solid var(--red-200);
color: var(--red-900);
background-color: var(--red-100);
}
.warning-success
{
border: 1px solid var(--green-200);
color: var(--green-900);
background-color: var(--green-100);
}

.warning-blank
{
  border: 1px solid var(--gray-200);
  color: var(--gray);
  background-color: transparent;
}


.buttons-div{
    text-align:right;
     
        
}

@media (max-width: 767px) {

.container-center{
    width: 100%;
}

.home-text{
    box-sizing: border-box;
     font-size: 20px;
    width: 100%;
    text-align: center;
    line-height: 40px;
    margin-top: 10px;
    padding: 10px;
    
    

}

.home-text-highlight{
    font-size: 18px;
}

.scroll-down{
    margin-top: 80px;
}


    .bottom-center{
        display: block;
    }


    .bottom-item-align{
        text-align: center;
        padding-top: 20px;
    }

   
.home-section{
    
    display: block;
}



    .img-logo{
        width: 280px;
        
        }

        .pages-main{
         
            height: 180px;
            
                       
        }
        .page-main-about-mask{

            height: 300px;
         z-index:0 ;
            background-color: rgba(3, 58, 56, 0.65);
            
        
    
    }
    
    

        .page-section{

    
            display: block;
            margin: auto;
            padding-top: 40px;
            
            
            
        }
        
        .page-section-item{
            
            padding: 10px;
            
            text-align: center;
              
        
        }
        

       
      

        .block-form{
            box-shadow: none;
        }


.contact-form{
    display: block;
    
    
}

.hidden-mobile{
    display: none;
}


.group-box{
    display: block;
    
}

.item-box{
    width: 100%;
}

.bottom-bg{
    height: 100px;
    
   }

}


@media (min-width: 768px) {
    
    
   
    
    
    

    .container-center{
   
        width: 760px;
        
        margin: auto;
        
                 
        }
        

.top-center{
    width: 760px;
    
    
    
}

.home-section{
    width: 700px;
    
       
}

.page-section{
    width: 700px;
}


.bottom-center{
    width: 760px;
    
}   




   



    }



@media (max-width:992px) {

    .menu-icon{
        display: block;
    }

    .menu{
        display: none;
    }

    .btn-entrar{display: none;
    }


    .dog-head{
        display: none;
    }
    

    
}



@media (min-width:992px) {

    .top-center{
        width: 990px;
        
    }

    

    .container-center{
        width: 990px;
    }
    .home-section{
        width: 900px;
    }

    .page-section{
        width: 900px;
    }

    .bottom-center{
        width: 990px;
    }
    .galery-style{
        column-count: 2;
    }
    

 
  
  
    
}


@media (max-width:1200px) {

    .dog-head{

    
        position: absolute;
        right:100px;
        bottom:-100px;
        
    }
    
}

@media (min-width: 1200px) {

    .top-center{
        width: 1100px;
        
    }
    
    .container-center{
        width: 1100px;
    }

    .home-section{
        width: 1000px;
    }

    .page-section{
        width: 1000px;
    }

    .bottom-center{
        width: 1100px;
    }

    .galery-style{
        column-count: 3;
    }
    
  

}


@media (min-width: 1400px) { 

    .top-center{
        width: 1300px;
        
    }
    

.container-center{
    width: 1300px;
    
}

.home-section{
    width: 1000px;
}

.page-section{
    width: 1000px;
}
.bottom-center{
    width: 1300px;
}

}



/* styles.css */

   
 
  
  
  .item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 3s ease-out;
        
  }
  
  /* Classe que será adicionada com o JavaScript */
  .item.show {
    opacity: 1;
    transform: translateY(0);
  }
  