* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
}

/*fonte*/
body {
	font-family: 'Inter', sans-serif;
	color: #333;
}

h1, h2 ,h3 {
	font-family: 'Montserrat', sans-serif;
}

/*Header*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
	padding: 0 40px;

	background: rgba(255, 255, 255, 0.85); /* leve transparência */
	backdrop-filter: blur(10px); /* efeito vidro moderno */

	border-bottom: 1px solid rgba(0,0,0,0.05);

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* profundidade */
}


.logo img {
	max-height: 65px;
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
}

/*Menu Desktop*/

.menu {
	display: flex;
	gap: 30px;
	align-items: center;
	flex-shrink: 0; /* impede compressão */
}
.menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 18px;
	padding: 8px 10px;
	border-radius: 6px;
	transition: 0.3s;
}
.menu a:hover {
	background: rgba(0, 191, 99, 0.1);
	color: #00BF63;
}

.menu a.active {
	background: #00BF63;
	color: white;
}

/*hamburguer (mobile)*/
.hamburguer {
	display: none;
	font-size: 30px;
	cursor: pointer;
	background: transparent;
	border: none;
	z-index: 2000;
}

/*responsivo*/
@media (max-width: 768px) {
	.hero {
		height: 60vh;
	}

	body {
		padding-top: 70px;
	}

	header {
		padding: 10px 20px;
		min-height: 70px;
	}

	.logo img {
		height: 50px; /* logo menor no mobile */
	}

	.menu {
		position: absolute;
		top: 70px; /* mesma altura do header */
		right: 0;
		background: #fff;
		width: 220px;
		flex-direction: column;
		gap: 15px;
		padding: 20px;
		display: none;
		border-left: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		box-shadow: -2px 4px 10px rgba(0,0,0,0.1);
	}

	.menu.open {
		display: flex;
	}

	.hamburguer {
		display: block;
		font-size: 28px;
	}
}

/*hero (carrossel) */

.hero {
	width: 100%;
	height: 80vh;
	min-height: 450px;
	max-height: 750px;
	overflow: hidden;

}

/* pagina-conteudo */

.pagina-conteudo {
	max-width: 900px;
	margin: 50px auto;
	padding: 20px;

}

.pagina-conteudo h1 {
	margin-bottom: 20px;
	color: #333;


}

.pagina-conteudo p {
	font-size: 18px;
	line-height: 1.6;
}


/*linha decorada */

.linha-decorada {
    width: 100vw; /* ocupa toda largura da tela */
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* centraliza corretamente */

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 50px 0;
}

.linha-decorada:before,
.linha-decorada:after {
	content: "";
	flex: 1;
	border-bottom: 1px solid #BFBFBF;
}

.linha-decorada img {
	width: 45px;
	opacity: 0.7;
	margin: 0 15px;
}

/* botoes */

.btn {
	background: #00BF63;
	color: white;
	padding: 12px 22px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;

}

.btn:hover {
	background: #00994F;

}



/*footer*/

.footer {
	background: #00BF63;
	color: white;
	padding: 30px 20px;
	text-align: center;
	margin-top: 60px;
}

.footer-content {
	max-width: 900px;
	margin: 0 auto;
}

.footer .endereco {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 500;
}


.redes-sociais {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}


.icone {
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: transform 0.3s;
}

.icone:hover {
	transform: scale(1.1);

}

.copy {
	font-size: 14px;
	opacity: 0.9;
}


/*info section*/

.info {
	background: #f9f9f9;
	padding: 60px 20px;

}

.info h2 {
	text-align: center;
	margin-bottom: 20px;

}

.info p {
	text-align: center;
	margin-bottom: 30px;
}

.info .btn {
	display: inline-block;
	margin: 0 auto;
}

.info .pagina-conteudo {
	text-align: center;
}

/*section logo */

.logos-section {
	background: #f9f9f9;
	padding: 60px 20px;
	text-align: center;

}

.logos-section h2 {
	margin-bottom: 30px;
	color: #333;
}

/*grade de logo*/

.logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 30px;
	align-items: center;

}

/* logo */
.logos-grid img {
	max-width: 140px;
	width: 100%;
	margin: 0 auto;
	filter: grayscale(100%);
	opacity: 0.85;
	transition: 0.3s;

}

/* efect*/
.logos-grid img:hover {
	filter: grayscale(0);
	opacity: 1;
}

/* contato */

.contato-info {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
}

.contato-info p {
	margin-bottom: 20px;
	line-height: 1.6;
}

.contato-info a {
	color: #00BF63;
	text-decoration: none;
	font-weight: 600;
}

.contato-info a:hover {
	text-decoration: underline;
}


.sobre-bloco {
	margin-bottom: 40px;
}

.sobre-bloco h2 {
	margin-bottom: 10px;
	color: #00BF63;
}

.sobre-bloco p {
	font-size: 18px;
	line-height: 1.7;
}

.btn {
	display: inline-block;
}

body {
	padding-top: 90px; /* mesma altura do header */
}

html {
	scroll-behavior: smooth;
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 10px;
    color: #00BF63;
}

.card a {
    color: #00BF63;
    font-weight: 600;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

.whatsapp-box {
    text-align: center;
    margin: 40px 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.mapa {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.foto-card {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.foto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.foto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.foto-card:hover img {
    transform: scale(1.08);
}

.foto-card::after {
  content: "Ver imagem";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  font-size: 14px;
  letter-spacing: 1px;
  pointer-events: none;
}

.foto-card:hover::after {
  opacity: 1;
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.fechar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.hero-interno {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../img/foto1.jpg'); /* depois troca pela sua imagem */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-interno h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.sobre-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.sobre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.sobre-card h2 {
    color: #00BF63;
    margin-bottom: 10px;
}

/* HERO COM VÍDEO */

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 450px;
  max-height: 750px;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* overlay escuro + conteúdo */

.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* fundo escuro para melhorar leitura */

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 28px;
  }

  .hero-overlay p {
    font-size: 16px;
  }
}

section {
  padding: 60px 20px;
}

.info:nth-child(even) {
  background: #f4f4f4;
}

