:root {
	--primary: #1a3a5c;
	--primary-light: #1f4d7a;
	--primary-dark: #0f2440;
	--accent: #119cff;
	--accent-light: #213c6a;
	--accent-dark: #d45d0e;
	--white: #ffffff;
	--off-white: #f8f9fa;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--black: #000000;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--radius-sm: 6px;
	--radius: 10px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--transition: 0.3s ease;
	--transition-slow: 0.5s ease;
	--max-width: 1280px;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Nunito', 'Roboto', sans-serif;
	line-height: 1.6;
	color: var(--gray-700);
	background-color: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	color: var(--gray-900);
}

a {
	text-decoration: none;
	color: inherit;
	transition: color var(--transition);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}


.section-padding {
	padding: 80px 0;
}

.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
	color: var(--gray-900);
	position: relative;
}

.section-subtitle {
	text-align: center;
	color: var(--gray-500);
	font-size: 1.05rem;
	max-width: 700px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.accent-bar {
	display: block;
	width: 60px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
	margin: 12px auto 0;
}


.logo-marquee {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	padding: 14px 0;
	background: rgba(248, 251, 255, 0.95);
	backdrop-filter: blur(8px);
	border-top: 1px solid rgba(17, 156, 255, 0.15);
	z-index: 9999;
	transition: transform 0.35s ease;
}

.logo-marquee.hide-marquee {
	transform: translateY(100%);
}

.logo-track {
	display: flex;
	align-items: center;
	gap: 70px;
	width: max-content;
	animation: scrollLogos 25s linear infinite;
}

.logo-track img {
	height: 42px;
	width: auto;
	opacity: 0.75;
	transition: 0.3s ease;
}

.logo-track img:hover {
	opacity: 1;
	transform: scale(1.08);
}

@keyframes scrollLogos {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.logo-marquee {
		padding: 10px 0;
	}

	.logo-track {
		gap: 40px;
		animation-duration: 18s;
	}

	.logo-track img {
		height: 24px;
	}
}


/* ========== SKIP LINK ========== */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--accent);
	color: var(--white);
	padding: 8px 16px;
	z-index: 10000;
	font-weight: 600;
	border-radius: 0 0 var(--radius-sm) 0;
	transition: top var(--transition);
}

.skip-link:focus {
	top: 0;
}

/* ========== HEADER ========== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	transition: all var(--transition);
	padding: 16px 0;
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow-lg);
	padding: 10px 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	gap: 20px;
}

.logo {
	flex-shrink: 0;
	z-index: 1001;
}

.logo a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--white);
	letter-spacing: -0.5px;
}

.logo-icon {
	width: 180px;
	height: auto;


	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--white);
	flex-shrink: 0;
}


.logo-container img {
	width: 125px;
	height: auto;
	margin: 20px auto;
	display: block;
}

.header.scrolled .logo a {
	color: var(--white);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	position: relative;
	white-space: nowrap;
	font-family: 'Poppins', sans-serif;
}


.scrolled .nav-menu a {
	color: #213c6a;
	/* ou qualquer cor que quiser */
}


.nav-menu a:hover,
.nav-menu a.active {
	color: var(--accent);
	background: rgba(255, 255, 255, 0.1);
}

.nav-menu a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

.header-cta {
	background: var(--accent) !important;
	color: var(--white) !important;
	font-weight: 600 !important;
	padding: 10px 22px !important;
	border-radius: 50px !important;
	transition: all var(--transition) !important;
}

.header-cta:hover {
	background: var(--accent-light) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(17, 156, 255, 0.35);
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
	padding: 8px;
	background: transparent;
	border: none;
}

.hamburger span {
	display: block;
	width: 26px;
	height: 2.5px;
	background: var(--white);
	border-radius: 2px;
	transition: all var(--transition);
}

/* quando scrollar */
.header.scrolled .hamburger span {
	background: #1a3a5c;
	/* nova cor */
}


.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 650px;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slide-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(15, 36, 64, 0.75) 0%,
			rgba(26, 58, 92, 0.7) 50%,
			rgba(15, 36, 64, 0.85) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	padding: 0 24px;
	animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-content h1 span {
	color: var(--accent);
}

.hero-content p {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
	line-height: 1.7;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: all var(--transition);
	border: none;
	text-align: center;
	white-space: nowrap;
}

.btn-primary {
	background: var(--accent);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

.hero-nav {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 12px;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all var(--transition);
	border: 2px solid transparent;
}

.hero-dot.active {
	background: var(--accent);
	border-color: var(--white);
	transform: scale(1.3);
}

.hero-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.hero-arrow {
	pointer-events: all;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: all var(--transition);
	backdrop-filter: blur(4px);
}

.hero-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: var(--white);
}

/* ========== ABOUT SECTION ========== */
.about-section {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 20px;
	line-height: 1.3;
}

.about-text p {
	color: var(--gray-500);
	margin-bottom: 24px;
	font-size: 1rem;
	line-height: 1.8;
}

.about-play-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-weight: 600;
	color: var(--primary);
	font-family: 'Poppins', sans-serif;
	transition: color var(--transition);
}

.about-play-btn:hover {
	color: var(--accent);
}

.play-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all var(--transition);
	flex-shrink: 0;
}

.about-play-btn:hover .play-icon {
	background: var(--accent-dark);
	transform: scale(1.08);
	box-shadow: 0 8px 25px rgba(244, 121, 32, 0.35);
}

.counter-grid {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	width: 100%;
	border-radius: 24px;
	padding: 40px;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: center;
}

.counter-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../assets/0010.png') center/cover no-repeat;
	transform: scale(1.08);
	z-index: -2;
}

.counter-grid::after {
	content: "";
	position: absolute;
	inset: 0;

	z-index: -1;
}

@media (max-width: 768px) {
	.counter-grid {
		min-height: 180px;
		padding: 20px;
		border-radius: 18px;
	}
}


.counter-card {
	background: var(--gray-100);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	transition: all var(--transition);
	border: 1px solid transparent;
}

.counter-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	background: var(--white);
}

.counter-number {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--accent);
	font-family: 'Poppins', sans-serif;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.counter-number .prefix {
	font-size: 1.2rem;
}

.counter-number .suffix {
	font-size: 1rem;
	color: var(--gray-500);
}

.counter-label {
	font-size: 0.9rem;
	color: var(--gray-500);
	margin-top: 6px;
	font-weight: 500;
}

/* ========== SERVICES SECTION ========== */
.services-section {
	background: var(--off-white);
}

.services-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 40px;
}

.service-tab {
	padding: 12px 24px;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: 'Poppins', sans-serif;
	border: 2px solid var(--gray-200);
	background: var(--white);
	color: var(--gray-600);
	transition: all var(--transition);
	white-space: nowrap;
}

.service-tab:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.service-tab.active {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
}

.service-panel {
	display: none;
	animation: fadeInUp 0.5s ease;
}

.service-panel.active {
	display: block;
}

.service-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all var(--transition);
}

.service-card:hover {
	box-shadow: var(--shadow-lg);
}

.service-card-img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	background: var(--gray-200);
}

.service-card-body {
	padding: 32px;
}

.service-card-body h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: var(--gray-900);
}

.service-card-body p {
	color: var(--gray-500);
	margin-bottom: 20px;
	line-height: 1.7;
}

.service-card-body .btn {
	font-size: 0.9rem;
	padding: 10px 22px;
}

/* ========== INFRA SECTION ========== */
.infra-section {
	background: var(--white);
	position: relative;
}

.infra-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.infra-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all var(--transition);
	border: 1px solid var(--gray-100);
	position: relative;
	overflow: hidden;
}

.infra-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.infra-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform var(--transition-slow);
	transform-origin: left;
}

.infra-card:hover::before {
	transform: scaleX(1);
}

.infra-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(244, 121, 32, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.6rem;
	color: var(--accent);
	transition: all var(--transition);
}

.infra-card:hover .infra-icon {
	background: var(--accent);
	color: var(--white);
}

.infra-card h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.infra-card p {
	color: var(--gray-500);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-section {
	background: var(--primary-dark);
	color: var(--white);
}

.why-section .section-title {
	color: var(--white);
}

.why-section .section-subtitle {
	color: rgba(255, 255, 255, 0.7);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.why-card {
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius);
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition);
	text-align: center;
}

.why-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--accent);
	transform: translateY(-4px);
}

.why-card i {
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 14px;
}

.why-card h4 {
	color: var(--white);
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.why-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ========== MONITORING SECTION ========== */
.monitoring-section {
	background: var(--off-white);
}

.monitoring-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.monitoring-text h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: var(--gray-900);
}

.monitoring-text p {
	color: var(--gray-500);
	line-height: 1.8;
	margin-bottom: 16px;
}

.monitoring-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.monitoring-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--gray-600);
	font-weight: 500;
}

.monitoring-list li i {
	color: var(--accent);
	margin-top: 4px;
	flex-shrink: 0;
}

.monitoring-img-wrapper {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--gray-200);
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.monitoring-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a3a5c 0%, #1f4d7a 50%, #0f2440 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 4rem;
	border-radius: var(--radius-lg);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
	background: var(--white);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-form-wrapper {
	background: var(--off-white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
	font-size: 1.4rem;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.9rem;
	color: var(--gray-700);
	font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-sm);
	font-family: 'Nunito', sans-serif;
	font-size: 0.95rem;
	transition: all var(--transition);
	background: var(--white);
	color: var(--gray-800);
	resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.1);
}

.form-group textarea {
	min-height: 120px;
}

.form-submit {
	width: 100%;
	padding: 14px;
	background: var(--accent);
	color: var(--white);
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: all var(--transition);
}

.form-submit:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(244, 121, 32, 0.35);
}

.contact-info-card {
	background: var(--primary);
	border-radius: var(--radius-lg);
	padding: 40px;
	color: var(--white);
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
	color: var(--white);
	font-size: 1.4rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-info-item i {
	font-size: 1.3rem;
	color: var(--accent);
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-info-item span {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

.contact-info-item strong {
	display: block;
	color: var(--white);
	margin-bottom: 2px;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
	background: var(--off-white);
	overflow: hidden;
}

.partners-track {
	display: flex;
	gap: 30px;
	animation: scrollPartners 30s linear infinite;
	width: max-content;
	padding: 20px 0;
}

.partners-track.reverse {
	animation-direction: reverse;
	animation-duration: 28s;
}

@keyframes scrollPartners {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.partner-logo {
	flex-shrink: 0;
	width: 120px;
	height: 60px;
	background: var(--white);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--gray-400);
	box-shadow: var(--shadow-sm);
	padding: 10px;
	text-align: center;
	transition: all var(--transition);
	font-family: 'Poppins', sans-serif;
}

.partner-logo:hover {
	color: var(--accent);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
	background: var(--gray-900);
	color: rgba(255, 255, 255, 0.7);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h4 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: all var(--transition);
	font-size: 0.95rem;
}

.footer-col ul a:hover {
	color: var(--accent);
	padding-left: 6px;
}

.footer-col .footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--white);
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-bottom img {
	height: 40px;
	opacity: 0.8;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
	position: fixed;
	bottom: 75px;
	right: 28px;
	z-index: 999;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	cursor: pointer;
	transition: all var(--transition);
	animation: pulse 2s infinite;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
	animation: none;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	}

	50% {
		box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7);
	}
}

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 36, 64, 0.97);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
	backdrop-filter: blur(8px);
}

.mobile-nav-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.mobile-nav-links a {
	color: var(--white);
	font-size: 1.3rem;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: var(--radius);
	transition: all var(--transition);
	font-family: 'Poppins', sans-serif;
}

.mobile-nav-links a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--accent);
}

.mobile-nav-links .mobile-cta {
	background: var(--accent);
	border-radius: 50px;
	margin-top: 8px;
}

.mobile-nav-links .mobile-cta:hover {
	background: var(--accent-light);
	color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.nav-menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.header-cta-desktop {
		display: none;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.counter-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.service-card {
		grid-template-columns: 1fr;
	}

	.service-card-img {
		height: 240px;
	}

	.monitoring-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.section-padding {
		padding: 60px 0;
	}

	.hero-arrows {
		padding: 0 8px;
	}

	.hero-arrow {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.header-inner {
		padding: 0 16px;
	}

	.logo a {
		font-size: 1.3rem;
	}

	.logo-icon {
		width: 125px;
		height: auto;
		font-size: 1rem;
	}

	.hero-slider {
		min-height: 550px;
		height: 90vh;
	}

	.hero-content h1 {
		font-size: 1.6rem;
	}

	.hero-content p {
		font-size: 0.9rem;
	}

	.btn {
		padding: 12px 22px;
		font-size: 0.9rem;
	}

	.counter-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.counter-card {
		padding: 18px 10px;
	}

	.counter-number {
		font-size: 1.5rem;
	}

	.counter-label {
		font-size: 0.75rem;
	}

	.services-tabs {
		gap: 6px;
	}

	.service-tab {
		padding: 10px 16px;
		font-size: 0.8rem;
	}

	.service-card-body {
		padding: 20px;
	}

	.service-card-body h3 {
		font-size: 1.15rem;
	}

	.infra-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.contact-form-wrapper {
		padding: 24px;
	}

	.contact-info-card {
		padding: 24px;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
		margin-bottom: 32px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.whatsapp-float {
		width: 48px;
		height: 48px;
		font-size: 1.3rem;
		bottom: 60px;
		right: 15px;
	}

	.hero-arrows {
		display: none;
	}

	.hero-nav {
		bottom: 24px;
	}

	.partner-logo {
		width: 90px;
		height: 44px;
		font-size: 0.7rem;
	}
}

@media (max-width: 400px) {
	.counter-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 6px;
	}

	.counter-card {
		padding: 14px 6px;
	}

	.counter-number {
		font-size: 1.3rem;
	}

	.counter-label {
		font-size: 0.7rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}


.visitor-counter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #1a3a5c;
	color: white;
	border-radius: 12px;
	font-family: 'Poppins', sans-serif;
}

#contador {
	color: #119cff;
	font-weight: 700;
	font-size: 20px;
}