/**
 * PELIKAN.LOVE 
 * BASE2.CSS
 * Estilos específicos da páginas info (termos.html e privacidade.html)
 */

body {
	font-family: 'Georgia', serif;
	background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 50%, #1a3a2e 100%);
	color: #333;
	line-height: 1.6;
	min-height: 100vh;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.header {
	text-align: center;
	margin-bottom: 30px;
}

.logo-text {
	color: white;
	margin-bottom: 20px;
}

.back-link {
	 display: inline-block;
	 color: white;
	 text-decoration: none;
	 padding: 10px 20px;
	 background: rgba(255, 255, 255, 0.2);
	 border-radius: 25px;
	 transition: all 0.3s ease;
	 margin-bottom: 20px;
}

.back-link:hover {
	 background: rgba(255, 255, 255, 0.3);
}

.content-card {
	 background: white;
	 border-radius: 20px;
	 padding: 50px 40px;
	 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	 line-height: 1.8;
}

h1 {
	 color: var(--pelikan-green-dark);
	 font-size: 2.5em;
	 margin-bottom: 10px;
	 font-family: 'Palatino', serif;
}

.last-updated {
	 color: #999;
	 font-size: 0.9em;
	 margin-bottom: 30px;
}

h2 {
	 color: var(--pelikan-green-dark);
	 font-size: 1.8em;
	 margin-top: 40px;
	 margin-bottom: 20px;
	 padding-bottom: 10px;
	 border-bottom: 2px solid var(--pelikan-green-light);
}

h3 {
	 color: var(--pelikan-green-medium);
	 font-size: 1.3em;
	 margin-top: 30px;
	 margin-bottom: 15px;
}

p {
	 margin-bottom: 15px;
	 color: #555;
}

ul, ol {
	 margin: 15px 0 15px 30px;
	 color: #555;
}

li {
	 margin: 8px 0;
}

strong {
	color: var(--pelikan-green-dark);
}

.highlight-box {
	 background: var(--pelikan-green-light);
	 border-left: 4px solid var(--pelikan-green-dark);
	 padding: 20px;
	 margin: 25px 0;
	 border-radius: 5px;
}

.contact-box {
	background: #f0f7f4;
	padding: 30px;
	border-radius: 10px;
	margin-top: 40px;
	text-align: center;
}

@media (max-width: 768px) {
	.content-card {
		padding: 30px 20px;
	}

	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.5em;
	}
}