/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 1.1em;

}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%; 
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 10%; /* margem esquerda */
}

.logo-container a{
 text-decoration: none;
}


.logo {
  width: 50px;
  height: 45px;
}

.company-name {
  color: #f5a623;
  font-family: "Monotype Corsiva", cursive;
  font-size: 40px;
  margin-left: 10px;
}


.menu-icon {
  font-size: 25px;
  color: #f5a623;
  cursor: pointer;
  margin-right: 10%; /* margem direita */
}

/* Estilo do menu hamburguer */
.menu {
  display: none;
  position: fixed;
  right: 0;
  top: 50px;
  background-color: rgba(0, 0, 0, 0.9);
  width: 200px;
  border-left: 1px solid #f5a623;
  z-index: 1000;
}

.menu-active {
  display: block;
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 15px;
}

.menu a {
  color: #f5a623;
  text-decoration: none;
  font-size: 18px;
}

/* Video & Image section */
.video-container {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.background-image {
  width: 100%;
  height: 100%;
 /* object-fit: cover;*/
  display: none;
}

.text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
}

/* Textos do video */
.text-overlay h2 {
  color: #fff;
  font-family: "Monotype Corsiva", cursive;
  font-size: 40px;
	font-weight: 400;
 
}

.text-overlay h3 {
  color: #fff;
  font-size: 25px;
	font-weight: 400;
	font-style: italic;
 
}

.lema {
  color: #fff;
  font-size: 20px;
  font-style: italic;
 
}

/* Mobile Styles */
@media (max-width: 768px) {
  .background-video {
    display: none;
  }
  
  .background-image {
    display: block;
  }
}

/* Degradê Transition */
.video-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

/* Menu Toggle */
.menu-active .menu {
  display: block;
}

/* Seção Hero */
.hero {
    text-align: center;
	color: #f5a623;
}

.hero h2 {
	/*color: #f5a623;*/
    margin: 20px 0;
}

/*Estilo Carrossel*/
     .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: black;
            padding: 20px;
            margin-bottom: 40px; /* Espaço entre os carrosséis */
        }

        .carousel-title {
            font-size: 18px;
            text-align: center;
            margin-bottom: 10px;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            white-space: nowrap;
        }

        .carousel img {
            width: 100%;
            max-width: 750px; /*tamanho das imagens do carrossel*/
            margin-right: 10px;
            cursor: pointer;
        }

        .fullscreen-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .fullscreen-modal img {
            max-width: 90%;
            max-height: 90%;
        }

        .fullscreen-modal .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }


        /* Botões de navegação */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
            z-index: 100;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        @media (max-width: 768px) {
            .carousel img {
                max-width: 450px;   /* tamanho da image do carrossel no mobile */
            }
        }

        /*Todos os Imoveis*/
		.container {
					display: flex;
					flex-wrap: wrap;
					justify-content: space-between;
					max-width: 1300px;
					margin: 20px auto;
					gap: 10px;
				}

        .item {
            width: 32%;
            margin-bottom: 10px;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 200px;
        }

        .image-container img {
            width: 100%;
            height: 100%;
        }

        .text-over-image {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 10px;
            background: rgba(0, 0, 0, 0.6);
        }

        .text-over-image p {
            font-size: 12px;
            margin: 0;
            color: white;
            text-align: left;
        }

        .info-box {
            width: 100%;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            box-sizing: border-box;
        }

        .info-box p {
            margin: 0;
            font-size: 16px;
        }

        .button-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .button-container button {
            background-color: transparent;
            border: 1px solid #f5a623;
            color: #f5a623;
            padding: 5px 10px;
            font-size: 12px;
            cursor: pointer;
        }

        /* Para telas maiores (desktop) */
        @media (min-width: 1025px) {
            .item {
                width: 32%;
            }
        }

        /* Para tablets (telas entre 768px e 1024px) */
        @media (max-width: 1024px) {
            .item {
                width: 32%;
            }
        }

        /* Para telas menores (mobile) */
        @media (max-width: 768px) {
            .item {
                width: 100%;
            }

            .container {
                justify-content: center;
            }
        }




        /*Quem Somos*/
	.quem-somos {
		margin-top: 20px;
		margin-left: 10%;
		margin-right: 10%;
	}


		  /*parallax*/
	.hero-parallax {
		position: relative;
		width: 100%;
		height: 500px;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.video-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
	}

	.mobile-image {
		display: none;
		position: absolute;
		width: 100%;
		height: 70%;
		object-fit: cover;
		z-index: 1;
	}

	.overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
		z-index: 2;
	}
.hero-parallax img {
	background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	z-index: 2;
}

	.btn {
		position: relative;
		z-index: 3;
		padding: 10px 20px;
		border: 2px solid #f5a623;
		background: transparent;
		color: #f5a623;
		text-decoration: none;
		font-size: 18px;
		transition: background-color 0.3s ease;
	}

	.btn:hover {
		background-color: rgba(255, 255, 255, 0.3);
	}

	@media (max-width: 768px) {
		.hero-parallax {
			height: 70vh;
		}

    .video-bg {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}



	/*formulário*/

	.formulario {
				background: #fff;
				border-radius: 8px;
				box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
				max-width: 100%;
				margin: 0 auto;
				padding: 20px;


		}

	.formulario iframe {
		width: 100%;
		height: 1040px;
		/*margin: 0 30% 0 30%;*/

	
		}


		/* Footer */
		footer {
			background-color: #000;
			color: #fff;
			font-size: 16px;
			padding: 20px;
			box-sizing: border-box;
			}

		/* Flexbox Layout */
		.footer-content {
			display: -webkit-flex; /* Prefixo para suporte mais antigo */
			display: flex;
			-webkit-flex-wrap: wrap; /* Prefixo para suporte mais antigo */
			flex-wrap: wrap;
			justify-content: space-between;
		}

		.footer-section {
			flex: 1;
			margin: 10px;
			display: -webkit-flex; /* Prefixo para suporte mais antigo */
			display: flex;
			-webkit-flex-direction: column; /* Prefixo para suporte mais antigo */
			flex-direction: column;
			align-items: center;
			text-align: center;
		}

		.footer-section h2 {
			margin-bottom: 10px;
		}

		.icon-container {
			display: -webkit-flex; /* Prefixo para suporte mais antigo */
			display: flex;
			-webkit-flex-direction: row; /* Prefixo para suporte mais antigo */
			flex-direction: row; /* Horizontal alignment by default */
			gap: 10px; /* Espaçamento entre os ícones */
			align-items: center; /* Vertical alignment */
		}

		.footer-section img {
			height: 45px;
			width: 50px;
			object-fit: contain;
		}

		.footer-section.videos img {
			height: 60px;
			width: 110px;
		}

		.footer-bottom {
			text-align: center;
			margin-top: 20px;
		}

		.footer-bottom a {
			color: white;
			text-decoration:none;
		}

		/* Responsividade para dispositivos móveis */
		@media (max-width: 768px) {
			.footer-content {
				-webkit-flex-direction: column; /* Prefixo para suporte mais antigo */
				flex-direction: column;
				align-items: center;
			}

    .footer-section {
        width: 60%;
        margin-bottom: 20px;
    }

    .icon-container {
        -webkit-flex-direction: column; /* Prefixo para suporte mais antigo */
        flex-direction: column; /* Vertical alignment for mobile */
        gap: 10px; /* Espaçamento entre os ícones */
    }
			
	
    .footer-section img {
        height: 30px;
        width: auto;
    }

    .footer-section.videos img {
        width: 60px;
    }
}






























