@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;
	}
}

/* SECTION 1 INICIO*/
.ebook-info {
  background: url(/assets/imagens/Fundo_Banner.png) center right / cover no-repeat;
  padding: 80px 20px;
}

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

/* BACKGROUND */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 100px 350px 100px;
  height: 100vh;

  background: url(/assets/imagens/Fundo_Banner.png) center / cover no-repeat;
}

/* LEFT SIDE */
.left {
  max-width: 50%;
  margin-right: 120px;
  margin-top: -220px;
}

.title-row {
  display: flex;
  font-family: "EB Garamond", serif;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.check-icon {
  width: 50px;
  margin-left: -60px;
  margin-top: 10px;
}

.checklist {
  font-size: 70px;
  font-weight: 300;
  color: #ffffff;
}

.left h1 {
  font-size: 70px;
  font-weight: bold;
  font-family: "EB Garamond", serif;
  margin-top: -10%;
  color: #ffffff;
}

.left h2 {
  font-size: 30px;
  margin-top: -50px;
  font-weight: 700;
  color: #ffffff;
}

.left p {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.9;
  color: #ffffff;
}
/* SECTION 1 FINAL*/

/* SECTION 2 INICIO*/
.benefits {
  background: #fbe5f1;
  padding: 5px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.benefits h2 {
  font-size: 55px;
  color: #4d4d4d;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
}

.benefits h2 span {
  color: #d1006c;
  font-weight: 900;
  font-style: italic;
}

/* INTRO */
.intro {
  font-size: 26px;
  color: #4d4d4d;
  margin-bottom: 30px;
}

/* LISTA */
.list {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.item img {
  width: 28px;
  margin-top: 5px;
}

.item p {
  font-size: 26px;
  color: #4d4d4d;
  line-height: 1.5;
  margin-top:0px;
}

.item strong {
  font-weight: 700;
}

/* SECTION 2 FINAL*/

/* SECTION 3 INICIO*/
.about-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  background: #ffffff;
  isolation: isolate;
}


/* IMAGEM FIXA À ESQUERDA */
.left-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.left-image img {
  width: 380px; /* ajuste conforme necessário */
  max-width: 40vw;
}

.sobre-nos{
	height: 40px;
	margin-top: 20px;
	margin-bottom: -10px;
}

/* CONTEÚDO */
.content {
  margin-left: 420px; /* espaço para a imagem */
  max-width: 700px;
  padding: 20px 40px;
}

/* TÍTULO */
.content h2 {
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 20px;
}

/* PARÁGRAFOS */
.content p {
  color: #4d4d4d;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1.5em; /* espaçamento solicitado */
}

/* IMAGEM CTA */
.cta-image {
  margin: 30px 0;
}

.cta-image img {
  max-width: 100%;
}

/* BOTÃO */
.btn-checklist {
  background: #d1006c;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-checklist:hover {
  opacity: 0.9;
}
/* SECTION 3 FINAL*/

/* =========================
TABLET (até 1024px)
========================= */
@media (max-width: 1024px) {

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 120px 40px 100px;
    height: auto;
    text-align: center;
  }

  .left {
    max-width: 100%;
    margin-right: 0;
  }

  .checklist {
    font-size: 70px;
  }

  .left h1 {
    font-size: 70px;
    margin-top: 0;
  }

  .left h2 {
    font-size: 28px;
  }

  .left p {
    font-size: 18px;
  }

  /* FORM */
  .sib-form {
    margin-top: 50px !important;
  }


  /* BENEFITS */
  .benefits h2 {
    font-size: 40px;
  }

  .intro {
    font-size: 22px;
  }

  .item p {
    font-size: 20px;
  }

  /* ABOUT */
  .content {
    margin-left: 300px;
  }

  .left-image img {
    width: 300px;
  }
}

/* =========================
MOBILE (até 768px)
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 120px 20px 60px;
    text-align: center;
  }

  .title-row {
    justify-content: center;
  }

  .check-icon {
    width: 40px;
    margin-left: 0;
  }

  .checklist {
    font-size: 48px;
  }

  .left h1 {
    font-size: 48px;
  }

  .left h2 {
    font-size: 22px;
    margin-top: 10px;
  }

  .left p {
    font-size: 16px;
  }

  /* FORM */
  .sib-form {
    margin-top: 30px !important;
  }


  #sib-container {
    width: 100% !important;
  }

  /* BENEFITS */
  .benefits {
    padding: 40px 20px;
  }

  .benefits h2 {
    font-size: 28px;
  }

  .intro {
    font-size: 18px;
  }

  .item {
    flex-direction: row;
    align-items: flex-start;
  }

  .item img {
    width: 20px;
    margin-top: 20px;
  }

  .item p {
    font-size: 16px;
  }

  /* ABOUT (AQUI ESTAVA O MAIOR PROBLEMA 👇) */
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .left-image {
    position: relative; /* deixa de ser absoluto */
    top: auto;
	left: -100px;
    transform: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .left-image img {
    width: 220px;
    max-width: 80%;
  }

  .content {
    margin-left: 0;
    padding: 0;
  }

.sobre-nos{
	height: 30px;
	margin-top: 20px;
	margin-bottom: -10px;
}

  .content p {
    font-size: 16px;
  }

  .content button {
    width: 100%;
  }

}