* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total dos elementos */
    -webkit-font-smoothing: antialiased; /* Melhora a renderização da fonte no Safari/Mac */
    -moz-osx-font-smoothing: grayscale;
}

:root {
	--primary-color: #f39c12;
	--bg-color: #1a1a1a;
	--card-bg: #262626;
	--logo-card-bg: #ffffff;
	--text-color: #ffffff;
	--whatsapp-green: #25D366;
	--instagram-gradient: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.main-wrapper {
	display: flex;
	max-width: 1100px;
	width: 95%;
	gap: 50px;
	padding: 60px 0;
	align-items: flex-start;
}

.left-side {
	flex: 1;
	text-align: left;
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
}

.logo-card {
	background-color: var(--logo-card-bg);
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	margin-bottom: 25px;
	display: block;
	max-width: 100%;
	border: 1px solid rgba(255,255,255,0.05);
}

.logo-card img {
	width: 100%;
	height: auto;
	display: block;
}

.intro-text {
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #bbb;
}

.social-area {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.btn-main {
	background-color: var(--whatsapp-green);
	color: white;
	padding: 18px 25px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 700;
	display: block;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.btn-main:hover {
	background-color: #20ba5c; 
	transform: translateY(-2px); 
}

.btn-insta {
	background: #fd5949;
	background: var(--instagram-gradient);
	color: white;
	padding: 18px 25px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 700;
	display: block;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.btn-insta:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

.contact-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-size: 0.9rem;
	padding: 10px 15px;
	background: rgba(255,255,255,0.05);
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0.1);
	transition: 0.3s;
}

.right-side { flex: 1.2; }

.agenda-title {
	font-size: 1.3rem;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 10px;
	margin: 0 0 25px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

.trip-card {
	background-color: var(--card-bg);
	margin-bottom: 15px;
	padding: 20px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.trip-info h3 { 
	margin: 0 0 10px 0; 
	font-size: 1.1rem; 
	color: var(--primary-color); 
	font-weight: 700; 
}

.trip-info a {
	text-decoration: none;
	display: inline-block;
}

.trip-info a h3 {
	transition: color 0.3s ease;
}

.trip-info a:hover h3 {
	color: #fff;
	text-decoration: none;
}

.trip-info p { margin: 3px 0; font-size: 0.9rem; }

.status {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 4px;
}

.status-vagas { background: #2ecc71; color: #fff; }
.status-poucas { background: #f1c40f; color: #000; }
.status-esgotado { background: #e74c3c; color: #fff; }

@media (max-width: 900px) {
	.main-wrapper { 
		flex-direction: column; 
		text-align: center; 
		gap: 0;
		padding: 30px 0; 
	}
	.left-side { 
		position: static; 
		margin-bottom: 40px; 
		width: 100%; 
		display: flex; 
		flex-direction: column; 
		align-items: center; 
	}
	.logo-card { 
		margin: 0 auto 25px auto; 
		max-width: 280px; 
	}
	.trip-card { 
		flex-direction: column; 
		gap: 15px; 
	}
	.right-side {
		width: 100%;
	}
}
