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

/* =========================
   HERO GB
========================= */
.hero-gb {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../imagens/Banner-LP-Gestao-de-Beneficios.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 40px 80px;
  box-sizing: border-box;
  justify-content: space-around;
}

.hero-gb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-gb-text {
  flex:1;
  color: #fff;
  margin-top: -400px;
}

.hero-gb-text h1 {
  font-family: 'EB Garamond', serif;
  font-size: 66px;
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 28px;
  color: #fff;
  text-transform: lowercase;
}

.hero-gb-text strong {

  font-weight: 900;

}

.hero-gb-text p {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  line-height: 1.3;
  color: #fff;
  max-width: 520px;
  margin-bottom: 16px;
  font-weight: 400;
}


.hero-gb-form {
  flex: 1 0 0px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  min-height: 420px;
}

/* =========================
   BENEFÍCIOS SECTION
========================= */
.beneficios-section {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}

.beneficios-title {
  font-family: 'Lato', sans-serif;
  font-size: 38px;
  color: #4d4d4d;
  margin-bottom: 40px;
  font-weight: 400;
}

.beneficios-title strong {
  font-weight: 900;
}

.beneficios-title .verde {
  color: #00d1ce;
  font-weight: 900;
}

.beneficios-grid-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.beneficios-grid-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Todos os items: texto à ESQUERDA (order 1), ícone à DIREITA (order 2) com leve sobreposição */
.beneficio-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: auto;
  position: relative;
}

.beneficio-item span {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #00d1ce;
  text-align: left;
  order: 1;
  position: relative;
  z-index: 2;
}

.beneficio-item img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  order: 2;
  position: relative;
  z-index: 1;
  margin-left: -30px;
  opacity: 0.6;
  transition: box-shadow 0.3s ease, border-radius 0.3s ease;
}

/* Odonto: mesmo layout que os demais — texto à esquerda, círculo à direita */
.beneficio-item.circle {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.beneficio-item.circle > span {
  order: 1;
  position: relative;
  z-index: 2;
  color: #00d1ce;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.beneficio-circle {
  width: 110px;
  height: 110px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  flex-shrink: 0;
  margin-left: -50px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease-in;
}

.beneficio-circle img {
	opacity: 0.6;
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-left: 0;
  order: 0;
  z-index: 0;
}

/* =========================
   CÍRCULO TEAL NO ÍCONE — AUTOMÁTICO (carrossel)
========================= */

/* Items regulares (img filho direto): box-shadow forma o círculo */
.beneficio-item:hover > img {
  box-shadow: 0 0 0 22px #e6fafb;
  opacity: 1;
}

/* Classe adicionada via JS quando o item está ativo no carrossel */
.beneficio-item.circle.circle-active .beneficio-circle {
  background: #e6fafb;
}

/* Img dentro do círculo ativo não herda box-shadow */
.beneficio-item.circle.circle-active .beneficio-circle img {
  box-shadow: none;
  border-radius: 0;
  opacity: 0.6;
}

/* =========================
   EMPRESAS SECTION
========================= */
.empresas-section {
  padding: 60px 20px;
  background: #ffffff;
}

.empresas-inner {
  max-width: 1100px;
  margin: 0 auto 24px;
  text-align: center;
}

.empresas-inner h2 {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  color: #4d4d4d;
  font-weight: 400;
}

.empresas-inner h2 strong {
  color: #006cd1;
  font-weight: 900;
}

.empresas-box {
  border: 2px solid #006cd1;
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding: 24px 0;
  background: #e6f0fa;
}

.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slide-track-gb {
  display: flex;
  gap: 4px;
  width: max-content;
  will-change: transform;
}

/* Cada slide dimensionado para mostrar ~5 logos na janela de 1100px */
.slide-gb {
  width: 210px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-gb img {
  max-width: 160px;
  max-height: 1000px;
  filter: grayscale(100%);
  opacity: 0.55;
  object-fit: contain;
  transition: 0.3s ease;
}

.slide-gb img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================
   RH SECTION
========================= */
.rh-section {
  padding: 0px 40px 60px 40px;
  background: #fff;
}

.rh-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.rh-content {
  flex: 1;
}

.rh-content h2 {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #d1006c;
  line-height: 1.2;
  margin-bottom: 16px;
}

.rh-content .rh-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #4d4d4d;
  margin-bottom: 28px;
  line-height: 1.5;
}

.rh-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.rh-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: #4d4d4d;
  line-height: 1.5;
}

.rh-list li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-rh {
  display: inline-block;
  background: #d1006c;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-rh:hover {
  background: #b8005a;
  transform: translateY(-2px);
}

.rh-image {
  flex: 0 0 400px;
}

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

/* =========================
   SAÚDE SECTION
========================= */
.saude-section {
  padding: 50px 40px;
  background: #e6fafb;
  position: relative;
  overflow: hidden;
}

.saude-container {
  max-width: 900px;
  margin: -10px auto;
  position: relative;
  z-index: 2;
}

.saude-container h2 {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  color: #4d4d4d;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.2;
}

.saude-container h2 em {
  color: #00d1ce;
  font-style: italic;
  font-weight: 900;
}

.saude-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 40px;
}

.saude-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.saude-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: #4d4d4d;
  line-height: 1.5;
}

.saude-list li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.saude-bg-icon {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 360px;
  z-index: 1;
  pointer-events: none;
}

/* =========================
   TESTIMONIALS WRAPPER
========================= */
.testimonials-wrapper {
  background: #ffffff;
  text-align: center;
}

.cta-arrow-img {
  display: block;
  margin: -100px auto 12px;
  width: 56px;
  height: auto;
}

.btn-especialista {
  display: inline-block;
  background: #fbe5f1;
  color: #d1006c;
  font-family: 'Lato', sans-serif;
  font-size: 23px;
  font-weight: 900;
  padding: 16px 15px;
  border-radius: 10px;
  border-color: #d1006c;
  border-style: solid;
  border-width: 2px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 8px;
}

.btn-especialista:hover {
  background: #b8005a;
  color: #ffffff;
  transform: translateY(-6px);
}

.testimonial-carousel {
  width: 100%;
  height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  margin-bottom: 60px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 430px;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 30px 80px;
  box-sizing: border-box;
  box-shadow: 0 15px 40px rgba(0, 108, 209, 0.336);
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1), opacity 1.2s ease, filter 1.2s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card.center {
  transform: translate(-50%, -50%) scale(1) translateZ(0);
  opacity: 1;
  filter: blur(0px);
  z-index: 3;
}

.testimonial-card.left {
  transform: translate(-160%, -46%) scale(0.88) rotateY(12deg);
  opacity: 0.45;
  filter: blur(1.5px);
  z-index: 1;
}

.testimonial-card.right {
  transform: translate(60%, -46%) scale(0.88) rotateY(-12deg);
  opacity: 0.45;
  filter: blur(1.5px);
  z-index: 1;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

.testimonial-text {
  font-family: 'Lato', sans-serif;
  margin-top: -25px;
  font-size: 16px;
  line-height: 1.5;
  color: #4d4d4d;
  text-align: left;
}

.testimonial-name {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #006cd1;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,108,209,0.25);
}

/* =========================
   BREVO FORM — OVERRIDES
========================= */

/* Container: fundo com 70% de transparência + backdrop blur */
.hero-gb-form {
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0px;
  padding: 0px 0px;
  min-height: auto;
  box-sizing: border-box;
}

/* Textos paragráficos (título e subtítulo do form) → Lato + branco */
.hero-gb-form p,
.hero-gb-form .sib-form-block p,
.hero-gb-form .sib-text-form-block p {
  font-family: 'Lato', sans-serif !important;
  color: #ffffff !important;
}

/* Labels dos campos → Lato + branco */
.hero-gb-form .entry__label {
  font-family: 'Lato', sans-serif !important;
  color: #ffffff !important;
}

/* Inputs e selects: fundo branco opaco, texto escuro */
.hero-gb-form .input,
.hero-gb-form input.input,
.hero-gb-form select.input {
  background-color: #ffffff !important;
  color: #3c4858 !important;
  opacity: 1 !important;
}

/* Botão submit: Lato, tamanho harmonioso, linha única */
.hero-gb-form .sib-form-block__button {
  font-family: 'Lato', sans-serif !important;
  font-size: 16px !important;
  white-space: nowrap !important;
  width: 100% !important;
  padding: 14px 12px !important;
  box-sizing: border-box !important;
  cursor: pointer;
}

/* =========================
   ANIMAÇÕES DE ENTRADA
========================= */
.gb-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gb-animate.show {
  opacity: 1;
  transform: translateY(0);
}

.gb-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gb-animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

.gb-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gb-animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
	.hero-gb-text {margin:0px;}
  .hero-gb-text h1 { font-size: 50px; }
  .rh-image { flex: 0 0 320px; }
}

@media (max-width: 768px) {
  .hero-gb {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-gb-container {
    flex-direction: column;
    gap: 40px;
  }
  .hero-gb-text h1 { font-size: 38px; }
  .hero-gb-text p { font-size: 16px; }
  .hero-gb-form {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
  }
  .beneficios-title { font-size: 26px; margin-bottom: 40px; }
  .beneficios-grid-top, .beneficios-grid-bottom { gap: 24px; flex-direction: column;}
  .beneficio-item { width: auto; min-width: 300px; }
  .beneficio-item span {font-size: 12px; line-height: 1.1; white-space: nowrap; position: relative; z-index: 2; margin-right: -18px;}
  .empresas-inner h2 { font-size: 24px; }
  .rh-container { flex-direction: column; gap: 40px; }
  .rh-image { display: none; }
  .rh-content h2 { font-size: 28px; }
  .rh-content .rh-subtitle { font-size: 16px; }
  .rh-list li { font-size: 15px; }
  .saude-container h2 { font-size: 28px; }
  .saude-subtitle { font-size: 16px; }
  .saude-list li { font-size: 15px; }
  .saude-bg-icon { width: 220px; }
  .testimonial-carousel { height: 540px; }
  .testimonial-card { width: 300px; height: 390px; }
  .testimonial-card.left { transform: translate(-118%, -46%) scale(0.78); }
  .testimonial-card.right { transform: translate(18%, -46%) scale(0.78); }
}

@media (max-width: 480px) {
  .hero-gb-text h1 { font-size: 30px; }
  .beneficio-item { width: 90px; }
  .beneficio-item span { font-size: 12px; }
  .rh-content h2 { font-size: 24px; }
  .saude-container h2 { font-size: 24px; }
  .testimonial-card.left,
  .testimonial-card.right {
    opacity: 0.12;
    filter: blur(2px);
    transform: translate(-50%, -50%) scale(0.65);
  }
  .testimonial-card { width: 88%; max-width: 320px; }
}

