*{
	margin: 0%;
	padding: 0%;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	scroll-behavior: smooth;
}

:root{
	--primary: #165633;
	--text-header:#165633;
	--text: #165633;
	--white:#fff;
    --panel: #0b1220;
    --muted: #98a4b6;
    --accent: #f1c40f;
    --max-width: 1100px;
}

header{
	font-family: "Poppins", sans-serif;
	width: 100%;
	z-index: 100;
	top: 0;
	left: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 10;
}
header .content{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 1rem 2rem;
}
.content nav{
	flex: 1;
	max-width: 60%;
	position: relative;
	gap: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
nav a{
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	color: var(--text-header);
	font-weight: 400;
	transition: all 400ms ease;
	white-space: nowrap;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 800;
}


main{
	width: 100%;
	height: 100%;
	padding-bottom: 0;
    margin-bottom: 0;
}

section.hero{
	width: 100%;
	height: 80vh;
	display: flex;
    align-items: center;
	background:linear-gradient(rgba(0, 0, 0, 0.171),rgba(28, 48, 27, 0.13)), url(/img/hero.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.heading{
	margin-left: 5rem;
	line-height: 3rem;
	color: var(--white);
}
.heading span{
	font-size: 25px;
}
.heading h1{
	font-size: 55px;
}
.img-hero{
	width: 50%;
	height: 90%;
	margin: auto;
}
.img-hero img{
	width: 100%;
	height: 100%;
}

section.passeios{
	width: 100%;
	height: auto;
}
.title{
	text-align: center;
	padding: 2rem;
	font-size: 30px;
}
.title h2{
	margin-bottom: 1rem;
	color: var(--text);
}
.passeios .conteiner{
	width: 100%;
	height: auto;
}
.passeios .conteiner .grid-list{
	width: 80%;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.grid-list .item{
	background-color: #ffffff;
	width: 550px;
	height: 580px;
	margin: auto;
	border-radius: 1rem;
	/*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);*/
}


.item div.img{
	width: 100%;
	height: 350px;
	transition: all 400ms ease;
}
.item div.img:hover{
	transform: translateY(-5px);
}
.item div.img img{
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}
.grid-list .item .text{
	padding-top: 2rem;
	font-size: 1.6rem;
	font-weight: 200;
	text-align: center;
}
.section-button{
	cursor: pointer;
	width: 85%;
	padding: 0.8rem;
	font-size: 25px;
	background-color: #165633;
	color: #fff;
	margin: auto;
	text-align: center;
	border-radius: 1rem;
	margin: 0.5rem;
	transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
	position: relative;
	overflow: hidden;
}

/* efeito de brilho suave */
.section-button::before{
	content: "";
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transform: skewX(-20deg);
	transition: 0.5s;
}

/* HOVER */
.section-button:hover{
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
	background-color: #1b6d42; /* leve clareada */
}

.section-button:hover::before{
	left: 100%;
}

.section-button a{
	text-decoration: none;
	color: var(--white);
}


section.about-us{
	margin-top: 1rem;
	width: 100%;
	height: 600px;
	background-color: #F7F7F7;
	padding: 2rem 0rem 4rem 0rem;
}
.about-us .conteiner{
	width: 80%;
	margin: auto;
	height: 100%;
	display: flex;
}
.about-us .conteiner .item{
	width: 50%;
	height: 100%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-us .conteiner .about{
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-us .conteiner .about .image{
	width: 90%;
	height: 90%;
}
.about .image img{
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	/*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);*/
	transition: all 400ms ease;
}
.about .image img:hover{
	background: rgba(var(--white-rgb), 0.15);
	transform: translateY(-5px);
}
.about-us .conteiner .item .text{
	max-width: 500px;
	line-height: 1.8rem;
}
.item .text h2{
	font-size: 2.4rem;
    font-weight: 700;
    line-height: 2.4rem;
	margin-bottom: 1.5rem;
}
.item .text p{
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
	list-style-type: none;
}

.check-list li {
    margin: 0.6rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 32px;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 4px;
    color: #165633; /* cor do check */
    border-radius: 50%;
    font-weight: 700;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}







section#testimonials {
    min-height: 90vh;
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

#testimonials_header {
    text-align: center;
}

#testimonials_header h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

#testimonials_header h2 {
    color: #111928;
    font-size: 40px;
}

#testimonials_header p {
    color: #637381;
    font-size: 16px;
    max-width: 485px;
}

.swiper {
    width: 100%;
    height: 329px;
    padding-bottom: 60px;
}
.swiper-slide {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px rgba(92, 115, 160, 0.07);
    padding: 34px;
    border-radius: 12px;
	max-width: 300px;
	max-height: 180px;
	margin: 1rem;
}

.testimonial-rate {
    display: flex;
    gap: 2px;
}

.testimonial-rate i {
    color: #f9b707;
}

.testimonial-quote {
    color: #637381;
    font-size: 16px;
	margin-top: 1rem;
	min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-weight: 600;
    font-size: 14px;
    color: #111928;
}

.author-info p {
    font-size: 12px;
    color: #8899a8;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #fff;
    width: 25px;
    height: 25px;
    color: #3758f9;
    border: 1px solid #f9fafb;
    border-radius: 100%;
    box-shadow: 0px 0px 20px 0px rgba(92, 115, 160, 0.2);
}

.swiper-button-prev::after {
    content: '\f053';
    font-family: 'Font Awesome 5 free';
    font-weight: 900;
    font-size: 14px;
}

.swiper-button-next::after {
    content: '\f054';
    font-family: 'Font Awesome 5 free';
    font-weight: 900;
    font-size: 14px;
}

.swiper-button-prev {
    left: 3px;
}

.swiper-button-next {
    right: 3px;
}

.swiper-pagination-bullet-active {
    background-color: #3758f9;
}





section.agendar{
	width: 100%;
	height: auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background: linear-gradient(
    135deg,
    #153022 0%,
    #155632 70%,
    #2f8658 100%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
	margin: 2rem 0rem;
	
}
.agendar .content{
	width: 80%;
	margin: auto;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.agendar .content .text{
	line-height: 1.6;
	color: white;
}
.agendar .content .text .section-button{
	width: 25%;
	background-color: #e44800;
	font-size: 16px;
	color: #fff;
	margin: 1rem auto auto auto;
}
.agendar .content .text h2{
	font-size: 32px;
}
.agendar .content .text p{
	margin: auto;
	width: 70%;
}










.site-footer{
    background: linear-gradient(
    135deg,
    #153022 0%,
    #155632 70%,
    #2f8658 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.footer-inner{
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 36px 20px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-brand{
    flex: 1 1 260px;
    min-width: 220px;
}

.image-logo{
	width: 130px;
	height: 120px;
	margin-bottom: 0.8rem;
}

.image-logo img{
	width: 100%;
}

.logo{
    font-weight: 200;
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    color: var(--white);
    margin-bottom: 8px;
}

.brand-desc{
    margin: 0;
    color: var(--white);
    line-height: 1.45;
    font-size: 0.95rem;
}

.footer-nav{
    display:flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 180px;
    min-width: 140px;
}

.footer-nav a{
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.95;
    transition: opacity .18s, transform .18s;
}
.footer-nav a:hover{
	opacity:1; transform:
	translateX(4px);
	color: var(--accent); }

.footer-contact{
    flex: 1 1 220px;
    min-width: 200px;
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}

.contact-line{
	margin:0;
	color:var(--white);
	font-size:0.95rem; }

.contact-line a{
	color:var(--white);
	text-decoration:none; }

.socials{ display:flex; gap:10px; margin-top:6px; }
.social{
    display:inline-flex;
    width:36px;
    height:36px;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background: rgba(255,255,255,0.03);
    color: var(--white);
    text-decoration:none;
    transition: transform .12s, background .12s, color .12s;
}
.social:hover{
	transform: translateY(-3px);
	background: rgba(241,196,15,0.12);
	color: var(--accent);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 14px 20px;
    text-align:center;
    color: var(--white);
    font-size: 0.88rem;
}

  /* responsivo — empilha em telas pequenas */
@media (max-width: 720px){
    .footer-inner{ padding: 28px 16px; gap:1rem; }
    .footer-nav{ flex-direction: row; gap:12px; flex-wrap:wrap; }
    .footer-brand, .footer-contact{ flex: 1 1 100%; }
    .social{ width:40px; height:40px; border-radius:10px; }
}

























#whats {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 101;
}

#whats a {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	border: 2px solid var(--white);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.2rem;
	text-decoration: none;
	border-radius: 35px;
	position: relative;
	overflow: hidden;
	transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
	animation: float 3s ease-in-out infinite;
}

/* Efeito de pulso */
#whats a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 400ms ease;
}

/* Texto WhatsApp no hover */
#whats a::after {
	content: 'WhatsApp';
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	margin-right: 15px;
	transition: all 300ms ease;
	font-family: var(--font);
}

#whats a i {
	position: relative;
	z-index: 2;
	transition: all 300ms ease;
}

#whats a:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
	background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

#whats a:hover::before {
	transform: translate(-50%, -50%) scale(1);
}

#whats a:hover::after {
	opacity: 1;
	margin-right: 20px;
}

#whats a:hover i {
	transform: scale(1.1);
}

#whats a:active {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Animação de flutuação */
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-5px);
	}
}

















































.button{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	padding: 0.2rem 1rem;
	background-color: var(--primary);
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	font-size: 18px;
	color: white;
}
.button:hover{
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}



.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.image-grid {
	width: 100%;
	height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* mesma largura */
    gap: 20px;
}

/* Alturas específicas */
.b1 { height: 200px; }
.b2 { height: 350px; }
.b3 { height: 350px; }
.b4 { height: 200px; }

.box {
    border-radius: 18px;
    background-size: cover;
    background-position: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
	transition: all 400ms ease;
}

.box:hover{
	transform: translateY(-10px);
}

.b1 { background-image: url(/img/img-ilhabela1.jpeg); }
.b2 { background-image: url(/img/jabaquara.jpeg); }
.b3 { background-image: url(/img/img-ilhabela3.jpeg); }
.b4 { background-image: url(/img/img-ilhabela4.jpeg); }

.b3{
	margin-top: -150px;
}

/* ============================
	RESPONSIVIDADE
============================ */

/* ====== Tablets (até 1024px) ====== */
@media (max-width: 1024px) {

	header .content {
		width: 95%;
		padding: 1rem;
	}

	section.hero {
		height: auto;
		padding: 4rem 0;
	}

	.heading {
		margin-left: 2rem;
		line-height: 2.5rem;
	}

	.heading h1 {
		font-size: 42px;
	}

	.heading span {
		font-size: 20px;
	}

	.passeios{
		height: auto;
	}

	.passeios .conteiner .grid-list {
		grid-template-columns: 1fr;
	}

	.grid-list .item {
		width: 90%;
		height: auto;
	}

	.item div.img {
		height: 280px;
	}

	section.about-us {
		height: auto;
		padding: 4rem 0;
	}

	.about-us .conteiner {
		flex-direction: column;
		gap: 2rem;
	}

	.about-us .conteiner .item {
		width: 100%;
	}

	.image-grid {
		grid-template-columns: 1fr 1fr;
	}

	.b3 {
		margin-top: 0;
	}

	.swiper {
		height: auto;
	}

	.agendar .content .text .section-button {
		width: 50%;
	}
}


/* ====== Celulares (até 768px) ====== */
@media (max-width: 768px) {

	header{
		display: none;
	}

	section.hero {
		text-align: center;
	}

	.heading {
		margin-left: auto;
		line-height: 2.2rem;
		width: 90%;
	}

	.b1, .b2, .b3{
		display: none;
	}

	.about-us .conteiner{
		width: 100%;
	}

	.about-us .conteiner .item{
		width: 100%;
		padding: 1rem;
	}

	.about-us .conteiner .about{
		width: 100%;
		padding: 0rem;
	}

	.b4{
		height: 400px;
		width: 330px;
		margin: auto !important;
	}

	.agendar{
		padding: 1rem;
	}
	.agendar .content{
		width: 100%;
		margin: auto;
	}

	#whats a {
		width: 55px;
		height: 55px;
		font-size: 1.8rem;
	}
}


/* ====== Celulares pequenos (até 480px) ====== */
/*@media (max-width: 480px) {

	.heading h1 {
		font-size: 26px;
	}

	.heading span {
		font-size: 16px;
	}

	.heading p {
		font-size: 14px;
	}

	.title h2 {
		font-size: 22px;
	}

	.item div.img {
		height: 220px;
	}

	.footer-nav {
		flex-direction: column;
		align-items: center;
	}

	.footer-contact {
		align-items: center;
		text-align: center;
	}

	.footer-bottom {
		font-size: 0.8rem;
	}
}*/