:root {
	--blue: #103a78;
	--blue-dark: #062a61;
	--green: #9ac75b;
	--teal: #008ea2;
	--orange: #ff8b4a;
	--light: #f7f9fc;
	--text: #1d3156;
	--muted: #6d7891;
	--shadow: 0 14px 35px rgba(20, 48, 90, .11);
	--radius: 22px;
}

/* =========================================================
   01. Base
   ========================================================= */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--orange) #edf3fb;
}

body {
	font-family: 'Nunito', Arial, sans-serif;
	color: var(--text);
	background: #fff;
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	width: 12px;
}

body::-webkit-scrollbar-track {
	background: #edf3fb;
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--blue), var(--teal), var(--green), var(--orange));
	border-radius: 999px;
	border: 3px solid #edf3fb;
}

body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--orange), var(--green), var(--teal), var(--blue));
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(1180px, 92%);
	max-width: 1180px;
}

/* Couleurs utilitaires */
.green {
	color: var(--green);
}

.teal {
	color: var(--teal);
}

.orange {
	color: var(--orange);
}

.bg-green {
	background: linear-gradient(135deg, #8fc553, #b7db76);
}

.bg-teal {
	background: linear-gradient(135deg, #007a91, #0aa3b6);
}

.bg-orange {
	background: linear-gradient(135deg, #ff8041, #ffa163);
}

.bg-blue {
	background: linear-gradient(135deg, #0b3473, #16498e);
}

/* =========================================================
   02. Boutons
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 25px;
	border-radius: 15px;
	font-weight: 900;
	border: 0;
	cursor: pointer;
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn i,
.mini-icon i,
.plus-icon i {
	line-height: 1;
}

.btn-orange {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 8px 18px rgba(255, 139, 74, .26);
}

.btn-orange:hover,
.btn-orange:focus {
	background: #ff7b33;
	color: #fff;
}

.btn-blue {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 25px rgba(16, 58, 120, .25);
}

.btn-blue:hover,
.btn-blue:focus {
	background: var(--blue-dark);
	color: #fff;
}

.btn-white {
	background: #fff;
	color: var(--blue);
	border: 2px solid #cdd6e7;
}

.btn-white:hover,
.btn-white:focus {
	background: #f8fbff;
	color: var(--blue);
}

/* =========================================================
   03. Header / Navigation Bootstrap
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 24px rgba(13, 42, 84, .08);
}

.site-header .navbar {
	min-height: 96px;
	padding: 0;
}

.logo,
.site-header .navbar-brand {
	display: flex;
	align-items: center;
	margin-right: auto;
	padding: 0;
}

.logo-img {
	width: 245px;
	height: auto;
	object-fit: contain;
}

/* Menu principal */
/* Menu principal */
.site-header .navbar-nav {
	gap: 10px;
}

.site-header .navbar-nav .nav-item {
	position: relative;
}

.site-header .navbar-nav .nav-link {
	position: relative;
	z-index: 1;
	overflow: visible;
	padding: 10px 8px;
	color: #243e70;
	font-size: 15.5px;
	font-weight: 900;
	line-height: 1.2;
	border-radius: 0;
	background: transparent;
	transition: color .2s ease, transform .2s ease;
}

.site-header .navbar-nav .nav-link:before {
	display: none;
}

.site-header .navbar-nav .nav-link:after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 2px;
	height: 3px;
	background: var(--orange);
	border-radius: 999px;
	opacity: 0;
	transform: scaleX(.35);
	transform-origin: left;
	transition: opacity .25s ease, transform .25s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
	color: var(--blue);
	transform: translateY(-1px);
	background: transparent;
}

.site-header .navbar-nav .nav-link:hover:after,
.site-header .navbar-nav .nav-link:focus:after,
.site-header .navbar-nav .nav-link.active:after,
.site-header .navbar-nav .nav-link[aria-current="page"]:after {
	opacity: 1;
	transform: scaleX(1);
}

.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link[aria-current="page"] {
	color: var(--blue);
	background: transparent;
}

/* Lien Institution mis en avant */
.site-header .navbar-nav .nav-item-featured .nav-link {
	font-size: 17px;
	font-weight: 900;
	color: var(--blue);
	padding-inline: 10px;
}

.site-header .navbar-nav .nav-item-featured .nav-link:after,
.site-header .navbar-nav .nav-link.active:after,
.site-header .navbar-nav .nav-link[aria-current="page"]:after {
	background: var(--green);
}
/* Actions header : réseaux sociaux + inscription */
.site-header .header-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-left: 26px;
}

.site-header .header-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0;
}

.site-header .header-socials a {
	position: relative;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(16, 58, 120, .06);
	color: var(--blue);
	font-size: 15px;
	overflow: hidden;
	transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header .header-socials a:before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--orange);
	opacity: 0;
	transform: scale(.65);
	border-radius: 50%;
	transition: opacity .25s ease, transform .25s ease;
	z-index: 0;
}

.site-header .header-socials a i {
	position: relative;
	z-index: 1;
	transition: transform .25s ease;
}

.site-header .header-socials a:hover,
.site-header .header-socials a:focus {
	color: #fff;
	background: transparent;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(16, 58, 120, .18);
}

.site-header .header-socials a:hover:before,
.site-header .header-socials a:focus:before {
	opacity: 1;
	transform: scale(1);
}

.site-header .header-socials a:hover i,
.site-header .header-socials a:focus i {
	transform: scale(1.08) rotate(-4deg);
}

.site-header .header-register-btn {
	padding: 10px 20px;
	font-size: 13px;
	border-radius: 999px;
}
/* =========================================================
   04. Hero / Carousel
   ========================================================= */
.hero {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background: none;
}

.hero:before,
.hero:after {
	content: "";
	position: absolute;
	border: 8px solid transparent;
	border-radius: 50%;
	opacity: .28;
	z-index: 2;
	pointer-events: none;
}

.hero:before {
	width: 250px;
	height: 250px;
	border-left-color: var(--green);
	left: -90px;
	top: 18px;
	transform: rotate(-22deg);
	animation: floatShapeOne 8s ease-in-out infinite;
}

.hero:after {
	width: 210px;
	height: 120px;
	border-bottom-color: var(--orange);
	left: -45px;
	bottom: 40px;
	transform: rotate(-20deg);
	animation: floatShapeTwo 7s ease-in-out infinite;
}

.hero-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .92) 38%, rgba(255, 255, 255, .18) 70%);
}

.hero-content {
	position: relative;
	z-index: 3;
	padding: 60px 0 42px;
	max-width: 520px;
}

.hero h1 {
	font-size: 54px;
	line-height: 1.02;
	color: var(--blue);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 20px;
}

.hero h1 strong {
	display: block;
	font-size: 60px;
	font-weight: 900;
}

.hero p {
	font-size: 21px;
	line-height: 1.35;
	color: #31517e;
	font-weight: 800;
	margin-bottom: 25px;
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	z-index: 4;
	display: flex;
	gap: 9px;
	transform: translateX(-50%);
}

.dots span {
	width: 10px;
	height: 10px;
	background: #d6dceb;
	border-radius: 50%;
	cursor: pointer;
	transition: .25s ease;
}

.dots span.active,
.dots span:first-child {
	background: var(--blue);
}

.hero-dots span.active {
	width: 28px;
	border-radius: 999px;
	background: var(--orange);
}

/* =========================================================
   05. Sections communes
   ========================================================= */
.section-title {
	font-size: 25px;
	line-height: 1.08;
	color: var(--blue);
	font-weight: 900;
	margin-bottom: 12px;
}
/* Décor discret autour des titres */
.title-with-leaf {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	position: relative;
}

.title-with-leaf span {
	position: relative;
	z-index: 1;
}

.title-leaf {
	width: 34px;
	height: 34px;
	object-fit: contain;
	opacity: .82;
	flex: 0 0 auto;
	pointer-events: none;
	transform-origin: center;
	animation: softLeafFloat 5s ease-in-out infinite;
}

.title-leaf-blue {
	width: 30px;
	height: 30px;
	transform: rotate(-8deg);
}

.title-leaf-orange {
	width: 36px;
	height: 36px;
	transform: rotate(8deg);
}

.title-leaf-green {
	width: 35px;
	height: 35px;
	transform: rotate(-5deg);
}

@keyframes softLeafFloat {
	0%, 100% {
		transform: translateY(0) rotate(-5deg);
	}

	50% {
		transform: translateY(-3px) rotate(2deg);
	}
}
.small-line {
	width: 52px;
	height: 6px;
	border-radius: 20px;
	background: var(--green);
	margin: 0 0 22px;
}

/* =========================================================
   06. Section Intro
   ========================================================= */
.intro {
	padding: 34px 0 26px;
	background: #fff;
}

.intro-grid {
	display: grid;
	grid-template-columns: 1.15fr 2fr;
	gap: 38px;
	align-items: stretch;
}

.intro-text {
	padding: 0 12px;
}

.intro-text p {
	font-size: 15px;
	line-height: 1.6;
	color: #526079;
	font-weight: 700;
	margin: 15px 0;
}

.signature {
	font-family: cursive;
	font-size: 23px;
	color: #486aa1;
	margin-top: 14px;
}

.values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.value-card {
	position: relative;
	overflow: hidden;
	cursor: default;
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 26px 22px;
	text-align: center;
	min-height: 210px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.value-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, rgba(16, 58, 120, .06), rgba(154, 199, 91, .12), rgba(255, 139, 74, .10));
	opacity: 0;
	transform: scale(.92);
	transition: opacity .35s ease, transform .35s ease;
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 45px rgba(16, 58, 120, .18);
	border-color: rgba(16, 58, 120, .14);
}

.value-card:hover:before {
	opacity: 1;
	transform: scale(1);
}

.icon-circle,
.value-card h3,
.value-card p,
.card-line {
	position: relative;
	z-index: 1;
}

.icon-circle {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 34px;
	font-weight: 900;
	margin-bottom: 17px;
	transition: transform .45s ease, box-shadow .35s ease;
}

.value-card:hover .icon-circle {
	transform: translateY(-5px) rotate(-4deg) scale(1.08);
	box-shadow: 0 14px 28px rgba(16, 58, 120, .18);
}

.value-card h3 {
	font-size: 18px;
	color: var(--blue);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 10px;
	transition: color .25s ease;
}

.value-card:hover h3 {
	color: var(--orange);
}

.value-card p {
	font-size: 14px;
	color: #5e6b82;
	line-height: 1.35;
	font-weight: 700;
}

.card-line {
	width: 28px;
	height: 4px;
	border-radius: 20px;
	margin-top: 14px;
	background: currentColor;
	transition: width .3s ease, background .3s ease;
}

.value-card:hover .card-line {
	width: 48px;
	background: var(--orange);
}

/* =========================================================
   07. Accès rapides
   ========================================================= */
.quick {
	padding: 10px 0 26px;
}

.panel {
	background: #fff;
	border-radius: 24px;
	box-shadow: var(--shadow);
	padding: 28px 38px;
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 22px;
}

.quick-card {
	display: flex;
	align-items: center;
	gap: 18px;
	border-radius: 14px;
	padding: 18px;
	background: #f3f7fb;
	min-height: 96px;
	transition: transform .22s ease, box-shadow .22s ease;
	position: relative;
	overflow: hidden;
}

.quick-card:nth-child(1) {
	background: #e6f4f6;
}

.quick-card:nth-child(2) {
	background: #eef7df;
}

.quick-card:nth-child(3) {
	background: #fff0e8;
}

.quick-card:nth-child(4) {
	background: #eef2f8;
}

.quick-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 20px rgba(16, 58, 120, .12);
}

.quick-card .mini-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	flex: 0 0 auto;
}

.quick-card h3 {
	font-size: 16px;
	color: var(--blue);
	font-weight: 900;
}

.quick-card p {
	font-size: 12px;
	color: #4f5f78;
	font-weight: 800;
	line-height: 1.25;
	margin-top: 3px;
}

.arrow {
	margin-left: auto;
	color: var(--blue);
	font-size: 30px;
	font-weight: 900;
}

/* =========================================================
   08. Vie de l'institution
   ========================================================= */
.news {
	padding: 0 0 24px;
}

.news-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 14px;
}

.news-head a {
	font-size: 13px;
	color: var(--blue);
	font-weight: 900;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.news-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid #e7ecf5;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.news-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(16, 58, 120, .12), rgba(154, 199, 91, .12), rgba(255, 139, 74, .12));
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}

.news-card:hover {
	transform: translateY(-9px);
	box-shadow: 0 24px 45px rgba(16, 58, 120, .18);
	border-color: rgba(16, 58, 120, .16);
}

.news-card:hover:before {
	opacity: 1;
}

.news-img {
	height: 145px;
	background: center / cover;
	transition: transform .55s ease, filter .55s ease;
}

.news-card:hover .news-img {
	transform: scale(1.08);
	filter: saturate(1.15);
}

.news-body {
	padding: 17px 18px 18px;
	position: relative;
	z-index: 2;
}

.tag {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	margin-top: -34px;
	position: relative;
	transition: transform .3s ease, box-shadow .3s ease;
}

.news-card:hover .tag {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(16, 58, 120, .18);
}

.date {
	float: right;
	font-size: 12px;
	color: #8792a8;
	font-weight: 800;
}

.news-card h3 {
	font-size: 18px;
	color: var(--blue);
	font-weight: 900;
	margin: 10px 0 7px;
}

.news-card p {
	font-size: 14px;
	color: #5d6a81;
	line-height: 1.35;
	font-weight: 700;
}

.read {
	display: inline-block;
	margin-top: 12px;
	font-weight: 900;
	font-size: 13px;
	color: var(--blue);
	transition: color .25s ease, transform .25s ease;
}

.news-card:hover .read {
	color: var(--orange);
	transform: translateX(5px);
}

/* =========================================================
   09. Niveaux scolaires
   ========================================================= */
.levels {
	padding: 8px 0 28px;
}

.level-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.level-card {
	height: 145px;
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	box-shadow: var(--shadow);
	background-size: cover;
	background-position: center;
	transition: transform .35s ease, box-shadow .35s ease;
}

.level-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12, 54, 115, .95), rgba(12, 54, 115, .65), rgba(12, 54, 115, .1));
	transition: background .35s ease, opacity .35s ease;
}

.level-card.green-bg:before {
	background: linear-gradient(90deg, rgba(143, 197, 83, .95), rgba(143, 197, 83, .7), rgba(143, 197, 83, .05));
}

.level-card.teal-bg:before {
	background: linear-gradient(90deg, rgba(0, 142, 162, .98), rgba(0, 142, 162, .68), rgba(0, 142, 162, .04));
}

.level-card:hover {
	transform: translateY(-8px) scale(1.015);
	box-shadow: 0 24px 45px rgba(16, 58, 120, .22);
}

.level-card:hover:before {
	background: linear-gradient(90deg, rgba(6, 42, 97, .96), rgba(0, 142, 162, .62), rgba(255, 139, 74, .12));
}

.level-content {
	position: relative;
	z-index: 2;
	padding: 24px;
	max-width: 58%;
	transition: transform .35s ease;
}

.level-card:hover .level-content {
	transform: translateX(8px);
}

.level-content h3 {
	font-size: 25px;
	font-weight: 900;
	margin-bottom: 8px;
}

.level-content p {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.level-content span {
	display: inline-block;
	font-size: 13px;
	font-weight: 900;
	margin-top: 14px;
	transition: transform .25s ease, color .25s ease;
}

.level-card:hover .level-content span {
	transform: translateX(6px);
	color: #fff;
}

/* =========================================================
   10. Les + de Sainte-Thérèse
   ========================================================= */
.plus {
	padding: 0 0 36px;
}

.plus-grid {
	background: #fff;
	border-radius: 24px;
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	padding: 30px 18px;
}

.plus-item {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 8px 20px;
	border-right: 1px solid #dfe6f1;
	border-left: 1px solid #dfe6f1;
	border-radius: 18px;
	transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.plus-item:last-child {
	border-right: 0;
}

.plus-item:before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(16, 58, 120, .06), rgba(154, 199, 91, .08), rgba(255, 139, 74, .08));
	opacity: 0;
	transform: scale(.92);
	transition: opacity .35s ease, transform .35s ease;
	z-index: 0;
}

.plus-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 34px rgba(16, 58, 120, .14);
}

.plus-item:hover:before {
	opacity: 1;
	transform: scale(1);
}

.plus-icon,
.plus-item h3,
.plus-item p {
	position: relative;
	z-index: 1;
}

.plus-icon {
	display: inline-block;
	font-size: 42px;
	margin-bottom: 12px;
	transition: transform .45s ease;
}

.plus-item:hover .plus-icon {
	transform: translateY(-4px) rotate(-5deg) scale(1.12);
}

.plus-item h3 {
	font-size: 15px;
	color: var(--blue);
	font-weight: 900;
	margin-bottom: 5px;
	transition: color .25s ease;
}

.plus-item:hover h3 {
	color: var(--orange);
}

.plus-item p {
	font-size: 12px;
	color: #56647a;
	font-weight: 800;
	line-height: 1.25;
}

/* =========================================================
   11. Footer
   ========================================================= */
.footer {
	background: var(--blue-dark);
	color: #fff;
	position: relative;
	margin-top: 40px;
	padding: 76px 0 0;
	overflow: hidden;
}

.footer-wave {
	position: absolute;
	top: -42px;
	left: -5%;
	width: 110%;
	height: 84px;
	background: #fff;
	border-radius: 0 0 50% 50%;
	z-index: 1;
}

.footer-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 42px;
	align-items: start;
	padding-bottom: 34px;
}

.footer-brand,
.footer-column {
	min-width: 0;
}

.footer-logo-img {
	width: 245px;
	max-width: 100%;
	height: auto;
	margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .82);
	font-weight: 700;
}

.footer a {
	transition: color .2s ease, background .2s ease;
}

.footer a:hover,
.footer a:focus {
	color: #fff;
}

.footer h3 {
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 14px;
}

.footer ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.footer ul li {
	margin-bottom: 8px;
}

.footer ul li a:after {
	content: " ›";
	color: var(--green);
	font-weight: 900;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.footer-socials a:hover,
.footer-socials a:focus {
	background: var(--orange);
	color: #fff;
}

.footer-subtitle {
	margin-top: 18px;
}

.footer-bottom {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding: 18px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, .72);
}

.footer-bottom a,
.footer-bottom span {
	font-size: 12px;
	color: rgba(255, 255, 255, .72);
	font-weight: 700;
}

/* =========================================================
   12. Animations globales
   ========================================================= */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .75s ease, transform .75s ease;
}

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

.reveal-delay-1 {
	transition-delay: .08s;
}

.reveal-delay-2 {
	transition-delay: .16s;
}

.reveal-delay-3 {
	transition-delay: .24s;
}

@keyframes floatShapeOne {
	0%, 100% {
		transform: rotate(-22deg) translateY(0);
	}

	50% {
		transform: rotate(-14deg) translateY(16px);
	}
}

@keyframes floatShapeTwo {
	0%, 100% {
		transform: rotate(-20deg) translateX(0);
	}

	50% {
		transform: rotate(-12deg) translateX(20px);
	}
}

/* =========================================================
   13. Responsive
   ========================================================= */
@media (max-width: 1199px) {
	.site-header .navbar {
		min-height: 82px;
	}

	.site-header .navbar-collapse {
		padding: 18px 0 24px;
	}

	.site-header .navbar-nav {
		gap: 4px;
		padding-top: 8px;
	}

	.site-header .navbar-nav .nav-link {
		display: inline-flex;
		padding: 11px 8px;
		font-size: 16px;
	}
	
	.site-header .navbar-nav .nav-link:after {
		left: 8px;
		right: 8px;
	}

	.site-header .header-actions {
		align-items: flex-start;
		margin-left: 0;
		margin-top: 14px;
	}
	
	.site-header .header-socials {
		justify-content: flex-start;
	}
	
	.site-header .header-register-btn {
		width: fit-content;
		margin-top: 2px;
	}

	.intro-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.values,
	.quick-grid,
	.news-grid,
	.level-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.plus-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.4fr 1fr;
	}
}

@media (max-width: 680px) {
	.logo-img {
		width: 205px;
	}

	.hero {
		min-height: 500px;
	}

	.hero-overlay {
		background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .94) 56%, rgba(255, 255, 255, .35) 100%);
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero h1 strong {
		font-size: 40px;
	}

	.hero p {
		font-size: 17px;
	}

	.values,
	.quick-grid,
	.news-grid,
	.level-grid,
	.plus-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.panel {
		padding: 24px 20px;
	}

	.level-content {
		max-width: 78%;
	}

	.plus-item {
		border-right: 0;
		border-left: 0;
		border-bottom: 1px solid #dfe6f1;
	}

	.plus-item:last-child {
		border-bottom: 0;
	}

	.footer-logo-img {
		width: 220px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
.title-with-leaf {
	gap: 8px;
}

.title-leaf {
	width: 27px;
	height: 27px;
}