se :root {
	--primary: #0053a0;
	--secondary: #e6ac00;
	--light: #f1f7fd;
	--dark: #333;
	--gray: #555;
}


.award-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.award-icon {
    overflow: hidden; /* evita que a imagem "escape" do container */
    display: inline-block;
    border-radius: 10px;
}

.award-img {
    width: 100px;
    height: auto;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.award-item:hover .award-img {
    transform: scale(1.5); /* aumenta o zoom consideravelmente */
}






body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #555;
	margin: 0;
	padding: 0;
}

.about-section {
	padding: 80px 0;
	background-color: var(--light);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: var(--secondary);
	opacity: 0.1;
	border-radius: 50%;
	z-index: 0;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 200px;
	height: 200px;
	background: var(--primary);
	opacity: 0.1;
	border-radius: 50%;
	z-index: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.section-title {
	color: var(--primary);
	margin-bottom: 1px;
	position: relative;
	padding-bottom: 15px;
	text-align: center;
	font-size: 2.5rem;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 4px;
	background: var(--secondary);
	border-radius: 2px;
}

.section-subtitle {
	text-align: center;
	margin-bottom: 50px;
	font-size: 1.2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: var(--gray);
}

.section-subtitle {
	text-align: justify;
	text-justify: inter-word;
}

.sub-title {
	color: var(--primary);
	margin: 25px 0 15px;
	display: flex;
	align-items: center;
}

.sub-title i {
	margin-right: 12px;
	color: var(--secondary);
}

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

.values-list li {
	margin-bottom: 12px;
	padding: 12px 15px 12px 45px;
	position: relative;
	color: var(--dark);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.values-list li:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-list li::before {
	content: '✓';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	background: var(--secondary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.btn-mahs {
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: white;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 15px;
	box-shadow: 0 4px 15px rgba(0, 83, 160, 0.3);
	border: none;
	cursor: pointer;
}

.btn-mahs:hover {
	background: #003d70;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 83, 160, 0.4);
	color: white;
}

.btn-mahs i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.btn-mahs:hover i {
	transform: translateX(4px);
}

.about-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transition: all 0.5s ease;
}

.about-image:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image::before {
	content: '';
	position: absolute;
	top: -15px;
	right: -15px;
	width: 100%;
	height: 100%;
	border: 3px solid var(--secondary);
	border-radius: 12px;
	z-index: -1;
	opacity: 0.5;
}

.stat-item {
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	margin-bottom: 20px;
	height: 100%;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}

.stat-label {
	color: var(--gray);
	font-size: 1rem;
}

.content-box {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	height: 100%;
	transition: all 0.3s ease;
}

.content-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-12, .col-lg-6, .col-md-6, .col-lg-8, .col-lg-4 {
	padding: 0 15px;
	box-sizing: border-box;
}

.col-12 {
	width: 100%;
}

.col-lg-6 {
	width: 50%;
}

.col-md-6 {
	width: 50%;
}

.col-lg-8 {
	width: 66.6667%;
}

.col-lg-4 {
	width: 33.3333%;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.mb-5 {
	margin-bottom: 3rem;
}

.mb-3 {
	margin-bottom: 1rem;
}

.text-center {
	text-align: center;
}

.align-items-center {
	align-items: center;
}

.h-100 {
	height: 100%;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

/* Novos estilos adicionados */
.timeline {
	position: relative;
	padding: 20px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: var(--primary);
	opacity: 0.2;
}

.timeline-item {
	display: flex;
	margin-bottom: 40px;
	position: relative;
	width: 100%;
}

.timeline-content {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	width: 45%;
	transition: all 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: auto;
}

.timeline-year {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.leader-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.leader-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-img {
	height: 200px;
	overflow: hidden;
}

.leader-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.leader-card:hover .leader-img img {
	transform: scale(1.05);
}

.leader-info {
	padding: 20px;
}

.leader-name {
	color: var(--primary);
	margin: 0 0 5px;
	font-size: 1.2rem;
}

.leader-position {
	color: var(--secondary);
	font-weight: 600;
	margin-bottom: 10px;
}

.awards-section {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	margin: 40px 0;
}

.awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.award-item {
	text-align: center;
	padding: 15px;
	border-radius: 10px;
	background: var(--light);
	transition: all 0.3s ease;
}

.award-item:hover {
	transform: translateY(-5px);
	background: var(--primary);
	color: white;
}

.award-icon {
	font-size: 2.5rem;
	color: var(--secondary);
	margin-bottom: 15px;
}

.award-item:hover .award-icon {
	color: white;
}

.cta-section {
	background: var(--primary);
	color: white;
	padding: 60px 0;
	text-align: center;
	border-radius: 10px;
	margin-top: 50px;
}

.cta-title {
	font-size: 2rem;
	margin-bottom: 20px;
}

/* Responsividade */
@media ( max-width : 992px) {
	.col-lg-6, .col-md-6, .col-lg-8, .col-lg-4 {
		width: 100%;
		margin-bottom: 20px;
	}
	.timeline::before {
		left: 30px;
	}
	.timeline-content {
		width: calc(100% - 80px);
		margin-left: 80px !important;
	}
	.timeline-year {
		left: 30px;
		transform: translate(0, -50%);
	}
}

@media ( max-width : 768px) {
	.section-title {
		font-size: 2rem;
	}
	.leadership-grid {
		grid-template-columns: 1fr;
	}
	.awards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}






/*FOR AWARDS*/
.awards-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.awards-section .sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.awards-section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.award-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.award-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 15px;
  background: #eef3ff;
  border-radius: 50%;
}

.award-icon i {
  font-size: 2rem;
  color: #007bff;
}

.award-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Hover zoom effect for image */
.award-item:hover .award-img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.award-item h4 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #333;
}

.award-item p {
  color: #666;
  font-size: 0.95rem;
}



