:root {
	--primary-color: #E91E63; /* Rosa principal */
	--primary-color-dark: #C2185B; /* Rosa mais escuro para hover */
	--color-text-dark: #3d3d3d; /*#121212;*/ /* Preto para textos */
	--color-text-light: #f8f9fa; /* Branco/Cinza claro para textos */
	--color-background-dark: #121212; /* Fundo escuro */
	--color-background-light: #ffffff; /* Fundo branco */
	--color-background-grey: #f5f5f5; /* Fundo cinza claro */
	--font-default: 'Poppins', sans-serif;
	--base-font-size: 16px;
}   
.navbar-brand .logo-img {
	height: 60px;
	filter: drop-shadow(0 0 10px white);
	transition: height 0.4s ease;
}

.header-scrolled .navbar-brand .logo-img {
	height: 50px;
}
html, body{
	overflow-x: hidden;  /*Corrige o problema de se criar uma coluna branca a direita da tela em dispositivos móveis */
}
body {
	font-family: var(--font-default);
	color: var(--color-text-dark);
	background-color: var(--color-background-light);
}
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: var(--primary-color-dark);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-default);
	font-weight: 700;
}
.section-padding {
	padding: 100px 0;
}
.section-title {
	margin-bottom: 50px;
}
.section-title h2 {
	font-size: 2.8rem;
	font-weight: 900;
	position: relative;
	padding-bottom: 15px;
	display: inline-block;
	text-transform: uppercase;
}
.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	background: var(--primary-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.section-title p {
	color: #6c757d;
	max-width: 600px;
	margin: 10px auto 0 auto;
}
.section-subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}
/* HEADER*/
.header-transition {
	transition: background-color 0.4s ease, padding 0.4s ease;
}
.header-scrolled .navbar-brand .logo-img {
	height: 60px;
}
#header .navbar {
	background-color: rgba(10, 10, 10, 0.9);
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-scrolled {
	background-color: rgba(10, 10, 10, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding-top: 5px;
	padding-bottom: 5px;
}
.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
	/*color: #fff;*/
	color: var(--primary-color);
}
.navbar-brand:hover {
	color: var(--primary-color);
}
.navbar-nav .nav-link {
	font-weight: 600;
	margin: 0 1rem;
	color: #fff;
	position: relative;
	text-transform: uppercase;
	font-size: 0.9rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--primary-color);
}
.btn {
	padding: 1rem 2.5rem;
	border-radius: 5px;
	font-weight: 700;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
.btn-brand {
	background-color: var(--primary-color);
	color: #fff;
	border: 2px solid var(--primary-color);
	box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}
.btn-brand:hover {
	background-color: var(--primary-color-dark);
	border-color: var(--primary-color-dark);
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.hero-section {
	min-height: 100vh;
	background-color: var(--color-background-dark);
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
}
.hero-section h1 {
	color: #fff;
	font-weight: 900;
	font-size: 3rem;
	margin-bottom: 1.5rem;
}
.hero-section .lead {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
	font-size: 1.2rem;
	font-weight: 400;
}
.hero-image-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.hero-image-container img {
	max-width: 100%;
	height: auto;
}

.about-section h2 {
	font-weight: 900;
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.about-section p {
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
}
.bg-grey {
	background-color: var(--color-background-grey);
}
.course-card {
	background-color: var(--color-background-light);
	border-radius: 10px;
	border: none;
	border-top: 5px solid var(--primary-color);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
}
.course-card .card-body {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.course-card:hover {
	transform: translateY(-10px);
}
.course-card .icon-container {
	font-size: 3.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.course-card .card-title {
	margin-bottom: 20px;
	font-weight: 700;
}
.course-card ul {
	padding-left: 0;
	text-align: left;
	flex-grow: 1;
}
.course-card ul li {
	padding: 10px 0;
	color: #555;
	font-weight: 500;
}
.course-card ul li .fa-check-circle {
	color: var(--primary-color);
	margin-right: 10px;
}
.course-card .btn {
	width: 100%;
	padding: 0.8rem 1.5rem;
}

.learn-section {
	background-color: var(--color-background-light);
}
.flip-card {
	background-color: transparent;
	width: 100%;
	height: 250px;
	perspective: 1000px;
	margin-bottom: 30px;
}
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-radius: 10px;
}
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.flip-card-front {
	background-color: #fff;
	border: 1px solid #eee;
}
.flip-card-front i {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.flip-card-front h5 {
	font-weight: 700;
	font-size: 1.2rem;
}
.flip-card-back {
	background-color: var(--primary-color);
	color: white;
	transform: rotateY(180deg);
}
.flip-card-back h5 {
	font-weight: 700;
	margin-bottom: 10px;
}
.flip-card-back p {
	font-size: 0.95rem;
	font-weight: 400;
}

.testimonial-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	text-align: center;
	margin-bottom: 30px;
}
.testimonial-card img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	border: 4px solid var(--primary-color);
}
.testimonial-card .rating .fa-star {
	color: #ffc107;
}
.testimonial-card p {
	font-style: italic;
	color: #555;
	margin: 20px 0;
}
.testimonial-card .name {
	font-weight: 700;
	font-size: 1.1rem;
}

.faq-section .accordion-button {
	font-weight: 600;
	font-family: var(--font-default);
}
.faq-section .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: var(--primary-color);
}
.faq-section .accordion-body {
	line-height: 1.7;
}

.contact-section {
	background-color: var(--color-background-dark);
	color: var(--color-text-light);
}
.contact-section .section-title h2,
.contact-section .section-title p {
	color: #fff;
}
.contact-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}
.contact-info-item i {
	font-size: 1.5rem;
	color: var(--primary-color);
	width: 50px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.contact-info-item a {
	color: #fff;
	text-decoration: none;
}
.contact-info-item a:hover {
	color: var(--primary-color);
}
.map-container {
	border-radius: 10px;
	overflow: hidden;
	height: 400px;
}

footer {
	background-color: var(--color-background-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 3rem 0;
	border-top: 1px solid #333;
}
footer a {
	color: var(--primary-color);
	font-weight: 600;
}
footer a:hover {
	color: #fff;
}

/* === Acessibilidade === */
#accessibility-container {
	position: fixed;
	bottom: 9.8%;
	right: 20px;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
#accessibility-toggle-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#accessibility-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s ease;
}
#accessibility-container.open #accessibility-options {
	transform: scaleY(1);
}
#accessibility-options .btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--color-text-dark);
	color: #fff;
	padding: 0;
	font-size: 1.2rem;
}

/* Botão Whatsapp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float i {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    .whatsapp-float i {
        margin-top: 13px;
    }
}

/* Estilos de Alto Contraste */
body.high-contrast {
	background-color: #000 !important;
	color: #fff !important;
}
.high-contrast h1, .high-contrast h2, .high-contrast h3, .high-contrast h4, .high-contrast h5, .high-contrast h6,
.high-contrast p, .high-contrast a, .high-contrast li, .high-contrast span{
	color: #fff !important;
}
.high-contrast .bg-grey, .high-contrast .course-card, .high-contrast .testimonial-card, .high-contrast .flip-card-front, .high-contrast .accordion-item {
	background-color: #111 !important;
	border-color: #fff !important;
}
.high-contrast a, .high-contrast .btn-brand, .high-contrast .navbar-brand:hover, .high-contrast .nav-link:hover,
.high-contrast .course-card .icon-container, .high-contrast .course-card ul li .fa-check-circle, .high-contrast .flip-card-front i {
	color: #ffeb3b !important; /* Amarelo para destaque */
	background-color: transparent !important;
	border-color: #ffeb3b !important;
}
.high-contrast .btn-brand {
	 background-color: #ffeb3b !important;
	 color: #000 !important;
}
.high-contrast img {
	filter: grayscale(100%) contrast(150%);
}
.high-contrast #accessibility-toggle-btn, .high-contrast #accessibility-options .btn {
    background-color: #ffeb3b !important;
    color: #000 !important;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
	.hero-section {
		padding-top: 120px;
		padding-bottom: 60px;
		min-height: auto;
		text-align: center;
	}
	.hero-image-container {
		margin-top: 40px;
	}
	.about-section {
		text-align: center;
	}
	.about-section img {
		margin-bottom: 30px;
	}
	.contact-section .map-container {
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.section-title h2 {
		font-size: 2.2rem;
	}
	.hero-section h1 {
		font-size: 2.5rem;
	}
	.hero-section .lead {
		font-size: 1.1rem;
	}
	.btn {
		padding: 0.8rem 2rem;
	}
	.about-section h2 {
		font-size: 2rem;
	}
}