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

body {
	background-color: rgb(247, 250, 255);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.6;
	color: #333;
}

/* === CABEÇALHO NÃO FIXO === */

.header {
    width: 100%;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
}

.header img {
    background-color: rgb(187, 219, 249);
    border-radius: 50%;
    height: 70px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    display: flex;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2989ee;
    font-weight: 650;
    transition: color 0.3s ease;
}

.nav-list li:nth-child(4) a,
.nav-list li:nth-child(5) a {
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-list li:nth-child(4) a {
    background-color: white;
    border: 1px solid #054084;
}

.nav-list li:nth-child(4) a:hover {
    background-color: #054084;
    color: #fff;
}

.nav-list li:nth-child(5) a {
    background-color: #054084;
    color: #fff;
}

.nav-list li:nth-child(5) a:hover {
    background-color: #054084;
}

.nav-list li a:hover {
  color: #142157;
}

/* === HERO === */
.hero {
	background-image: url(../assets/images/imgmaisclara.png);
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
}

.hero-title {
	font-size: 3em;
	color: #054084;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.2em;
	max-width: 600px;
	color: #333;
}

.btn-hero {
	display: inline-block;
	margin-top: 30px;
	padding: 10px 30px;
	background-color: #2989ee;
	color: #fff;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-hero:hover {
	background-color: #054084;
}

/* === SECTIONS BASE === */
.section {
	padding: 60px 20px;
}

.section-header h2 {
	color: #054084;
	text-align: center;
	font-size: 2.2em;
	margin-bottom: 20px;
}

/* === SOBRE === */
.sobre-content {
	max-width: 900px;
	margin: auto;
	font-size: 1.1em;
}

.sobre-section-container {
    padding-top: 80px;
    padding-bottom: 40px;
    background: linear-gradient(to bottom, #E9E8F8, #F7FAFF);
}

/* === FUNCIONALIDADES === */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 40px auto 0;
}

.feature-item {
	background: #fff;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-item img {
	margin-bottom: 15px;
	border-radius: 8px;
	max-width: 80px;
}

.feature-item h3 {
	color: #054084;
	margin-bottom: 10px;
	font-size: 1.3em;
}

/* === CTA SECUNDÁRIA === */
.cta-second {
	text-align: center;
	background: #054084;
	color: #fff;
	padding: 60px 20px;
	margin: 40px auto;
}

.cta-second h2 {
	margin-bottom: 20px;
	font-size: 2em;
}

.cta-second .btn-secondary {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 30px;
	background: #2989ee;
	color: #fff;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.cta-second .btn-secondary:hover {
	background: #1a5fb4;
}

/* === FOOTER === */
.footer {
	background: #2989ee;
	color: #fff;
	margin-top: 40px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding: 40px 20px;
}

.footer-col p,
.footer-col a {
    color: #fff;
    font-size: 0.95em;
    text-decoration: none;
}

.footer-col h4 {
	margin-bottom: 10px;
	font-size: 1.2em;
	border-bottom: 2px solid #fff;
	display: inline-block;
}

.footer-col a:hover {
	text-decoration: underline;
}


.social-list li {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
	background: #054084;
	padding: 10px;
	font-size: 0.9em;
}

.social-list {
    list-style: none;
    padding: 0;
}