/*
Theme Name: INFORMATISA
Theme URI: https://informatisa.com.br
Author: BRAINS Marketing
Author URI: https://www.brainsmarketing.com.br
Description: Tema institucional da INFORMATISA Tecnologia. Solucoes em Informatica, Telecom, Seguranca Eletronica, Infraestrutura de Redes, Locacao de Equipamentos, ERP e Suporte Tecnico. Site de uma pagina com foco em conversao e SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: informatisa
Tags: tecnologia, informatica, telecom, seguranca-eletronica, landing-page, full-width, custom-colors
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--navy-900: #081827;
	--navy-800: #0c2236;
	--navy-700: #14304a;
	--navy-600: #1d4060;
	--blue-500: #1f9fe8;
	--blue-400: #3aaef0;
	--blue-300: #7cc5ea;
	--green-500: #1faa4d;
	--green-600: #169443;
	--white: #ffffff;
	--gray-50: #f5f8fb;
	--gray-100: #eef3f8;
	--gray-200: #dde6ef;
	--gray-400: #9aabbd;
	--gray-600: #5d6e80;
	--ink: #11202f;

	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--container: 1200px;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 8px rgba(8, 24, 39, 0.06);
	--shadow-md: 0 10px 30px rgba(8, 24, 39, 0.10);
	--shadow-lg: 0 24px 60px rgba(8, 24, 39, 0.16);
	--ring: 0 0 0 4px rgba(31, 159, 232, 0.18);
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--blue-500);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--blue-400);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
}

p {
	margin: 0 0 1rem;
}

ul {
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

section {
	scroll-margin-top: 88px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
	white-space: nowrap;
}

.btn svg {
	width: 20px;
	height: 20px;
}

.btn-primary {
	background: var(--blue-500);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(31, 159, 232, 0.35);
}

.btn-primary:hover {
	background: var(--blue-400);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(31, 159, 232, 0.45);
}

.btn-whatsapp {
	background: var(--green-500);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(31, 170, 77, 0.32);
}

.btn-whatsapp:hover {
	background: var(--green-600);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-color: var(--white);
	transform: translateY(-2px);
}

.btn-ghost {
	background: var(--white);
	color: var(--navy-800);
	border-color: var(--gray-200);
}

.btn-ghost:hover {
	color: var(--blue-500);
	border-color: var(--blue-300);
	transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(8, 24, 39, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background var(--transition);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.brand img {
	height: 52px;
	width: auto;
}

.brand .brand-text {
	color: var(--white);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0.04em;
}

.brand .brand-text b {
	color: var(--blue-400);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.main-nav a.nav-link {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
	font-size: 15px;
	padding: 10px 12px;
	border-radius: 8px;
	white-space: nowrap;
	transition: color var(--transition), background var(--transition);
}

.main-nav a.nav-link:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
}

.main-nav .btn {
	padding: 11px 22px;
	font-size: 15px;
	margin-left: 8px;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle span {
	display: block;
	height: 2.5px;
	background: var(--white);
	border-radius: 2px;
	margin: 5px 0;
	transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO / BANNER CAROUSEL
   ============================================================ */
.hero {
	background: var(--navy-900);
}

.carousel {
	position: relative;
	overflow: hidden;
	background: var(--navy-900);
}

.carousel-track {
	display: flex;
	transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
	min-width: 100%;
}

.carousel-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: rgba(8, 24, 39, 0.5);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition);
	z-index: 3;
}

.carousel-btn:hover {
	background: var(--blue-500);
}

.carousel-btn svg {
	width: 22px;
	height: 22px;
}

.carousel-btn.prev {
	left: 16px;
}

.carousel-btn.next {
	right: 16px;
}

.carousel-dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 9px;
	z-index: 3;
}

.carousel-dots button {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
	transition: background var(--transition), transform var(--transition);
}

.carousel-dots button.active {
	background: var(--blue-400);
	transform: scale(1.25);
}

/* Hero headline band */
.hero-band {
	background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
	color: var(--white);
	text-align: center;
	padding: 56px 0 64px;
	position: relative;
	overflow: hidden;
}

.hero-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 0%, rgba(31, 159, 232, 0.22), transparent 55%);
	pointer-events: none;
}

.hero-band .container {
	position: relative;
	z-index: 2;
}

.hero-band h1 {
	color: var(--white);
	font-size: clamp(28px, 4vw, 44px);
	max-width: 900px;
	margin: 0 auto 18px;
}

.hero-band h1 .hl {
	color: var(--blue-400);
}

.hero-band p {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(17px, 2vw, 20px);
	max-width: 720px;
	margin: 0 auto 32px;
}

.hero-band .hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
	padding: 88px 0;
}

.section--gray {
	background: var(--gray-50);
}

.section--navy {
	background: var(--navy-800);
	color: var(--white);
}

.section-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.section-head .eyebrow {
	display: inline-block;
	color: var(--blue-500);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.section-head h2 {
	font-size: clamp(28px, 3.4vw, 40px);
}

.section--navy .section-head h2 {
	color: var(--white);
}

.section-head p {
	color: var(--gray-600);
	font-size: 18px;
	margin: 0;
}

.section--navy .section-head p {
	color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   O QUE FAZEMOS  (services grid)
   ============================================================ */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.feature-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 30px 26px;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--blue-300);
}

.feature-card .ic {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.feature-card .ic svg {
	width: 28px;
	height: 28px;
	color: var(--white);
}

.feature-card h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.feature-card p {
	color: var(--gray-600);
	font-size: 15px;
	margin: 0;
}

/* ============================================================
   QUEM ATENDEMOS  (audience cards)
   ============================================================ */
.audience-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.audience-card {
	position: relative;
	border-radius: var(--radius);
	padding: 36px 28px;
	background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
	color: var(--white);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.audience-card::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(31, 159, 232, 0.35), transparent 70%);
}

.audience-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.audience-card .ic {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(31, 159, 232, 0.18);
	border: 1px solid rgba(124, 197, 234, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.audience-card .ic svg {
	width: 28px;
	height: 28px;
	color: var(--blue-300);
}

.audience-card h3 {
	color: var(--white);
	font-size: 21px;
	position: relative;
	z-index: 2;
}

.audience-card p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	margin: 0;
	position: relative;
	z-index: 2;
}

/* ============================================================
   SERVICOS  (accordions)
   ============================================================ */
.accordion {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.acc-item {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: box-shadow var(--transition), border-color var(--transition);
}

.acc-item.open {
	box-shadow: var(--shadow-md);
	border-color: var(--blue-300);
}

.acc-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 26px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}

.acc-trigger .acc-ic {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	flex-shrink: 0;
	background: var(--gray-100);
	color: var(--blue-500);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition), color var(--transition);
}

.acc-item.open .acc-trigger .acc-ic {
	background: var(--blue-500);
	color: var(--white);
}

.acc-trigger .acc-ic svg {
	width: 24px;
	height: 24px;
}

.acc-trigger h3 {
	flex: 1;
	margin: 0;
	font-size: 19px;
	color: var(--ink);
}

.acc-trigger .chev {
	width: 24px;
	height: 24px;
	color: var(--gray-400);
	transition: transform var(--transition);
	flex-shrink: 0;
}

.acc-item.open .acc-trigger .chev {
	transform: rotate(180deg);
	color: var(--blue-500);
}

.acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.acc-body {
	padding: 0 26px 26px 90px;
}

.acc-body p.lead {
	color: var(--navy-700);
	font-weight: 600;
	margin-bottom: 14px;
}

.acc-body ul {
	list-style: none;
	display: grid;
	gap: 10px;
}

.acc-body li {
	position: relative;
	padding-left: 28px;
	color: var(--gray-600);
	font-size: 15.5px;
}

.acc-body li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(31, 159, 232, 0.15);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9fe8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 11px;
	background-position: center;
	background-repeat: no-repeat;
}

.acc-body .acc-cta {
	margin-top: 22px;
}

/* ============================================================
   EQUIPAMENTOS
   ============================================================ */
.equip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.equip-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}

.equip-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.equip-card .equip-visual {
	aspect-ratio: 4 / 3;
	background: linear-gradient(160deg, var(--gray-100), var(--gray-200));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-700);
}

.equip-card .equip-visual svg {
	width: 78px;
	height: 78px;
	opacity: 0.85;
}

.equip-card .equip-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.equip-card .tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue-500);
	background: rgba(31, 159, 232, 0.1);
	padding: 5px 12px;
	border-radius: 999px;
}

.equip-card h3 {
	font-size: 17px;
	margin: 0;
	line-height: 1.35;
}

.equip-card p {
	color: var(--gray-600);
	font-size: 14.5px;
	margin: 0;
	flex: 1;
}

.equip-card .equip-link {
	font-weight: 700;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.equip-card .equip-link svg {
	width: 17px;
	height: 17px;
	transition: transform var(--transition);
}

.equip-card:hover .equip-link svg {
	transform: translateX(4px);
}

.equip-note {
	text-align: center;
	margin-top: 44px;
	color: var(--gray-600);
}

/* Foto real no card de destaque da home */
.equip-card .equip-visual--photo {
	background: var(--white);
	padding: 0;
}

.equip-card .equip-visual--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.equip-allcta {
	text-align: center;
	margin-top: 48px;
}

/* ============================================================
   PAGINA DE PRODUTOS
   ============================================================ */
.products-cat-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 36px;
}

.products-cat-head .products-cat-ic {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-cat-head .products-cat-ic svg {
	width: 26px;
	height: 26px;
	color: var(--white);
}

.products-cat-head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.product-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--blue-300);
}

.product-media {
	aspect-ratio: 1 / 1;
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.product-card:hover .product-media img {
	transform: scale(1.04);
}

.product-media-icon {
	width: 96px;
	height: 96px;
	color: var(--blue-400);
	opacity: 0.7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-media-icon svg {
	width: 100%;
	height: 100%;
}

.product-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.product-body h3 {
	font-size: 17px;
	margin: 0;
	line-height: 1.35;
	color: var(--navy-800);
}

.product-body p {
	color: var(--gray-600);
	font-size: 14.5px;
	margin: 0;
	flex: 1;
}

.product-cta {
	width: 100%;
	padding: 12px 18px;
	font-size: 14.5px;
}

.product-cta svg {
	width: 18px;
	height: 18px;
}

/* ============================================================
   MAPA DO CONTATO
   ============================================================ */
.contact-map {
	margin-top: 36px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(255, 255, 255, 0.1);
	line-height: 0;
}

.contact-map iframe {
	display: block;
	width: 100%;
}

/* ============================================================
   SOBRE / NOSSA HISTORIA + MVV
   ============================================================ */
.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.about-copy .eyebrow {
	display: inline-block;
	color: var(--blue-500);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.about-copy h2 {
	font-size: clamp(28px, 3.2vw, 38px);
	margin-bottom: 20px;
}

.about-copy p {
	color: var(--gray-600);
	font-size: 17px;
}

.about-stats {
	display: flex;
	gap: 16px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.about-stats .stat {
	flex: 1;
	min-width: 140px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	padding: 22px;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.about-stats .stat .num {
	font-size: 34px;
	font-weight: 800;
	color: var(--blue-500);
	line-height: 1;
	letter-spacing: -0.02em;
}

.about-stats .stat .lbl {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: var(--gray-600);
	font-weight: 600;
}

.mvv {
	display: grid;
	gap: 18px;
}

.mvv-card {
	background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
	color: var(--white);
	border-radius: var(--radius);
	padding: 26px 28px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.mvv-card .mvv-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.mvv-card .mvv-head svg {
	width: 24px;
	height: 24px;
	color: var(--blue-400);
}

.mvv-card h3 {
	color: var(--white);
	font-size: 17px;
	margin: 0;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mvv-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	margin: 0;
}

.mvv-card ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.mvv-card ul li {
	font-size: 13.5px;
	font-weight: 600;
	background: rgba(31, 159, 232, 0.16);
	border: 1px solid rgba(124, 197, 234, 0.28);
	color: var(--blue-300);
	padding: 6px 13px;
	border-radius: 999px;
}

/* ============================================================
   PARCEIROS
   ============================================================ */
.partners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.partner-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	min-height: 150px;
	padding: 28px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--blue-300);
}

/* Variante escura para logos que precisam de fundo escuro (ex.: Weclix). */
.partner-card--dark {
	background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
	border-color: rgba(255, 255, 255, 0.08);
}

.partner-card--dark:hover {
	border-color: rgba(124, 197, 234, 0.45);
}

.partner-card img {
	max-height: 64px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	border-radius: 6px;
	opacity: 0.85;
	filter: saturate(0.92);
	transition: opacity var(--transition), filter var(--transition);
}

.partner-card:hover img {
	opacity: 1;
	filter: none;
}

/* ============================================================
   AVALIACOES GOOGLE
   ============================================================ */
.reviews-placeholder {
	max-width: 920px;
	margin: 0 auto;
}

.google-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 28px;
}

.google-head .stars {
	display: flex;
	gap: 3px;
}

.google-head .stars svg {
	width: 22px;
	height: 22px;
	color: #fbbc05;
}

.google-head .rating {
	font-weight: 800;
	font-size: 22px;
	color: var(--ink);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.review-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow-sm);
}

.review-card .stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}

.review-card .stars svg {
	width: 18px;
	height: 18px;
	color: #fbbc05;
}

.review-card p {
	color: var(--gray-600);
	font-size: 15px;
}

.review-card .reviewer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.review-card .reviewer .av {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.review-card .reviewer .meta strong {
	display: block;
	font-size: 15px;
	color: var(--ink);
}

.review-card .reviewer .meta span {
	font-size: 13px;
	color: var(--gray-400);
}

.reviews-note {
	margin-top: 30px;
	text-align: center;
}

.reviews-note a {
	font-weight: 700;
}

/* WordPress plugin slot for Google reviews */
#google-reviews-plugin:empty {
	display: none;
}

/* ============================================================
   CONTATO  (form + atendimento)
   ============================================================ */
.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: stretch;
}

.contact-form-wrap {
	background: var(--white);
	border-radius: var(--radius);
	padding: 40px;
	box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
	font-size: 24px;
	margin-bottom: 6px;
}

.contact-form-wrap > p {
	color: var(--gray-600);
	margin-bottom: 26px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.field {
	margin-bottom: 18px;
}

.field label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 7px;
	color: var(--navy-800);
}

.field input,
.field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 16px;
	color: var(--ink);
	background: var(--gray-50);
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--blue-500);
	background: var(--white);
	box-shadow: var(--ring);
}

.field textarea {
	min-height: 130px;
	resize: vertical;
}

.contact-form-wrap .btn {
	width: 100%;
}

.form-note {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--gray-400);
	text-align: center;
}

/* Atendimento card */
.atendimento {
	background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
	color: var(--white);
	border-radius: var(--radius);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.atendimento h3 {
	color: var(--white);
	font-size: 22px;
	margin-bottom: 18px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-of-type {
	border-bottom: 0;
}

.contact-item .ci-ic {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(31, 159, 232, 0.16);
	border: 1px solid rgba(124, 197, 234, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item .ci-ic svg {
	width: 22px;
	height: 22px;
	color: var(--blue-300);
}

.contact-item .ci-meta span {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.contact-item .ci-meta a,
.contact-item .ci-meta strong {
	color: var(--white);
	font-weight: 700;
	font-size: 17px;
}

.contact-item .ci-meta a:hover {
	color: var(--blue-300);
}

.social-row {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}

.social-row a {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: background var(--transition), transform var(--transition);
}

.social-row a:hover {
	background: var(--blue-500);
	transform: translateY(-3px);
	color: var(--white);
}

.social-row a svg {
	width: 22px;
	height: 22px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band {
	background: linear-gradient(120deg, var(--blue-500), var(--navy-700));
	color: var(--white);
	text-align: center;
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 100%, rgba(255, 255, 255, 0.18), transparent 50%);
}

.cta-band .container {
	position: relative;
	z-index: 2;
}

.cta-band h2 {
	color: var(--white);
	font-size: clamp(26px, 3.4vw, 38px);
	margin-bottom: 14px;
}

.cta-band p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 19px;
	max-width: 620px;
	margin: 0 auto 30px;
}

.cta-band .hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 0 28px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
	height: 64px;
	margin-bottom: 18px;
}

.footer-brand p {
	font-size: 15px;
	max-width: 340px;
	margin: 0;
}

.footer-col h4 {
	color: var(--white);
	font-size: 16px;
	margin-bottom: 18px;
	letter-spacing: 0.04em;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.footer-col ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}

.footer-col ul li a:hover {
	color: var(--blue-400);
}

.footer-contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	margin-bottom: 12px;
}

.footer-contact-line svg {
	width: 18px;
	height: 18px;
	color: var(--blue-400);
	flex-shrink: 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-bottom .copy {
	font-size: 14px;
	margin: 0;
}

.footer-legal-link {
	color: var(--blue-400);
	font-weight: 600;
	margin-left: 6px;
	white-space: nowrap;
}

.footer-legal-link:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-credit {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.footer-credit a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	padding: 8px 12px;
	border-radius: 10px;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.footer-credit a:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: var(--shadow-md);
}

.footer-credit img {
	height: 44px;
	width: auto;
	display: block;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 200;
	display: flex;
	align-items: center;
	gap: 12px;
}

.wa-float a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--green-500);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(31, 170, 77, 0.45);
	transition: transform var(--transition);
	animation: wa-pulse 2.4s infinite;
}

.wa-float a:hover {
	transform: scale(1.08);
	color: var(--white);
}

.wa-float a svg {
	width: 32px;
	height: 32px;
}

.wa-float .tooltip {
	background: var(--white);
	color: var(--navy-800);
	font-weight: 600;
	font-size: 14px;
	padding: 9px 15px;
	border-radius: 10px;
	box-shadow: var(--shadow-md);
	white-space: nowrap;
	opacity: 0;
	transform: translateX(10px);
	pointer-events: none;
	transition: var(--transition);
}

.wa-float:hover .tooltip {
	opacity: 1;
	transform: translateX(0);
}

@keyframes wa-pulse {
	0% {
		box-shadow: 0 12px 28px rgba(31, 170, 77, 0.45), 0 0 0 0 rgba(31, 170, 77, 0.5);
	}
	70% {
		box-shadow: 0 12px 28px rgba(31, 170, 77, 0.45), 0 0 0 16px rgba(31, 170, 77, 0);
	}
	100% {
		box-shadow: 0 12px 28px rgba(31, 170, 77, 0.45), 0 0 0 0 rgba(31, 170, 77, 0);
	}
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* ============================================================
   PAGINA LEGAL (Politica de Privacidade)
   ============================================================ */
.legal-hero {
	background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
	color: var(--white);
	padding: 64px 0 56px;
	position: relative;
	overflow: hidden;
}

.legal-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 85% 0%, rgba(31, 159, 232, 0.22), transparent 55%);
	pointer-events: none;
}

.legal-hero .container {
	position: relative;
	z-index: 2;
}

.legal-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 18px;
}

.legal-breadcrumb a {
	color: var(--blue-300);
}

.legal-breadcrumb a:hover {
	color: var(--white);
}

.legal-hero h1 {
	color: var(--white);
	font-size: clamp(30px, 4vw, 44px);
	margin-bottom: 12px;
}

.legal-hero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	max-width: 640px;
	margin: 0 0 18px;
}

.legal-updated {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-300);
	background: rgba(31, 159, 232, 0.14);
	border: 1px solid rgba(124, 197, 234, 0.3);
	padding: 7px 15px;
	border-radius: 999px;
}

.container--narrow {
	max-width: 820px;
}

.legal-content .legal-intro {
	font-size: 18px;
	color: var(--navy-700);
	border-left: 4px solid var(--blue-500);
	padding-left: 20px;
	margin-bottom: 40px;
}

.legal-content h2 {
	font-size: 23px;
	margin: 40px 0 14px;
	padding-top: 8px;
	color: var(--navy-800);
}

.legal-content h3 {
	font-size: 18px;
	margin: 24px 0 10px;
	color: var(--navy-700);
}

.legal-content p {
	color: var(--gray-600);
	font-size: 16.5px;
	line-height: 1.75;
}

.legal-content a:not(.btn) {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content .btn {
	text-decoration: none;
}

.legal-list {
	list-style: none;
	margin: 0 0 16px;
	display: grid;
	gap: 11px;
}

.legal-list li {
	position: relative;
	padding-left: 28px;
	color: var(--gray-600);
	font-size: 16.5px;
	line-height: 1.6;
}

.legal-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue-500);
}

.legal-content strong {
	color: var(--navy-800);
}

.legal-back {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}

/* ============================================================
   BANNER DE COOKIES (LGPD)
   ============================================================ */
.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 300;
	max-width: 920px;
	margin: 0 auto;
	background: var(--navy-800);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 22px 26px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show {
	opacity: 1;
	transform: none;
}

.cookie-inner {
	display: flex;
	align-items: center;
	gap: 26px;
}

.cookie-text strong {
	display: block;
	color: var(--white);
	font-size: 17px;
	margin-bottom: 4px;
}

.cookie-text p {
	margin: 0;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
}

.cookie-text a {
	color: var(--blue-300);
	font-weight: 600;
	text-decoration: underline;
}

.cookie-text a:hover {
	color: var(--white);
}

.cookie-actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-actions .btn {
	padding: 12px 22px;
	font-size: 15px;
	white-space: nowrap;
}

@media (max-width: 680px) {
	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 20px;
	}
	.cookie-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
	}
	.cookie-actions {
		flex-direction: column-reverse;
	}
	.cookie-actions .btn {
		width: 100%;
	}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.feature-grid,
	.audience-grid,
	.equip-grid,
	.partners-grid,
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1100px) {
	.main-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		background: var(--navy-900);
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 16px 20px 24px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		transform: translateY(-130%);
		transition: transform var(--transition);
		box-shadow: var(--shadow-lg);
	}
	.main-nav.open {
		transform: translateY(0);
	}
	.main-nav a.nav-link {
		padding: 14px 16px;
	}
	.main-nav .btn {
		margin: 8px 0 0;
		width: 100%;
	}
	.nav-toggle {
		display: block;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}
	.section {
		padding: 60px 0;
	}
	.feature-grid,
	.audience-grid,
	.equip-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}
	.products-cat-head {
		gap: 12px;
		margin-bottom: 28px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.contact-form-wrap,
	.atendimento,
	.partners-wrap {
		padding: 26px;
	}
	.carousel-btn {
		width: 38px;
		height: 38px;
	}
	.hero-band {
		padding: 40px 0 48px;
	}
	.acc-body {
		padding: 0 22px 24px 22px;
	}
	.acc-trigger {
		padding: 18px 20px;
		gap: 14px;
	}
}
