/*
* 
* @author Jamilton Damasceno
*/

/* Layout
-----------------------------*/

html, body, #home {
	height: 100%;
	
	
}

.bg{
	background: rgb(255, 255, 255);
}

.bg2{
	background: #daa520;
}

body {
	background-image: url(../Imagens/fundo.jpeg);
	background-size: cover;
				
			
	background-attachment: fixed;
	font-family: Helvetica,Arial,sans-serif;
}

/* Barra de navegação
-----------------------------*/
nav.navbar-transparente {
	padding: 15px 0px;
	background: rgba(0,0,0,0.6);
}

.navbar-light .navbar-nav .nav-link {
	color: white;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: #9bf0e1;
}

.navbar-light .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,0.5);
}

.divisor {
	width: 1px;
	background: white;
	margin: 12px 15px;
}

/* Capa
-----------------------------*/
.capa {
	text-align: center;
}

.arredondar{
	border: 2px solid white ;
	border-radius: 15px;
}

.btn-custom {
	color: white;
	border-radius: 500px;
	-webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    text-transform: uppercase;
    transition: background 0.4s, color 0.4s;
    padding: 10px 20px;
}

.btn-roxo {
	background: #185756;
	border: 2px solid white;
}

.btn-roxo:hover {
	background-color: white;
	color: black;
}

.btn-branco {
	background: #edad31;
	border: 2px solid white;
}

.btn-branco:hover {
	background-color: white;
	color: black;
}

.carousel-control-next, .carousel-control-prev {
	width: 5%;
}

/* Estrutura conteúdos
-----------------------------*/
.caixa {
	padding-top: 80px;
	padding-bottom: 80px;
}

.caixa2 {
	
	padding-bottom: 80px;
}

#servicos{
	background: rgb(255, 255, 255);
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#recursos{
	background: rgb(255, 255, 255);
}

#kit{
	background: rgb(255, 255, 255);
}

#trabalho{
	background: #185756;
}

#contato{
	background: rgb(255, 255, 255);
}

#trabalho h2, h3, h4 {
	color: #daa520;
}


#kit h2, h3, h4 {
	color: #185756;
}

#servicos h2, h3 {
	color: #185756;
}

#recursos h2{
	color: #185756;
}

#recursos h3 {
	color: #daa520;
}

#contato h2{
	color: #185756;
}

#contato h3{
	color: #daa520;
}

.transparente1{
	
    background-color: rgba(255, 255, 255, 0.616);
}


.albuns {
	padding: 10px 0;
}

.rotacionar {
	-ms-transform: rotate(30deg); /* IE 9 */
    -webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
    transform: rotate(30deg);
	border-radius: 100%;
	
}

.rotacionar1 {
	-ms-transform: rotate(-30deg); /* IE 9 */
    -webkit-transform: rotate(-30deg); /* Chrome, Safari, Opera */
    transform: rotate(-30deg);
	border-radius: 100%;
	
}

.rotacionar2 {
	-ms-transform: rotate(30deg); /* IE 9 */
    -webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
    transform: rotate(30deg);
	border-radius: 5%;
	
	
}



#tam{
  /* Largura fixa em pixels */
  width: 900px;

  /* Altura fixa em pixels */
  height: 500px;
}

/* Rodapé
-----------------------------*/
footer {
	background: #000;
	padding: 50px 0px 20px 0px;
	position: relative;
}

footer h4 {
	color: #919496;
	font-size: 0.8em;
	text-transform: uppercase;
}

footer .navbar-nav a {
	color: white;
	font-size: 0.8em;
}

footer .navbar-nav a:hover {
	color: #9bf0e1;
	text-decoration: none;
}

footer ul {
	list-style: none;
}

footer ul li {
	float: right;
	margin: 0 5px;
}

/* Tipografia
-----------------------------*/
h1 {
	font-weight: 900;
	letter-spacing: -0.05em;
	margin-bottom: 50px;
	color: white;
}

h2 {
	font-size: 3em;
	font-weight: 700;
	letter-spacing: -0.04em;
}

h3 {
	font-size: 2em;
	font-weight: 700;
	letter-spacing: -0.04em;
}



/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.btn-custom {
		margin: 10px 15px;
		font-size: 1em;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
	h1 {
		font-size: 3em;
	}
	.btn-custom {
		margin: 10px 15px;
	}
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
	h1 {
		font-size: 4em;
	}
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	h1 {
		font-size: 5em;
	}
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	h1 {
		font-size: 6em;
	}
}

.appear-on-scroll {
   
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    padding: 20px;
   
}

.appear-on-scroll.is-visible {

    opacity: 1;
    transform: translateY(0);
}