:root {
	--coral: #FF6B6B;
	--coral-dark: #e85555;
	--sky: #4ECDC4;
	--sky-dark: #3db8b0;
	--sun: #FFD93D;
	--sun-dark: #f0c830;
	--lavender: #A78BFA;
	--lavender-dark: #8b6fe0;
	--ocean: #3B82F6;
	--peach: #FFF5EE;
	--mint: #F0FFF4;
	--cream: #FFFDF7;
	--dark: #2D3748;
	--gray: #64748B;
	--menu-height: 76px;
}
* {
	scroll-behavior: smooth;
}
section[id] {
	scroll-margin-top: var(--menu-height);
}
body {
	font-family: 'Quicksand', sans-serif;
	color: var(--dark);
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', sans-serif;
}

/*
 * NAVBAR
 */
.navbar-aeiou {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
	padding: 0.6rem 0;
	transition: all 0.3s ease;
}
.navbar-aeiou.scrolled {
	padding: 0.4rem 0;
	box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.navbar-brand-img {
	width: 100%;
	max-width: 140px;
	max-height: 50px;
	object-fit: contain;
}
.navbar-aeiou .nav-link {
	font-weight: 600;
	color: var(--dark);
	padding: 0.5rem 1rem !important;
	border-radius: 8px;
	transition: all 0.25s;
	font-size: 0.92rem;
}
.navbar-aeiou .nav-link:hover {
	color: var(--coral);
	background: rgba(255,107,107,0.07);
}
.navbar-brand-sub {
	font-size: 0.62rem;
	color: var(--gray);
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
	margin-top: -4px;
}

/*
 * HERO
 */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #FFF5EE 0%, #F0FFF4 40%, #EEF2FF 100%);
	overflow: hidden;
}
.hero-section::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
	z-index: 0;
}
.hero-section::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -150px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 70%);
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 2;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	border: 1px solid rgba(255,107,107,0.2);
	color: var(--coral);
	font-weight: 700;
	font-size: 0.78rem;
	padding: 0.45rem 1rem;
	border-radius: 50px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 2px 12px rgba(255,107,107,0.1);
}
.hero-title {
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1.15;
	color: var(--dark);
}
.hero-title span {
	background: linear-gradient(90deg, var(--coral) 0%, var(--sun-dark) 25%, var(--sky) 50%, var(--ocean) 75%, var(--lavender) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-subtitle {
	font-size: 1.15rem;
	color: var(--gray);
	line-height: 1.7;
	max-width: 520px;
}
.hero-image-wrapper {
	position: relative;
	z-index: 2;
}
.hero-image-main {
	border-radius: 24px;
	box-shadow: 0 25px 60px rgba(0,0,0,0.12);
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.hero-float-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 1rem 1.3rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 {
	bottom: -20px;
	left: -20px;
}
.hero-float-card.card-2 {
	top: 30px;
	right: -15px;
	animation-delay: 1.5s;
}
.hero-float-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: white;
	flex-shrink: 0;
}
.hero-float-card h6 {
	font-size: 0.82rem;
	font-weight: 800;
	margin: 0;
	color: var(--dark);
}
.hero-float-card p {
	font-size: 0.72rem;
	margin: 0;
	color: var(--gray);
	font-weight: 500;
}
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.btn-coral {
	background: var(--coral);
	color: white;
	font-weight: 700;
	border: none;
	padding: 0.75rem 1.8rem;
	border-radius: 12px;
	font-size: 0.95rem;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}
.btn-coral:hover {
	background: var(--coral-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}
.btn-outline-coral {
	background: transparent;
	color: var(--coral);
	font-weight: 700;
	border: 2px solid var(--coral);
	padding: 0.7rem 1.8rem;
	border-radius: 12px;
	font-size: 0.95rem;
	transition: all 0.3s;
}
.btn-outline-coral:hover {
	background: var(--coral);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}
.btn-sky {
	background: var(--sky);
	color: white;
	font-weight: 700;
	border: none;
	padding: 0.75rem 1.8rem;
	border-radius: 12px;
	font-size: 0.95rem;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(78,205,196,0.3);
}
.btn-sky:hover {
	background: var(--sky-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(78,205,196,0.4);
}

/*
 * ABOUT
 */
.about-section {
	background: white;
	padding: 6rem 0;
}
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
}
.section-label.coral {
	color: var(--coral);
}
.section-label.sky {
	color: var(--sky);
}
.section-label.lavender {
	color: var(--lavender);
}
.section-label.ocean {
	color: var(--ocean);
}
.section-title {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--dark);
	line-height: 1.2;
	margin-bottom: 1rem;
}
.section-desc {
	font-size: 1.05rem;
	color: var(--gray);
	line-height: 1.8;
}
.about-image {
	border-radius: 20px;
	width: 100%;
	height: 380px;
	object-fit: cover;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.about-stat {
	text-align: center;
	padding: 1.5rem;
}
.about-stat-number {
	font-family: 'Nunito', sans-serif;
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.3rem;
}
.about-stat-label {
	font-size: 0.82rem;
	color: var(--gray);
	font-weight: 600;
}
.about-values-card {
	background: linear-gradient(135deg, #FFF5EE, #F0FFF4);
	border-radius: 16px;
	padding: 1.5rem;
	margin-top: 1.5rem;
}
.about-value-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.about-value-item:last-child {
	margin-bottom: 0;
}
.about-value-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
	color: white;
}
.about-value-item h6 {
	font-weight: 800;
	font-size: 0.9rem;
	margin-bottom: 2px;
}
.about-value-item p {
	font-size: 0.82rem;
	color: var(--gray);
	margin: 0;
	line-height: 1.5;
}

/*
 * LEVELS
 */
.levels-section {
	background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
	padding: 5rem 0 3rem;
}
.level-card {
	background: white;
	border-radius: 20px;
	padding: 2.2rem;
	height: 100%;
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.level-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 20px 20px 0 0;
}
.level-card.creche::before {
	background: linear-gradient(90deg, var(--coral), #FF8E8E);
}
.level-card.pre::before {
	background: linear-gradient(90deg, var(--sky), #7EDDD6);
}
.level-card.ciclo::before {
	background: linear-gradient(90deg, var(--lavender), #C4B5FD);
}
.level-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.level-icon-wrapper {
	width: 68px;
	height: 68px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: white;
	margin-bottom: 1.3rem;
}
.level-card h4 {
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
}
.level-age {
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
}
.level-card p {
	font-size: 0.92rem;
	color: var(--gray);
	line-height: 1.7;
}
.level-features {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0 0;
}
.level-features li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--dark);
	padding: 0.4rem 0;
}
.level-features li i {
	font-size: 0.9rem;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	color: white;
	flex-shrink: 0;
}
.creche-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(255,107,107,0.08);
	color: var(--coral);
	padding: 0.35rem 0.8rem;
	border-radius: 50px;
	margin-top: 1rem;
}

/*
 * MATRICULAS / CTA
 */
.cta-section {
	background: linear-gradient(135deg, var(--coral) 0%, var(--lavender) 100%);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
}
.cta-section::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
}
.cta-content {
	position: relative;
	z-index: 2;
}
.cta-title {
	font-size: 2.6rem;
	font-weight: 900;
	color: white;
}
.cta-subtitle {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.9);
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.7;
}
.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(10px);
	color: white;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0.55rem 1.2rem;
	border-radius: 50px;
	border: 1px solid rgba(255,255,255,0.2);
}
.btn-white {
	background: white;
	color: var(--coral);
	font-weight: 700;
	border: none;
	padding: 0.85rem 2rem;
	border-radius: 14px;
	font-size: 1rem;
	transition: all 0.3s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 35px rgba(0,0,0,0.2);
	color: var(--coral-dark);
}
.btn-white-outline {
	background: transparent;
	color: white;
	font-weight: 700;
	border: 2px solid rgba(255,255,255,0.5);
	padding: 0.8rem 2rem;
	border-radius: 14px;
	font-size: 1rem;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.btn-white-outline:hover {
	background: rgba(255,255,255,0.15);
	border-color: white;
	color: white;
	transform: translateY(-3px);
}

/*
 * EMENTAS
 */
.ementas-section {
	background: white;
	padding: 3rem 0 6rem;
	border-bottom: 1px solid rgba(0,0,0,0.03);
}
.ementa-card {
	background: white;
	border-radius: 20px;
	padding: 2.2rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s;
	height: 100%;
}
.ementa-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0,0,0,0.1);
	color: inherit;
}
.ementa-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: rgba(78,205,196,0.15);
	color: var(--sky-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
}
.ementa-info h4 {
	font-weight: 800;
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
	color: var(--dark);
}
.ementa-info p {
	font-size: 0.9rem;
	color: var(--gray);
	margin: 0;
	line-height: 1.5;
}
.ementa-btn {
	background: var(--sky);
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-left: auto;
	flex-shrink: 0;
	transition: all 0.3s;
}
.ementa-card:hover .ementa-btn {
	background: var(--sky-dark);
	transform: scale(1.08);
}

/*
 * DOCUMENTS
 */
.docs-section {
	background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
	padding: 6rem 0;
}
.doc-card {
	background: white;
	border-radius: 14px;
	padding: 1.4rem;
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 2px 12px rgba(0,0,0,0.03);
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: inherit;
	height: 100%;
}
.doc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.08);
	border-color: rgba(255,107,107,0.2);
	color: inherit;
}
.doc-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.doc-info h6 {
	font-weight: 800;
	font-size: 0.88rem;
	margin-bottom: 3px;
	color: var(--dark);
}
.doc-info p {
	font-size: 0.75rem;
	color: var(--gray);
	margin: 0;
	font-weight: 500;
}
.doc-download {
	margin-left: auto;
	font-size: 1.1rem;
	color: var(--gray);
	transition: color 0.3s;
	flex-shrink: 0;
}
.doc-card:hover .doc-download {
	color: var(--coral);
}

/*
 * TESTIMONIALS
 */
.testimonials-section {
	background: linear-gradient(135deg, #FFF5EE 0%, #EEF2FF 100%);
	padding: 6rem 0;
}
.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	height: 100%;
	position: relative;
}
.testimonial-card::before {
	content: '\201C';
	font-size: 4rem;
	font-family: Georgia, serif;
	color: rgba(255,107,107,0.15);
	position: absolute;
	top: 10px;
	left: 20px;
	line-height: 1;
}
.testimonial-text {
	font-size: 0.95rem;
	color: var(--gray);
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 1.2rem;
	position: relative;
	z-index: 1;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.9rem;
	color: white;
}
.testimonial-author h6 {
	font-weight: 700;
	font-size: 0.88rem;
	margin: 0;
}
.testimonial-author p {
	font-size: 0.75rem;
	color: var(--gray);
	margin: 0;
}
.stars {
	color: var(--sun);
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

/*
 * CONTACT
 */
.contact-section {
	background: white;
	padding: 6rem 0;
}
.contact-info-card {
	background: linear-gradient(135deg, #FFF5EE, #F0FFF4);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.8rem;
}
.contact-item:last-child {
	margin-bottom: 0;
}
.contact-item-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: white;
	flex-shrink: 0;
}
.contact-item h6 {
	font-weight: 800;
	font-size: 0.88rem;
	margin-bottom: 3px;
}
.contact-item p {
	font-size: 0.88rem;
	color: var(--gray);
	margin: 0;
	line-height: 1.6;
}
.contact-item a {
	color: var(--coral);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}
.contact-item a:hover {
	color: var(--coral-dark);
}
.map-wrapper {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	height: 100%;
	min-height: 350px;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
}
.map-placeholder {
	text-align: center;
	color: var(--gray);
}
.map-placeholder i {
	font-size: 3rem;
	margin-bottom: 0.75rem;
	display: block;
	color: var(--sky);
}

/*
 * FOOTER
 */
.footer-section {
	background: var(--dark);
	color: rgba(255,255,255,0.7);
	padding: 4rem 0 0;
}
.footer-brand-img {
	width: 100%;
	max-width: 140px;
	max-height: 50px;
	object-fit: contain;
	margin-bottom: 1rem;
	display: block;
}
.footer-section h6 {
	color: white;
	font-weight: 800;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.2rem;
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links li {
	margin-bottom: 0.6rem;
}
.footer-links a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-links a:hover {
	color: white;
	padding-left: 5px;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.5rem 0;
	margin-top: 3rem;
	font-size: 0.82rem;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.6);
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s;
	margin-right: 0.5rem;
}
.footer-social a:hover {
	background: var(--coral);
	color: white;
	transform: translateY(-3px);
}

/*
 * SCROLL TO TOP
 */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--coral);
	color: white;
	border: none;
	font-size: 1.2rem;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(255,107,107,0.3);
	transition: all 0.3s;
	z-index: 999;
	cursor: pointer;
}
.scroll-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255,107,107,0.4);
}
.scroll-top.show {
	display: flex;
}

/*
 * RESPONSIVE
 */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.4rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.cta-title {
		font-size: 2rem;
	}
	.hero-image-main {
		height: 320px;
		margin-top: 2.5rem;
	}
}
@media (max-width: 767px) {
	.hero-title {
		font-size: 2rem;
	}
	.section-title {
		font-size: 1.7rem;
	}
	.cta-title {
		font-size: 1.7rem;
	}
	.hero-float-card.card-2 {
		display: none;
	}
}