@charset "utf-8";

/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", 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: inline-block;
  display: flex;
flex-wrap: nowrap;
  align-items: center;
  margin-left: 2%;  margem esquerda */
}

.logo-container a{
	/*text-decoration: none;
	display: flex;
	flex-wrap: nowrap;*/
}

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

.company-name {
 text-decoration: none;
  font-family: "Monotype Corsiva", cursive;	
  color: #f5a623;
  font-size: 2.0em;
  margin-left: 2px;
}

.incorp-name {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", sans-serif;
  color: #f5a623;
  font-size: 1.5em;
}

.menu-icon {
  display: flex; 
  flex-wrap: nowrap;
  font-size: 30px;
  color: #f5a623;
  cursor: pointer;
  margin-right: 2%; /* margem direita */
  padding-bottom: 10%;
  	
}

/* Estilo do menu hamburguer */
.menu {
  display: none;
  position: fixed;
  right: 0;
  top: 70px;
  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: 125vh;
  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 {
  font-family: "Monotype Corsiva", cursive;	
  color: #fff;
  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;
	text-decoration: none;
}

.hero a{
	text-decoration: none;
}

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

/*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: 700px;  /* tamanho da image do carrossel no desktop */
    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;
            }
        }



	  /*parallax com botão Entre em Contato*/

	.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;
    }
}


/*Estilos do formulario*/ 

form-body {
  font-family: Arial, sans-serif;
  background: #f0f0f0;
  padding: 20px;
  color: #f5a623;
	
  
}

#openModal {
  display: block;
  margin: 0 auto;
}

button {
  position: relative;
  z-index: 3;
  background-color: transparent;
  color: #f5a623;
  padding: 10px 20px;
  border: 2px solid #f5a623;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: transparent;
  color: #f5a623;
  border: 3px solid #f5a623;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  background-color: #000;
  color: #f5a623;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #f5a623;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}
.close {
  color: #f5a623;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
label { display: block; margin-top: 10px; color: #f5a623; }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
}
.checkbox-group { margin-top: 10px; }
.checkbox-group label { display: block; color: #f5a623; }




        /*Empreendimento*/

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


/* Seção Perfil (Foto + Texto) */
.container.perfil {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Para mobile */
}

.foto-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 300px; /* largura fixa aproximada no desktop */
  text-align: center;
}

.foto img {
  width: 100%;
  max-width: 250px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.text a {
text-decoration: none;
color: #fff; 
font-style: italic;

}

/* Texto grande ao lado */
.texto-grande {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  padding-right: 10px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .container.perfil {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .texto-grande {
    padding-right: 0;
  }
}



		/* 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;
		}

/*insere os icones em linha vertical*/

	/*	.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;
    }
}






























