@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

html {
  scroll-behavior:smooth;
}

body {
	font-family: "Lato", sans-serif;
	margin: 0;
	padding: 0;
}

header {
	width: calc(100% - 20px);
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 10px;
	left: 10px;
	right: 10px;
	z-index: 1000;
	font-size: 14px;
	padding-top: 25px;
	padding-bottom: 10px;
	border-radius: 24px;
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	box-sizing: border-box;
    max-width: 100%;
}

.logo {
	flex-shrink: 0;
	margin-top: -10px;
}

.hamburger {
	display: none;
	cursor: pointer;
	font-size: 18px;
	color: #fff;
	background-color: #006CD1;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	padding: 0
}

.navbar {
	display: flex;
	justify-content: flex-end;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.navbar li {
	position: relative;
	margin: 0 15px;
	color: #4d4d4d;
	font-size: 15px;
}

.navbar a {
	text-decoration: none;
	color: #4d4d4d;
}

.navbar a:hover {
	color: #006CD1;
}

.arrow {
	font-size: 10px;
	margin-left: 5px;
}

.navbar li a {
	text-align: center;
	display: block;
}

.navbar li a i {
	display: block;
	margin-top: 5px;
	font-size: 12px;
}

.navbar li.contato a {
	border: solid 1px #D1006C;
	color: #D1006C;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.3s ease;
	margin-top: -8px;
}

.contato a {
	margin-top: 10px;
}

.navbar li.contato a:hover {
	background-color: #D1006C;
	color: #ffffff;
	transform: scale(1.05);
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	list-style-type: none;
	padding: 10px 0;
	margin: 0;
	width: 200px;
	z-index: 1000;
	border-radius: 10px;
}

.submenu a {
	text-align: left;
	padding: 10px 20px;
	display: block;
	color: #333;
	text-decoration: none;
}

.submenu a:hover {
	background-color: #f0f0f0;
}

.navbar li:hover .submenu {
	display: block;
}

.navbar .solutions-corporativas:hover,
.navbar .solutions-familias-pme:hover,
.navbar .seguros:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
}

.navbar button {
	background-color: #006CD1;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-weight: bold;
	border-radius: 20px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar button:hover {
	background-color: #005bb5;
	transform: scale(1.05);
}

.social-icons {
	display: flex;
	align-items: center;
	margin-top: -20px;
}

.social-icons a {
	margin-left: 15px;
}

.social-icons img {
	width: 26px;
	height: 26px;
	vertical-align: middle;
	transition: opacity 0.3s ease;
	margin: -4px;
}

.social-icons img:hover {
	opacity: 0.7;
}

.leftbar {
	position: fixed;
	top: 0;
	right: 0;
	width: 270px;
	height: 100%;
	background-color: #fff;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 2000;
}

.leftbar.show {
	transform: translateX(0);
}

.leftbar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px;
	border-bottom: 1px solid #ddd;
	background-color: #ffffff;
	gap: 10px;
}

.search-input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 14px;
	outline: none;
	min-width: 0;
}

.close-btn {
	font-size: 20px;
	cursor: pointer;
	color: #fff;
	background-color: #006CD1;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	flex-shrink: 0;
}

.close-btn:hover {
	background-color: #d1006c;
}

.leftbar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.leftbar li {
	border-bottom: 1px solid #bdc1bc;
}

.leftbar a {
	display: block;
	padding: 20px;
	text-decoration: none;
	color: #4d4d4d;
}

.leftbar li.contato-leftbar a {
	color: #D1006C;
	background-color: transparent;
	border: none;
	padding: 15px;
	display: block;
	text-align: left;
	transition: color 0.3s ease;
	margin-left: 8px;
}

.leftbar li.contato-leftbar a:hover {
	color: #b8005a;
}

.leftbar .submenu {
	display: none;
	position: relative;
	padding-left: 20px;
}

.leftbar .submenu a {
	padding: 10px;
}

.leftbar .submenu a:hover {
	background-color: #f0f0f0;
}

.leftbar li:hover>.submenu {
	display: block;
}

.leftbar.show {
	transform: translateX(0);
}

.leftbar li>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.leftbar li>a i {
	margin: 0;
	font-size: 16px;
}

@media (max-width: 768px) {
	.navbar {
		display: none;
	}

	.hamburger {
		display: flex;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 3000;
	}
}

.navbar li ul.submenu li a {
	text-align: left;
	padding-left: 15px;
}

.leftbar .social-icons {
	display: none;
	justify-content: left;
	margin-left: 10px;
	padding: 20px 0;
	gap: 2px;
}

.leftbar .social-icons a {
	margin: 0 -10px;
}

.leftbar .social-icons img {
	width: 33px;
	height: 33px;
}

@media (max-width: 768px) {
	.navbar {
		display: none;
	}

	.hamburger {
		display: flex;
		position: fixed;
		top: 40px;
		right: 20px;
		z-index: 3000;
	}

	.social-icons {
		display: none;
	}

	.leftbar .social-icons {
		display: flex;
	}
}

@media (min-width: 769px) {
	.social-icons {
		display: flex;
	}

	.leftbar .social-icons {
		display: none;
	}
}

.footer {
	background-color: #4d4d4d;
	color: #fff;
	padding: 40px 20px;
	font-family: Arial, sans-serif;
	margin-top: 50px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	gap: 20px;
}

.footer-logo {
	margin-bottom: 15px;
	margin-right: 60px;
	max-width: 200px;
}

.footer-logo img {
	margin-bottom: 10px;
}

.footer-logo p {
	font-size: 14px;
	color: #ccc;
	font-weight: 300;
}

.footer-logo a {
	color: inherit;
	text-decoration: none;
}

.footer-logo a:hover {
	text-decoration: underline;
}

.footer-column {
	min-width: 150px;
	max-width: 200px;
	flex: 1;
}

.footer-column h4 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
}

.footer-column ul {
	list-style-type: none;
	padding: 0;
}

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

.footer-column ul li a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
}

.footer-column ul li a:hover {
	color: #fff;
}

.footer-bottom {
	text-align: center;
	margin-top: 15px;
}

.footer-bottom p {
	color: #FFFFFF;
	font-size: 12px;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.footer-logo {
		flex: 1 1 100%;
		margin-left: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: left;
	}

	.footer-column {
		flex: 1 1 100%;
		margin-left: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		width: 100%;
		box-sizing: border-box;
		margin-left: -70px;
	}

	.footer-column ul {
		padding: 0;
		margin: 0;
		text-align: left;
	}

	.footer-column ul li {
		display: flex;
		justify-content: flex-start;
		text-align: left;
	}

	.footer-logo p {
		text-align: left;
	}

	.footer-logo img {
		margin: 0 auto;
	}
}

.footer-logo img {
	max-width: 200px;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.footer-logo img {
		max-width: 220px;
		margin: 0 auto;
		display: block;
	}
}

/* =====================
   BANNER
===================== */
.ebook-banner {
  min-height: 100vh;
  position: relative;

  background: url("http://www.copplasa.com.br/wp-content/uploads/2026/01/Banner_LP-NR1_Saude-Mental.png") center right / cover no-repeat;
}


.ebook-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* =====================
   TEXTO
===================== */
.ebook-text h1 {
  font-size: 150px;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-weight: 800;
  margin-bottom: -70px;
  margin-top: 20%;
  margin-left: 50px;

}

.ebook-subtitle {
  font-size: 30px;
  line-height: 1.4;
  color: #ffffff;
  max-width: 520px;
  margin-left: 50px;
}

.ebook-subtitle strong {
  font-weight: 800;
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 1024px) {
.ebook-banner {
  min-height: 100vh;
  position: relative;

  background: url("http://www.copplasa.com.br/wp-content/uploads/2026/02/Banner-Responsivo_LP-NR1_Saude-Mental.jpg") center right / cover no-repeat;
}
  .ebook-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ebook-text h1 {
    font-size: 72px;
  font-size: 100px;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-weight: 800;
  margin-top: 150%;
  margin-left: 0px;
  }

  .ebook-subtitle {
    margin: 0 auto;
    margin-top:15%;
    font-size: 20px;
  }

  .ebook-image {
    display: flex;
    justify-content: center;
  }
}



.contato-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
	gap: 20px;
}

.ebook-info {
  background: #ffffff;
  padding: 80px 20px;
}

.ebook-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* =====================
   TEXTO
===================== */
.ebook-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}

.ebook-icons img {
  width: 80px;
}

.ebook-text-2 p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}

.ebook-text-2 strong {
  font-weight: 800;
}

.highlight {
  font-weight: 600;
  color: #333;
}


/* =====================
   RESPONSIVO
===================== */
@media (max-width: 1024px) {
  .ebook-info-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================
   FORMS
===================== */

  #sib-container input:-ms-input-placeholder {
    text-align: left;
    color: #c0ccda;
  }

  #sib-container input::placeholder {
    text-align: left;
    color: #c0ccda;
  }

  #sib-container textarea::placeholder {
    text-align: left;
    color: #c0ccda;
  }

  #sib-container a {
    text-decoration: underline;
    color: #2BB2FC;
  }

/* =====================
   SECTION
===================== */
.ebook-learn {
  background: url("http://www.copplasa.com.br/wp-content/uploads/2026/01/Aprender-Imagens_LP-NR1_Saude-Mental.png") no-repeat;
  padding: 100px;
  background-size: auto;
}

.ebook-learn-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 60px;
  align-items: center;
}


/* =====================
   TEXTO
===================== */
.ebook-learn-content h2 {
  font-size: 36px;
  font-weight: 400;
  color: #4d4d4d;
  margin-bottom: 40px;
  font-family: "EB Garamond", serif;
}

.ebook-learn-content h2 span {
  color: #e5006d;
  font-weight: 800;
  font-family: "EB Garamond", serif;
}

.ebook-learn-content h2 em {
  color: #e5006d;
  font-style: italic;
  font-weight: 800;
  font-family: "EB Garamond", serif;
}

/* =====================
   LISTA COM BULLETS
===================== */
.learn-list {
  list-style: none;
  position: relative;
  padding-left: 10px;
  margin-bottom: 40px;
}


.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
  position: relative;
}

.learn-list li img {
  width: 26px;
  margin-top: 2px;
  z-index: 1;
}

.learn-list li.highlight {
  font-weight: 600;
  color: #4d4d4d;
}

/* =====================
   BOX FINAL
===================== */
.learn-box {
  display: inline-block;
  border: 2px solid #e5006d;
  border-radius: 12px;
  padding: 20px 30px;
  text-align:center;
  font-size: 22px;
  color: #555;
}

.learn-box strong {
  color: #e5006d;
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 1024px) {

.ebook-learn {
  background: url("http://www.copplasa.com.br/wp-content/uploads/2026/01/Aprender-Fundo_LP-NR1_Saude-Mental.png") no-repeat;
  padding: 20px;
  background-size: auto;
}

  .ebook-learn-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .learn-list {
    padding-left: 0;
  }

  .learn-list::before {
    display: none;
  }

  .ebook-learn-image {
    margin: 0 auto;
  }
}

.learn-list li {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
  position: relative;
  min-width: 28px;
}

@media (max-width: 480px) {
  .ebook-learn-content h2 {
    font-size: 28px;

  }

  .learn-box {
    font-size: 16px;
  }
}

.ebook-essencial {
  background: url("http://www.copplasa.com.br/wp-content/uploads/2026/01/Essencial-Imagem_LP-NR1_Saude-Mental.png") center / cover no-repeat;
  background-size: 100%;
  padding: 80px 50px;
}

/* =====================
   PARTE SUPERIOR
===================== */
.ebook-essential-container {
  max-width: 1200px;
  margin: 0 auto 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.essential-title {
  max-width: 420px;
}

.essential-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  padding-right: 50%;

}

.essential-text strong {
  font-weight: 700;
}

/* =====================
   SECTION FINAL
===================== */

.ebook-section {

  padding: 0px 20px;
}

.ebook-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* MOCKUP */
.ebook-mockup {
  position: relative;
  width: 100%;
}

.ebook-mockup img {
  width: 100%;
  display: block;
}

/* TEXTO SOBRE A IMAGEM */
.ebook-text2 {
  position: absolute;
  bottom: 40px;           /* ajustável */
  left: 60%;             /* ajustável */
  max-width: 420px;
  color: #4d4d4d;
}

.ebook-text2 p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ebook-text2 strong {
 font-weight: 800;
}

/* BOTÃO */
.btn-download {
  display: inline-block;
  margin-top: 10px;
  margin-left: 25%;
  background: #d1006c;
  color: #fff;
  padding: 20px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 23px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .ebook-text2 {
    position: static;
  }

.ebook-wrapper {
  background-color: #E6F0FA;
  padding: 20px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.btn-download {
  display: inline-block;
  margin-top: 10px;
  margin-left: 13%;
  background: #d1006c;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

  .ebook-mockup img {
  display: none;
}
.essential-text img{
    width: 300px;
}
}

