@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&family=Roboto+Mono:wght@500&family=Roboto:wght@500&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
    background: #303030;
}

button {
	display: inline-block;
  	border: none;
  	text-decoration: none;
  	cursor: pointer;
}

a {
    text-decoration: none;
}

:root {
	--word-color: #b2acaa;
	--title-word-color: #c6a796;
	--navbar-color: #262422;
	--idk-color2: #464342;
}

.line {
	background: #111;
	height: 1vh;
}

.line2 {
	background: #111;
	height: 5vh;
}

/* Navbar Style */
header {
	background: var(--navbar-color);
    width: 100%;
    height: 90px;
    color: var(--title-word-color);
    position: fixed;
    z-index: 9999; 
}

.navbar-container {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 15px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .logo {
	margin: 10px;
	width: 280px;
	align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 30px;
}

.navbar ul {
	display: flex;
	align-items: center;
}

.navbar ul li {
	margin: 0 15px;
	list-style: none;
}

.navbar ul li a {
	position: relative;
	padding: 8px 0;
	color: var(--title-word-color);
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.3s linear;
}

.navbar ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: auto;
	width: 0;
	height: 3px;
	background-color: var(--title-word-color);
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link {
	padding: 15px;
	margin: 0.6rem;
}

.login:hover {
	background: #003a92;
}

.navbar ul li a:hover,
.navbar ul li a.active {
	color: var(--title-word-color);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

.hamburger {
	display: none;
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.hamburger span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: var(--title-word-color);
	position: absolute;
	top: calc(50% - 1.5px);
	left: 0;
	transition: all 0.2s;
}

.hamburger span:first-child {
	transform: translateY(-300%);
	transform-origin: right top;
}

.hamburger span:last-child {
	transform: translateY(300%);
	transform-origin: right bottom;
}

.hamburger.active span:first-child {
	transform: rotate(45deg) scaleX(0.5) translateX(4px);
}

.hamburger.active span:last-child {
	transform: rotate(-45deg) scaleX(0.5) translateX(4px);
}

/* Navbar media query */
@media (max-width: 992px) {
	header {
		padding: 1px;
		background-color: var(--navbar-color);
	}

	.navbar-container {
		max-width: 940px;
	}

	.hamburger {
		display: block;
	}

	.navbar ul {
		position: fixed;
		top: 80px;
		right: 0;
		width: 320px;
		height: 100%;
		padding: 40px 0;
		background-color: #111;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		box-shadow: -8px 2px 10px rgba(0, 0, 0, 0.082);
		transform: translateX(100%);
		text-align: center;
		border-radius: 15px;
		transition: all 0.3s;
	}
	.navbar ul.active {
		transform: translateX(0);
	}
	.navbar ul li {
		margin: 0;
		width: 100%;
	}

	.navbar ul li a {
		display: block;
		padding: 15px;
	}
	.navbar ul li a::after {
		display: none;
	}
	.navbar ul li a:hover {
		color: #080808;
		background-color: #f0f0f0;
	}
	.navbar ul li a.active {
		color: #fff;
		background-color: #4761ff;
		border-radius: 10px;
	}

}

@media (max-width: 768px) {
	header {
		padding: 1px;
		height: 90px;
	}
	.navbar-container {
		max-width: 650px;
	}
	.navbar .logo {
		height: 100%;
	}
}

@media (max-width: 992px) {
	.navbar .logo {
		width: 280px;
	}
}

@media (max-width: 375px) {
	.navbar .logo {
		width: 250px;
	}
}

/* Lenguage Btns Style */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Botão principal */
.dropbtn {
    background-color: #111;
    color: var(--title-word-color);
    padding: 8px 25px;
    font-size: 16px;
    border: 1px solid var(--title-word-color);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn img {
    width: 20px;
    margin-right: 8px;
}

/* Estilos do dropdown quando está visível */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    min-width: 150px;
    z-index: 1;
}

/* Cada item do dropdown */
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
	transition: all 0.2s ease;
}

/* Exibir o dropdown ao passar o mouse */
.dropdown:hover .dropdown-content {
    display: block;
}

.a-one:hover {
    background-color: #585858;
	border-radius: 15px 15px 0px 0px;
}

.a-two:hover {
	background-color: #585858;
	border-radius: 0px 0px 15px 15px;
}

/* Estilo da bandeira */
.flag-icon {
    width: 20px;
    height: auto;
}

@media (max-width: 992px) {
	.dropdown button {
		display: flex;
		text-align: center;
		justify-content: center;
	}

	.dropbtn, .dropdown-content {
		width: 320px;
	}
}

/* Showcase Style */
#showcase {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 95vh;
	background: url(../assets/asd.png) no-repeat center center/cover;
	background-color: rgba(0, 0, 0, 0.8);
	background-blend-mode: color;
}

.showcase-content h1 {
	margin-top: 30px;
	margin-bottom: 30px;
	color: var(--title-word-color);
}

.showcase-content p {
	margin-bottom: 30px;
	color: var(--word-color);
}

.showcase-content button {
	background: var(--title-word-color);
	color: #111;
}

@media (max-width: 768px) {
	.showcase-content h1 {
		margin-top: 2px;
		margin-bottom: 2px;
	}
}

/* About Style */
#about {
	justify-content: center;
	padding: 12rem;
	color: var(--word-color);
	background: url(../assets/bg-blackhorse.jpeg) no-repeat center center/cover;
	background-color: rgba(0, 0, 0, 0.8);
	background-blend-mode: color;
}

.about-grid-container {
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	gap: 20px;
	position: relative;
}

.about-grid {
	background-color: #111;
	padding: 20px; 
	border-radius: 15px; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
	min-height: 200px;
}

.about-grid2 {
	margin-top: 30px;
	background-color: #111;
	padding: 20px; 
	border-radius: 15px; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
	min-height: 200px;
}

.about-grid h1 {
	margin-bottom: 20px;
	color: var(--title-word-color);
	font-weight: bold;
	font-size: 30px;
}

.about-grid2 h1 {
	margin-bottom: 20px;
	color: var(--title-word-color);
	font-weight: bold;
	font-size: 30px;
}

.about-grid p {
	font-size: 22px;
}

.about-grid2 p {
	font-size: 22px;
}

.about-title {
	font-weight: bold;
	font-size: 70px;
	margin-top: 1rem;
	margin-bottom: 3rem;
	color: var(--title-word-color);
}

/* About media query */
  @media (max-width: 768px) {
	.about-grid-container {
	  grid-template-columns: 1fr; /* Uma coluna em telas menores */
	}
  }

  @media (max-width: 1200px) {
	#about {
		padding: 3rem;
	}
  }

  @media (max-width: 922px) {
	#about {
		padding: 2rem;
	}
  }

  @media (max-width: 768px) {
	#about {
		padding: 0.5rem;
	}
  }

  @media (max-width: 768px) {
	.about-title {
		font-size: 40px;
		text-align: center;
	}
  }


/* Qualification Style */
#qualification {
/* 	background: url(../assets/ferradura11.png) no-repeat;
	background-color: rgba(0, 0, 0, 0.7);
	background-blend-mode: color; */
	background: #111;
	min-height: 95vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
}

.qualification-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.qualification-grid-container {
	display: flex;
	justify-content: center;
	gap: 40px; /* Ajuste o espaçamento entre os elementos */
	padding: 20px;
}

.qualification-grid {
	flex: 1;
	max-width: 300px; /* Ajuste a largura máxima */
	text-align: left; /* Alinhamento do texto à esquerda */
}

h1.text-center {
	text-align: center;
	font-size: 2.7rem; /* Ajuste o tamanho da fonte do título principal */
	font-weight: bold;
	margin-bottom: 40px; /* Espaçamento abaixo do título principal */
	color: var(--title-word-color); /* Cor do título principal */
}

.qualification-grid h1 {
	font-size: 2.1rem; /* Ajuste o tamanho da fonte conforme necessário */
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--title-word-color);
}

.qualification-grid p {
	font-size: 1.3rem; /* Ajuste o tamanho da fonte conforme necessário */
	line-height: 1.6; /* Espaçamento entre as linhas do texto */
	margin-bottom: 0; /* Remove a margem inferior dos parágrafos */
	color: var(--word-color);
}

.qualification-image img {
	width: 500px;
	max-width: 100%;
	border-radius: 15px;
}

/* Qualification media query */
@media (max-width: 768px) {
	#qualification {
		padding: 0px;
	}

	.qualification-grid h1 {
		font-size: 1.5rem;
		color: #ffffff;
		margin-bottom: 10px;
	}

	.qualification-grid p {
		font-size: 1rem;
	}

	h1.text-center {
		font-size: 1.6rem;
		margin-top: 1.6rem;
		color: #ffffff;
	}
}

@media (max-width: 1070px) {
	.qualification-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.qualification-grid-container {
	  flex-direction: column;
	}

	.qualification-grid {
		flex: 1;
		max-width: 900px;
	}
  }

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #5e5d5d;
}

::-webkit-scrollbar-thumb {
    background: var(--title-word-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--word-color);
}

/* Mindmap */
#mindmap-section {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url(../assets/bg-blackhorse2.jpeg) no-repeat center center/cover;;
	background-color: rgba(0, 0, 0, 0.8);
	background-blend-mode: color;
	color: var(--word-color);
	padding: 10px;
}

#mindmap {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px; 
}

.etiqueta {
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--title-word-color);
    color: #000;
    padding: 5px 10px;
	width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: -20px; 
    left: 50px; 
    font-weight: bold;
}

#mindmap h1:first-child {
	margin: 50px;
	color: var(--title-word-color);
}

#mindmap h1:nth-child(2) {
	color: var(--title-word-color);
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: bold;
}

.mindmap-container {
	display: flex;
	position: relative;
	text-align: center;
	flex-direction: column;
	margin: 0 auto;
	background: #111;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 20px;
    max-width: 500px;
	border-radius: 15px;
	border: 1px solid var(--title-word-color);
}

.arrow-down {
	margin: 0 auto;
    position: relative;
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Tamanho da base da seta */
    border-right: 10px solid transparent; /* Tamanho da base da seta */
    border-top: 15px solid #ffffff; /* Altura da seta e cor */
}

/* Para centralizar horizontalmente a seta */
.arrow-down.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Para adicionar espaço entre o texto e a seta */
.arrow-down.with-text {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
	#mindmap h1:first-child {
		margin: 1px;
		font-size: 22px;
		text-align: center;
	}
}

/* Nutrition Course Style */
#nutrition-course {
	display: flex;
	align-items: center;
	color: var(--word-color);
	background: var(--navbar-color);
	min-height: 70vh;
}

#nutrition-course h1 {
	color: var(--title-word-color);
}

.buynow {
	background: var(--title-word-color);
	color: #111;
	transition: all 0.3s ease;
}

.buynow:hover {
	background: #79665b;
	color: #c5c5c5;
}

/* Scientific-Personalized-Approach Style */
#scientific-personalized-approach {
	display: flex;
	justify-content: center;
	align-items: center;
/* 	background: url(../assets/ferradura10.png) no-repeat;
	background-color: rgba(0, 0, 0, 0.8);
	background-blend-mode: color; */
	background: #111;
	min-height: 90vh;
}

.scientific-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 5rem;
}

.grid-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-content h1 {
	margin-top: 20px;
    grid-column: span 1;
    font-size: 2.1rem;
    margin-bottom: 20px;
	color: var(--title-word-color);
	font-weight: bold;
}

.item {
    background-color: #161616;
    padding: 20px;
    border-radius: 15px;
	max-width: 700px;
}

.item p {
    color: var(--word-color);
}

.item h2 {
	color: #fff;
    font-size: 2em;
	padding: 10px;
	width: 70px;
	text-align: center;
	border-radius: 15px;
	background: #262422;
    margin-bottom: 10px;
}

.item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content img {
	margin-top: 120px;
	width: 700px;
    max-width: 100%;
    border-radius: 15px;
}

@media (max-width: 1090px) {
	.scientific-container {
		padding: 2px;
	}
}

@media (max-width: 768px) {
	.image-content img {
		margin-top: 0px;
	}

    .scientific-container {
        grid-template-columns: 1fr;
    }
    .image-content {
/*         order: -1; */
        margin-bottom: 20px;
    }
}

.scientific-grid h2 {
	color: var(--title-word-color);
}

.scientific-grid p {
	color: var(--word-color);
}

.scientific-title h1 {
	color: var(--title-word-color);
}

/* Benefits Style */
#benefits {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	background: var(--navbar-color);
}

#benefits dd {
	color: var(--word-color);
}

#solution {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	background: var(--navbar-color);
}

#solution dd {
	color: var(--word-color);
}

#satisfied-customers {
	background: url(../assets/ferradura2.png) no-repeat;
	background-color: rgba(0, 0, 0, 0.8);
	background-blend-mode: color;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	flex-direction: column;
}

#satisfied-customers h1, h3 {
	color: var(--title-word-color);
}

#satisfied-customers p {
	color: var(--word-color);
}

/* Whatsapp Style */
#whats {
	position: fixed;
	bottom: 3rem;
	right: 2.5rem;
	z-index: 9999;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
  }

  #whats:hover {
	filter: brightness(150%);
  }

  .whats-img {
	width: 55px;
	transition: all 0.3s ease;
  }

  .whats-api {
	position: fixed;
	bottom: 3rem;
	right: 2.5rem;
	z-index: 9999;
	border-radius: 50px;
	cursor: pointer;
  }

/* Footer Style */
footer {
	background: #111;
}

.instagram-img {
	background: var(--title-word-color);
	padding: 10px;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.instagram-img:hover {
	opacity: 0.5;
}

/* Video */
.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    gap: 1rem;
    max-width: 100%;
}

.responsive-video {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

video, iframe {
	border-radius: 20px;
}

/* Palestra Style */
#palestra {
    background: #131313;
	flex-direction: column;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.palestra-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
}

.palestra-videos {
    display: flex;
    gap: 20px;
    width: 100%; /* Ocupa toda a largura do contêiner */
    max-width: 1200px; /* Limita a largura total da seção */
}

.video-container {
    flex: 1; /* Distribui o espaço igualmente entre os vídeos */
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
	.palestra-videos {
		flex-direction: column;
	}
}