/* Fonte global */
body { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; padding-bottom: 120px; }

/* Hero Section */
.hero-section {
	background: linear-gradient(180deg, #0b1f4a 0%, #0a5c2d 100%);
}
.hero-section .btn-success { background-color: #17a34a; border-color: #17a34a; }
.hero-section .btn-success:hover { background-color: #128a3e; border-color: #128a3e; }

/* Collage de imagens */
.shape-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	min-height: 340px;
}
.shape-card {
	background-size: cover;
	background-position: center;
	border-radius: 30px;
	aspect-ratio: 1.2 / 1;
	transition: transform 0.6s ease-in-out;
}
.shape-card.s1 { border-top-left-radius: 70px; animation: moveS1 3s ease-in-out infinite; }
.shape-card.s2 { border-top-right-radius: 70px; animation: moveS2 3s ease-in-out infinite; }
.shape-card.s3 { border-bottom-left-radius: 70px; animation: moveS3 3s ease-in-out infinite; }
.shape-card.s4 { border-bottom-right-radius: 70px; animation: moveS4 3s ease-in-out infinite; }

@keyframes moveS1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(15px, 15px); }
}
@keyframes moveS2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-15px, 15px); }
}
@keyframes moveS3 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(15px, -15px); }
}
@keyframes moveS4 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-15px, -15px); }
}

.logo-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 140px; height: 140px;
	border-radius: 50%;
	display: grid; place-items: center; text-align: center; line-height: 1.05;
	box-shadow: 0 10px 30px rgba(0,0,0,.25);
	z-index: 10;
}
.logo-hero { max-width: 90%; height: auto; }

@media (max-width: 991.98px) {
	.shape-grid { display: none; } /* Esconde a colagem no mobile */
	.logo-badge { width: 110px; height: 110px; font-size: .9rem; }
}

/* CTA fixo inferior */
.cta-sticky {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: min(920px, calc(100% - 2rem));
	background: linear-gradient(180deg, #0a5c2d 0%, #074920 100%);
	border-radius: 20px;
	padding: 14px 18px;
	z-index: 1040; /* acima do conteúdo, abaixo do offcanvas (que usa 1045+) */
}

/* WhatsApp flutuante */
.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 90px; /* acima da CTA */
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25D366; color: #fff;
	font-size: 28px;
	box-shadow: 0 10px 20px rgba(0,0,0,.25);
	z-index: 1045;
}
.whatsapp-float:hover { filter: brightness(.95); color: #fff; }

/* Seção Seguros */
.seguros-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}

.seguros-title {
	font-size: 3rem;
	font-weight: 700;
	color: #0a5c2d;
	letter-spacing: 4px;
	position: relative;
	padding-bottom: 1.5rem;
}

.seguros-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 3px;
	background: #0a5c2d;
}

.seguros-subtitle {
	font-size: 1.75rem;
	font-weight: 600;
	color: #0a5c2d;
	line-height: 1.3;
}

/* Cards de Seguros */
.seguro-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.seguro-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(10, 92, 45, 0.15);
}

.seguro-content {
	position: relative;
	z-index: 2;
	padding: 2.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.seguro-label {
	display: inline-block;
	color: #0a5c2d;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	text-transform: capitalize;
}

.seguro-title {
	color: #1a1a1a;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.seguro-description {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.btn-leia-mais {
	background: none;
	border: none;
	color: #0a5c2d;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}

.btn-leia-mais:hover {
	color: #128a3e;
	text-decoration: underline;
}

.seguro-detalhes {
	background: #f8f9fa;
	border-left: 4px solid #0a5c2d;
	padding: 1.5rem;
	border-radius: 8px;
	animation: slideIn 0.3s ease;
}

.seguro-detalhes p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.seguro-detalhes p:last-child {
	margin-bottom: 0;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.seguro-image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.seguro-card:hover .seguro-image {
	transform: scale(1.05);
}

.btn-seguro {
	background: #0a5c2d;
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.btn-seguro:hover {
	background: #128a3e;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 92, 45, 0.3);
}

/* Responsividade */
@media (max-width: 991.98px) {
	.seguros-title {
		font-size: 2.2rem;
		margin-bottom: 1rem;
	}

	.seguros-subtitle {
		font-size: 1.35rem;
		margin-top: 1.5rem;
	}

	.seguros-title::after {
		width: 70px;
	}

	.seguro-content {
		padding: 2rem;
	}

	.seguro-title {
		font-size: 1.6rem;
	}

	.seguro-description {
		font-size: 0.95rem;
	}
}

@media (max-width: 767.98px) {
	.seguros-section {
		padding: 3rem 1rem !important;
	}

	.row.align-items-center:first-of-type {
		flex-direction: column;
		text-align: center !important;
	}

	.seguros-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.seguros-subtitle {
		font-size: 1.2rem;
	}

	.seguros-title::after {
		left: 50%;
		transform: translateX(-50%);
		width: 80px;
	}

	.seguro-content {
		padding: 1.5rem;
	}

	.seguro-card {
		border-radius: 15px;
	}

	.seguro-title {
		font-size: 1.4rem;
	}

	.seguro-description {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.btn-seguro {
		width: 100%;
		text-align: center;
	}

	.seguro-label {
		font-size: 0.85rem;
	}

	/* Em mobile, as imagens ficam acima */
	.seguro-content .row {
		flex-direction: column-reverse;
	}

	.seguro-content .row > div {
		width: 100%;
	}
}

/* Seção Quem Somos */
.quem-somos-section { background: #fff; }

/* Seção Nosso Diferencial */
.diferencial-section .decorative-line {
	width: 400px;
	max-width: 90%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #0a5c2d, transparent);
}

/* Seção Nossos Valores */
.valores-section { background: #fff; }
.nav-valores .nav-link {
	color: #6c757d;
	font-weight: 500;
	border: none;
	border-bottom: 3px solid transparent;
	background: transparent;
	padding: 12px 32px;
	margin: 0 8px;
	transition: all 0.3s ease;
}
.nav-valores .nav-link:hover {
	color: #0a5c2d;
	border-bottom-color: #0a5c2d;
}
.nav-valores .nav-link.active {
	color: #0a5c2d;
	background-color: #f8f9fa;
	border-bottom-color: #0a5c2d;
	font-weight: 600;
}

/* Seção Parceiros */
.parceiros-section { background: #f8f9fa; }
.parceiros-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}
.parceiro-item {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 120px;
}
.parceiro-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.parceiro-logo {
	max-width: 100%;
	max-height: 80px;
	height: auto;
	width: auto;
	object-fit: contain;
}

@media (max-width: 767.98px) {
	.parceiros-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	.parceiro-item { min-height: 100px; padding: 1rem; }
	.parceiro-logo { max-height: 60px; }
}

/* Seção Sinistros */
.sinistros-section {
	background: linear-gradient(135deg, #0a7c3e 0%, #0a5c2d 100%);
	padding-bottom: 8rem;
}
.sinistro-image-wrapper {
	position: relative;
	height: 500px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.sinistro-image {
	max-width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.sinistro-benefits {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 3rem 2rem;
	margin: 0 auto;
	max-width: 1000px;
	box-shadow: 0 10px 40px rgba(0,0,0,.15);
	z-index: 10;
	margin-top: -4rem;
}
.benefit-icon {
	font-size: 3rem;
	color: #0a5c2d;
}
.wave-decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: #fff;
	clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0 100%);
}

@media (max-width: 991.98px) {
	.sinistro-image-wrapper { height: 350px; }
	.sinistro-image { max-height: 350px; }
	.sinistros-section { padding-bottom: 6rem; }
}

/* Seção Atendimento Exclusivo */
.atendimento-section { background: #fff; }
.atendimento-image-wrapper {
	position: relative;
	height: 450px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.atendimento-image {
	max-width: 100%;
	height: auto;
	max-height: 450px;
	object-fit: contain;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
}

@media (max-width: 991.98px) {
	.atendimento-image-wrapper { height: 300px; }
	.atendimento-image { max-height: 300px; }
}

/* Seção AllCross */
.allcross-section {
	background: linear-gradient(135deg, #1e3a5f 0%, #0d7fa8 100%);
	min-height: 600px;
}
.allcross-image-bg {
	background-image: url('assets/img/Prancheta-1_Easy-Resize.com-1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 500px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.allcross-logo {
	max-width: 280px;
	height: auto;
	transition: transform 0.3s ease;
}
.allcross-logo-link:hover .allcross-logo {
	transform: scale(1.05);
}

@media (max-width: 991.98px) {
	.allcross-image-bg { height: 350px; }
	.allcross-logo { max-width: 220px; }
}

/* Seção CTA Form */
.cta-form-section { background: #f8f9fa; }
.contact-info {
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
	height: 100%;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.contact-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #e8f5e9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #0a5c2d;
	flex-shrink: 0;
}
.contact-label {
	margin-bottom: 0.25rem;
}
.contact-value {
	color: #2c3e50;
	line-height: 1.2;
}
.simulation-form {
	background: #fff;
	border-radius: 15px;
	padding: 2.5rem;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.simulation-form .form-control,
.simulation-form .form-select {
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	background-color: #f8f9fa;
}
.simulation-form .form-control:focus,
.simulation-form .form-select:focus {
	border-color: #0a5c2d;
	box-shadow: 0 0 0 0.2rem rgba(10, 92, 45, 0.15);
	background-color: #fff;
}
.simulation-form .form-label {
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.simulation-form .btn-success {
	background: #0a5c2d;
	border: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.simulation-form .btn-success:hover {
	background: #128a3e;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 92, 45, 0.3);
}
.simulation-form .form-check-input:checked {
	background-color: #0a5c2d;
	border-color: #0a5c2d;
}

@media (max-width: 991.98px) {
	.simulation-form { padding: 1.5rem; }
	.contact-info { margin-bottom: 2rem; }
}

/* Modal Sinistros */
.modal-sinistro {
	background: linear-gradient(135deg, #0a7c3e 0%, #0a5c2d 100%);
	border: none;
	border-radius: 15px;
}
.modal-sinistro .modal-body {
	max-height: 70vh;
}
.modal-sinistro ol {
	padding-left: 1.5rem;
}
.modal-sinistro ol li {
	margin-bottom: 0.75rem;
}

@media (max-width: 991.98px) {
	.atendimento-image-wrapper { height: 300px; }
	.atendimento-image { max-height: 300px; }
}

/* Menu lateral (Offcanvas) */
.prime-offcanvas { background: #0a5c2d; }
.prime-offcanvas .nav-link { opacity: .95; padding-left: 3rem; }
.prime-offcanvas .nav-link:hover, .prime-offcanvas .nav-link.active { opacity: 1; text-decoration: underline; }
.brand-badge { padding: 10px 14px; border-radius: 8px; font-size: .95rem; }
.logo-header { max-width: 160px; background: #fff; padding: 8px 12px; border-radius: 12px; }

/* Botão para abrir o menu lateral */
.menu-toggle {
	position: fixed;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 0;
	background: #ffffff;
	color: #0a5c2d;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	z-index: 1050; /* acima da CTA e do conteúdo */
}
.menu-toggle i { font-size: 22px; }
.menu-toggle:hover { filter: brightness(.97); }

/* Faixa verde vertical */
#header-container::after {
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 10px;
	background: #0a5c2d;
	z-index: 1020; /* bem abaixo do botão */
}

/* Footer */
.footer-section {
	background: linear-gradient(135deg, #0a7c3e 0%, #0a5c2d 100%);
	margin-top: 4rem;
}
.footer-logo-img {
	max-width: 200px;
	height: auto;
	background: #fff;
	padding: 12px 18px;
	border-radius: 12px;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
}
.footer-link {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	transition: opacity 0.3s ease;
	opacity: 0.9;
}
.footer-link:hover {
	color: #fff;
	opacity: 1;
	text-decoration: underline;
}
.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social {
	display: flex;
	gap: 1rem;
	justify-content: center;
	justify-content: end;
}
.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: all 0.3s ease;
}
.social-icon:hover {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.footer-logo-img { max-width: 160px; }
	.footer-links { flex-direction: column; gap: 0.75rem; }
	.footer-social { justify-content: center; }
}

/* ============================= */
/* Página Sobre (estrutura nova) */
/* ============================= */

/* Hero */
.sobre-hero { background: #fff; }
.hero-visual {
	width: min(420px, 92%);
	aspect-ratio: 1 / 1;
	position: relative;
}
.shape-ring {
	position: absolute;
	inset: 0;
	border: 16px solid #0a5c2d;
	border-radius: 50%;
}
.hero-photo {
	position: absolute;
	inset: 10%;
	border-radius: 22px;
	background-image: url(../assets/img/primebroker-e-pra-voce-seguros-prime-broker-seguros.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* Informações rápidas */
.sobre-infos .info-board { background: #fff; }
.info-item { font-weight: 500; color: #333; }

/* Quem Somos */
.quem-somos-section-pg-about { background: #0a5c2d; color: #fff; }
.quem-somos-card { max-width: 720px; }
.quem-somos-visual { max-width: 520px; }
.sobre-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	background-image: url(../assets/img/primebroker_equipesta-aqui.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 14px;
	box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.decor-circle {
	position: absolute;
	border-radius: 50%;
	border: 110px solid rgba(255,255,255,.08);
}
.decor-circle.dc-1 { width: 520px; height: 520px; right: -120px; top: -80px; }
.decor-circle.dc-2 { width: 360px; height: 360px; left: -140px; bottom: -120px; }

/* Vive Mais */
.vive-mais-section { background: #f8f9fa; }
.vive-mais-title { font-size: clamp(1.6rem, 4.2vw, 3rem); font-weight: 700; }
.vive-mais-highlight { letter-spacing: 2px; }
.vive-mais-bg {
	height: 320px;
	border-radius: 12px;
	background-image: url(../assets/img/fundopagina-sobre.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

@media (max-width: 991.98px) {
	.hero-visual { width: min(360px, 92%); }
	.decor-circle.dc-1 { right: -180px; top: -120px; }
}

@media (max-width: 767.98px) {
	.vive-mais-bg { height: 240px; }
	.sobre-infos .info-board { padding: 1.25rem; }
}

/* ========================= */
/* Página FAQ                */
/* ========================= */
.faq-hero {
	position: relative;
	min-height: 360px;
	background: transparent;
}
.faq-hero-bg {
	position: absolute;
	inset: 0;
	background-color: #e9ecef;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../assets/img/copywriter-at-work-journalist-writing-article-2023-02-15-04-50-36-utc-scaled-1.jpg);
}
.faq-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 92, 45, 0.35) 0%, rgba(10, 92, 45, 0.85) 100%);
}
.faq-hero .container { position: relative; z-index: 2; }

.faq-accordion-section .section-title { letter-spacing: .5px; }
.faq-accordion-section .accordion-button:focus { box-shadow: 0 0 0 .15rem rgba(10,92,45,.25); }
.faq-accordion-section .accordion-button:not(.collapsed) {
	background-color: #e8f5e9;
	color: #0a5c2d;
}
