/**
 * Template Name: Salvador Safety - Enhanced
 * Modified from Bethany template for Salvador Safety
 * Combined CSS for complete functionality
 */

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
		"Liberation Sans", sans-serif;
	--heading-font: "Poppins", sans-serif;
	--nav-font: "Inter", sans-serif;
}

/* Global Colors - Salvador Safety brand colors */
:root {
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #1d5b7d;
	--accent-color: #e84e1b;
	--secondary-color: #3a8dad;
	--light-blue: #7bbfd9;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
	--primary-blue: #1d5b7d;
	--text-dark: #2c3e50;
	--text-light: #6c757d;
	--bg-light: #f8f9fa;
	--success-green: #28a745;
	--shadow-light: 0 2px 15px rgba(0, 0, 0, 0.08);
	--shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav Menu Colors */
:root {
	--nav-color: #1d5b7d;
	--nav-hover-color: #e84e1b;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #1d5b7d;
	--nav-dropdown-hover-color: #e84e1b;
}

/* Color Presets */
.light-background {
	--background-color: #f9f9f9;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #1d5b7d;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #3a8dad;
	--contrast-color: #ffffff;
}

.accent-background {
	--background-color: #e84e1b;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--accent-color: #ffffff;
	--surface-color: #f06c42;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	scroll-behavior: smooth;
}

body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
	line-height: 1.6;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header & Navigation - ENHANCED
--------------------------------------------------------------*/
.header {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	box-shadow: 0 2px 20px rgba(29, 91, 125, 0.1);
	backdrop-filter: blur(10px);
	transition: var(--transition);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	height: 70px;
}

.header.header-scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	box-shadow: 0 2px 25px rgba(29, 91, 125, 0.15);
}

.header .logo img {
	max-height: 55px;
	transition: var(--transition);
}

.header .logo {
	display: flex;
	align-items: center;
}

.header .btn-getstarted {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	color: #ffffff;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: var(--shadow-light);
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
}

.header .btn-getstarted:hover {
	background: linear-gradient(135deg, var(--accent-color) 0%, #f06c42 100%);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
	color: #ffffff;
}

/*--------------------------------------------------------------
# Mobile Navigation Toggle
--------------------------------------------------------------*/
.mobile-nav-toggle {
	color: var(--primary-blue);
	font-size: 28px;
	cursor: pointer;
	transition: var(--transition);
	z-index: 999999;
	position: relative;
	border: none;
	background: none;
	padding: 5px;
	display: none;
}

.mobile-nav-toggle:hover {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--primary-blue);
		padding: 18px 15px;
		font-size: 13px;
		text-transform: uppercase;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		text-decoration: none;
		position: relative;
	}

	.navmenu a::after {
		content: "";
		position: absolute;
		bottom: -5px;
		left: 50%;
		width: 0;
		height: 2px;
		background: var(--accent-color);
		transition: var(--transition);
		transform: translateX(-50%);
	}

	.navmenu a:hover::after,
	.navmenu .active::after {
		width: 100%;
	}

	.navmenu a:hover,
	.navmenu .active {
		color: var(--accent-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/*--------------------------------------------------------------
# Enhanced Mobile Navigation - COMPLETELY REDESIGNED
--------------------------------------------------------------*/
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		display: block !important;
	}

	/* Mobile Navigation Overlay */
	.mobile-nav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.8);
		z-index: 9997;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		backdrop-filter: blur(5px);
	}

	.mobile-nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	/* Mobile Navigation Menu */
	.navmenu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		max-width: 85vw;
		height: 100vh;
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
		z-index: 9998;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
		overflow-y: auto;
		padding: 0;
	}

	.navmenu.mobile-nav-active {
		right: 0;
	}

	/* Mobile Menu Header */
	.mobile-menu-header {
		/*background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);*/
		background: #fff;
		padding: 20px;
		color: white;
		position: relative;
		margin-bottom: 20px;
	}

	.mobile-menu-header::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, var(--accent-color), #f06c42);
	}

	.mobile-menu-logo {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 10px;
	}

	.mobile-menu-logo img {
		height: 40px;
		width: auto;
	}

	.mobile-menu-logo h3 {
		color: white;
		font-family: var(--heading-font);
		font-size: 1.2rem;
		font-weight: 700;
		margin: 0;
	}

	.mobile-menu-subtitle {
		font-size: 0.9rem;
		opacity: 0.9;
		color: #000;
		margin: 0;
	}

	/* Mobile Menu Close Button */
	.mobile-nav-close {
		position: absolute;
		top: 15px;
		right: 15px;
		background: rgba(255, 255, 255, 0.2);
		border: none;
		color: white;
		font-size: 24px;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: var(--transition);
	}

	.mobile-nav-close:hover {
		background: rgba(255, 255, 255, 0.3);
		transform: rotate(90deg);
	}

	/* Mobile Menu Items */
	.navmenu ul {
		list-style: none;
		padding: 0 20px 20px;
		margin: 0;
	}

	.navmenu li {
		margin-bottom: 5px;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--primary-blue);
		padding: 15px 20px;
		font-size: 16px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-decoration: none;
		border-radius: 12px;
		transition: var(--transition);
		position: relative;
		overflow: hidden;
	}

	.navmenu a::before {
		content: "";
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(232, 78, 27, 0.1), transparent);
		transition: left 0.5s ease;
	}

	.navmenu a:hover::before {
		left: 100%;
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--accent-color);
		background: rgba(232, 78, 27, 0.1);
		transform: translateX(5px);
		box-shadow: 0 4px 15px rgba(232, 78, 27, 0.2);
	}

	/* Mobile Menu Icons */
	.navmenu a i {
		font-size: 18px;
		margin-right: 12px;
		color: var(--accent-color);
		transition: var(--transition);
	}

	.navmenu a:hover i {
		transform: scale(1.2);
	}

	/* Language Dropdown in Mobile */
	.navmenu .dropdown {
		position: relative;
	}

	.navmenu .dropdown>a::after {
		content: "\f282";
		font-family: "bootstrap-icons";
		font-size: 14px;
		transition: transform 0.3s ease;
	}

	.navmenu .dropdown.dropdown-active>a::after {
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		display: none;
		background: rgba(232, 78, 27, 0.05);
		margin: 10px 0 0 0;
		padding: 10px 0;
		border-radius: 8px;
		border-left: 3px solid var(--accent-color);
	}

	.navmenu .dropdown.dropdown-active ul {
		display: block;
		animation: slideDown 0.3s ease;
	}

	.navmenu .dropdown ul a {
		padding: 12px 25px;
		font-size: 14px;
		color: var(--text-dark);
	}

	.navmenu .dropdown ul a:hover {
		background: rgba(232, 78, 27, 0.1);
		padding-left: 35px;
	}

	/* Mobile Menu Footer */
	.mobile-menu-footer {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
		padding: 20px;
		border-top: 1px solid rgba(29, 91, 125, 0.1);
	}

	.mobile-menu-contact {
		text-align: center;
	}

	.mobile-menu-contact .btn-whatsapp {
		background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
		color: white;
		padding: 12px 24px;
		border-radius: 25px;
		font-weight: 600;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: var(--transition);
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	}

	.mobile-menu-contact .btn-whatsapp:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
		color: #e84e1b;
	}

	/* Mobile Navigation Active State */
	body.mobile-nav-active {
		overflow: hidden;
	}

	body.mobile-nav-active .mobile-nav-toggle {
		color: var(--accent-color);
		transform: rotate(90deg);
	}

	/* Animations */
	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.navmenu li {
		animation: fadeInUp 0.3s ease forwards;
		opacity: 0;
	}

	.navmenu.mobile-nav-active li:nth-child(1) {
		animation-delay: 0.1s;
	}

	.navmenu.mobile-nav-active li:nth-child(2) {
		animation-delay: 0.2s;
	}

	.navmenu.mobile-nav-active li:nth-child(3) {
		animation-delay: 0.3s;
	}

	.navmenu.mobile-nav-active li:nth-child(4) {
		animation-delay: 0.4s;
	}

	.navmenu.mobile-nav-active li:nth-child(5) {
		animation-delay: 0.5s;
	}
}

/*--------------------------------------------------------------
# Hero Slider - ENHANCED
--------------------------------------------------------------*/
.hero-slider {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.hero-slider .swiper-container {
	width: 100%;
	height: 100%;
}

.hero-slider .swiper-slide {
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-slider .swiper-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(29, 91, 125, 0.4) 0%, rgba(58, 141, 173, 0.6) 100%);
}

.hero-slider .container {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
	color: white;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
	background: var(--accent-color);
	transform: scale(1.1);
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: white;
	opacity: 0.5;
	margin: 0 8px !important;
	transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
	background: var(--accent-color);
	opacity: 1;
	transform: scale(1.2);
}

#hero h1 {
	margin: 0 0 20px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#hero h1 span {
	color: #fff;
	border-bottom: 4px solid var(--accent-color);
}

#hero h2 {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	font-size: 24px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

#hero .btn-get-started {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	transition: var(--transition);
	margin: 10px;
	border: 2px solid #fff;
	color: #fff;
	text-decoration: none;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
}

#hero .btn-get-started:hover {
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(232, 78, 27, 0.4);
	color: #fff;
}

/*--------------------------------------------------------------
# Services Section - ENHANCED
--------------------------------------------------------------*/
.services {
	padding: 80px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.services .section-title h2 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.services .section-title h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-blue));
	transform: translateX(-50%);
	border-radius: 2px;
}

.services .icon-box {
	background: #ffffff;
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-light);
	border: 1px solid rgba(29, 91, 125, 0.1);
	transition: var(--transition);
	height: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.services .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-blue));
}

.services .icon-box:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-medium);
}

.services .icon-box .icon img,
.services .icon-box .img-width {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.services .icon-box:hover .icon img,
.services .icon-box:hover .img-width {
	transform: scale(1.05);
}

.services .icon-box h3 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.services .icon-box p {
	color: var(--text-dark);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.services .btn-getstarted {
	background: linear-gradient(135deg, var(--accent-color) 0%, #f06c42 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 50px;
	transition: var(--transition);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	align-self: center;
	margin-top: auto;
}

.services .btn-getstarted:hover {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
	color: #ffffff;
}

/*--------------------------------------------------------------
# About Section - ENHANCED
--------------------------------------------------------------*/
.about {
	padding: 80px 0;
	background: #ffffff;
}

.about .section-title h2 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.about .content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

/* Reset completo para mobile */
@media (max-width: 991.98px) {
.image-column {
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}
}

/* Ajuste para desktop */
@media (min-width: 992px) {
.image-column {
  margin-top: 9rem; /* Ajuste este valor conforme necessário */
}
}

.about img {
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-medium);
	transition: var(--transition);
}

.about img:hover {
	transform: scale(1.02);
}

.about .pulsating-play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
}

/* Pulsating Play Button */
.pulsating-play-btn:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	animation-delay: 0s;
	animation: pulsate-play-btn 2s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	animation: none;
	border-radius: 0;
}

.pulsating-play-btn:hover:after {
	border-left: 15px solid var(--accent-color);
	transform: scale(20);
}

@keyframes pulsate-play-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
	padding: 20px 0;
}

.stats .stats-item {
	padding: 30px;
	width: 100%;
}

.stats .stats-item span {
	font-size: 48px;
	display: block;
	font-weight: 700;
}

.stats .stats-item p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding: 0;
	margin: 0;
	font-family: var(--heading-font);
	font-size: 15px;
	font-weight: 600;
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 10px 20px;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Why Us Section - ENHANCED
--------------------------------------------------------------*/
.why-us {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-us .content {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	border-left: 4px solid var(--accent-color);
	height: 100%;
}

.why-us .content h3 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.why-us .content p {
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.why-us .more-btn {
	color: var(--accent-color);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.why-us .more-btn:hover {
	color: var(--primary-blue);
}

.why-us .icon-box {
	background: #ffffff;
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(29, 91, 125, 0.1);
	height: 100%;
}

.why-us .icon-box:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

.why-us .icon-box i {
	font-size: 3rem;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.why-us .icon-box:hover i {
	transform: scale(1.1);
}

.why-us .icon-box h4 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.why-us .icon-box p {
	color: var(--text-dark);
	line-height: 1.6;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
	padding: 80px 0;
	position: relative;
	clip-path: inset(0);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.call-to-action:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action h3 {
	color: var(--default-color);
	font-size: 28px;
	font-weight: 700;
}

.call-to-action p {
	color: var(--default-color);
}

.call-to-action .cta-btn {
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
	background-color: #1d5b7d;
}

.call-to-action .cta-btn:hover {
	background: var(--nav-hover-color);
	border: 2px solid var(--accent-color);
}

#wave {
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 200;
}

.wave1 use {
	-webkit-animation: move-forever1 10s linear infinite;
	animation: move-forever1 10s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.wave2 use {
	-webkit-animation: move-forever2 8s linear infinite;
	animation: move-forever2 8s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.wave3 use {
	-webkit-animation: move-forever3 6s linear infinite;
	animation: move-forever3 6s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
	0% {
		transform: translate(85px, 0%);
	}

	100% {
		transform: translate(-90px, 0%);
	}
}

@keyframes move-forever1 {
	0% {
		transform: translate(85px, 0%);
	}

	100% {
		transform: translate(-90px, 0%);
	}
}

@-webkit-keyframes move-forever2 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

@keyframes move-forever2 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

@-webkit-keyframes move-forever3 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

@keyframes move-forever3 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

/*--------------------------------------------------------------
# WhatsApp Button - ENHANCED
--------------------------------------------------------------*/
.float {
	position: fixed;
	width: 65px;
	height: 65px;
	bottom: 25px;
	left: 25px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-medium);
	transition: var(--transition);
	z-index: 1000;
	animation: pulse 2s infinite;
	text-decoration: none;
}

.float:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/*Botão Whatsapp*/
.icon-wpp {
	width: 48px;
	height: 48px;
	transform: scale(0.6) translate(20%, 20%);
	fill: #fff;
	pointer-events: none;
}

.float-wpp {
	position: fixed;
	cursor: pointer;
	width: 60px;
	height: 60px;
	bottom: 70px;
	left: 20px;
	transition: 1s;
	background-color: #00c800;
	border-radius: 50px;
	animation: pulse 3s infinite;
	-webkit-animation: pulse 3s infinite;
	-moz-animation: pulse 3s infinite;
	-o-animation: pulse 3s infinite;
	z-index: 99999
}

.float-wpp:hover {
	background-color: #009600;
}

.float-wpp:hover .icon-wpp {
	fill: #fff;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1)
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0)
	}
}

@-o-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1)
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0)
	}
}

@-ms-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1)
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0)
	}
}

@-moz-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1)
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0)
	}
}

@keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1)
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0)
	}
}

section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 65px;
	overflow: clip;
}

/*--------------------------------------------------------------
# Footer - ENHANCED
--------------------------------------------------------------*/
.footer {
	background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4f6b 100%);
	color: #ffffff;
	padding: 3rem 0 1rem;
}

.footer .footer-about .sitename {
	font-family: "Poppins", sans-serif;
	font-size: 1.8rem;
	color: #fff;
	font-weight: 700;
	color: #ffffff;
}

.footer h4 {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer .social-links a {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-right: 10px;
	text-decoration: none;
}

.footer .social-links a:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
	color: #ffffff;
}

.footer .copyright {
	background: rgba(0, 0, 0, 0.2);
	margin-top: 2rem;
	padding: 1.5rem 0;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul a {
	color: rgba(255, 255, 255, 0.8);
	display: inline-block;
	line-height: 1;
	transition: var(--transition);
	text-decoration: none;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cookie Banner - ENHANCED
--------------------------------------------------------------*/
.box-cookies {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-medium);
	margin: 1rem;
	padding: 1.5rem;
	color: #ffffff;
}

.box-cookies.hide {
	display: none !important;
}

.box-cookies .msg-cookies {
	color: #ffffff;
	font-size: 16px;
	margin-right: 20px;
}

.box-cookies .btn-cookies {
	background: var(--accent-color);
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	transition: var(--transition);
	color: #ffffff;
	cursor: pointer;
}

.box-cookies .btn-cookies:hover {
	background: #f06c42;
	transform: translateY(-2px);
}

.color-cookies {
	color: #ffffff;
	text-decoration: underline;
}

.color-cookies:hover {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-top i {
	font-size: 24px;
	color: #ffffff;
	line-height: 0;
}

.scroll-top:hover {
	background: var(--primary-blue);
	color: #ffffff;
	transform: translateY(-3px);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Loading Animation
--------------------------------------------------------------*/
.fade-in {
	animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
	.hero-slider {
		height: 80vh;
	}

	.hero-slider .swiper-button-next,
	.hero-slider .swiper-button-prev {
		display: none;
	}

	#hero h1 {
		font-size: 32px;
		line-height: 40px;
	}

	#hero h2 {
		font-size: 18px;
	}

	.services .section-title h2,
	.about .section-title h2 {
		font-size: 2rem;
	}

	.services .icon-box,
	.why-us .content {
		padding: 1.5rem;
	}

	.float {
		width: 55px;
		height: 55px;
		bottom: 20px;
		left: 20px;
	}

	.float .icon-wpp {
		width: 28px;
		height: 28px;
	}

	.box-cookies {
		flex-direction: column;
		text-align: center;
	}

	.box-cookies .msg-cookies {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 575px) {
	.call-to-action h3 {
		font-size: 1.5rem;
	}

	.section-title h2 {
		font-size: 1.75rem;
	}
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center {
	text-align: center;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.mt-4 {
	margin-top: 1.5rem;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.list-unstyled {
	list-style: none;
	padding: 0;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-width {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	margin-bottom: 4rem;
	margin-top: 4rem;
	position: relative;
}

.section-title h2 {
	font-family: "Poppins", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-blue));
	transform: translateX(-50%);
	border-radius: 2px;
}

.section-title p {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/
main {
	padding-top: 0;
}

.main {
	padding-top: 0;
}

/*--------------------------------------------------------------
# Index Page Specific
--------------------------------------------------------------*/
.index-page {
	background-color: var(--background-color);
}

/*--------------------------------------------------------------
# Service Item Specific
--------------------------------------------------------------*/
.service-item {
	position: relative;
}

.service-item .position-relative {
	position: relative;
}

/*--------------------------------------------------------------
# Box Cookies Size
--------------------------------------------------------------*/
.box-cookies-size {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99998;
}

/*--------------------------------------------------------------
    # F.A.Q
    --------------------------------------------------------------*/
.faq .faq-list {
	padding: 0 100px;
}

.faq .faq-list ul {
	padding: 0;
	list-style: none;
}

.faq .faq-list li+li {
	margin-top: 15px;
}

.faq .faq-list li {
	padding: 20px;
	background: #e5f2f7;
	/* Light blue background for FAQ items */
	border-radius: 10px;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq .faq-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	padding: 0 30px;
	outline: none;
	cursor: pointer;
	color: #1D5B7D;
	/* Dark blue from logo */
}

.faq .faq-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: var(--accent-color);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
	color: #E84E1B;
	/* Orange/red from logo */
}

.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
	display: none;
}

.faq .faq-list a.collapsed {
	color: #1D5B7D;
}

.faq .faq-list a.collapsed:hover {
	color: var(--accent-color);
}

.faq .faq-list a.collapsed .icon-show {
	display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1200px) {
	.faq .faq-list {
		padding: 0;
	}
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
	padding: 4rem 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.portfolio-details-slider {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	position: relative;
}

.portfolio-details-slider img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: var(--transition);
}

.portfolio-details-slider:hover img {
	transform: scale(1.05);
}

.swiper-pagination-bullet {
	background: var(--primary-blue) !important;
	opacity: 0.5 !important;
	transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
	opacity: 1 !important;
	background: var(--accent-color) !important;
	transform: scale(1.2);
}

/*--------------------------------------------------------------
# Portfolio Info Card
--------------------------------------------------------------*/
.portfolio-info {
	background: #ffffff;
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-light);
	border: 1px solid rgba(29, 91, 125, 0.1);
	transition: var(--transition);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.portfolio-info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-blue));
}

.portfolio-info:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

.portfolio-info h3 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(29, 91, 125, 0.1);
}

.portfolio-info ul li {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	font-weight: 500;
	color: var(--text-dark);
	transition: var(--transition);
}

.portfolio-info ul li:hover {
	color: var(--primary-blue);
	padding-left: 10px;
}

.portfolio-info ul li i {
	color: var(--success-green);
	font-size: 1.2rem;
	margin-right: 0.75rem;
	transition: var(--transition);
}

.portfolio-info ul li:hover i {
	transform: scale(1.2);
}

/*--------------------------------------------------------------
# Portfolio Description
--------------------------------------------------------------*/
.portfolio-description {
	background: #ffffff;
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-light);
	border-left: 4px solid var(--accent-color);
	margin-top: 2rem;
	transition: var(--transition);
}

.portfolio-description:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-2px);
}

.portfolio-description h2 {
	color: var(--primary-blue);
	font-family: "Poppins", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.portfolio-description p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.portfolio-description strong {
	color: var(--accent-color);
	font-weight: 600;
}