:root {
	--default-font:
		"Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway", sans-serif;
	--nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #000000;
	--default-color: #e5eaee;
	--heading-color: #ffffff;
	--accent-color: #f14a4d;
	--surface-color: #1a1a1a;
	--contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #e5eaee; /* The default color of the main navmenu links */
	--nav-hover-color: #f14a4d; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #f14a4d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #f1f4fa;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #000910;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #28323a;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: #000000;
	font-family: var(--default-font);
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

html {
	background-color: #000000;
	margin: 0;
	padding: 0;
}

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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-top: 24px;
	font-weight: 600;
	border-radius: 8px;
	animation: slideIn 0.3s ease-out;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-top: 24px;
	font-weight: 600;
	border-radius: 8px;
	animation: slideIn 0.3s ease-out;
}

.php-email-form .loading {
	display: none;
	background: rgba(255, 255, 255, 0.05);
	text-align: center;
	padding: 15px;
	margin-top: 24px;
	border-radius: 8px;
	color: #aeb3b8;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #e74c3c;
	border-top-color: transparent;
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Pulsating Play Button
------------------------------*/
.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;
}

.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;
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(0, 0, 0, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 5px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	font-size: 13px;
	padding: 7px 25px;
	margin: 0 0 0 30px;
	border-radius: 4px;
	transition: 0.3s;
	text-transform: uppercase;
	border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: var(--accent-color);
	border-color: var(--accent-color);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .cta-btn {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: rgba(34, 25, 25, 0.75);
}

/*--------------------------------------------------------------
# Search Modal
--------------------------------------------------------------*/
.search-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 10000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.search-modal.active {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 10vh;
	opacity: 1;
}

.search-modal-content {
	width: 100%;
	max-width: 700px;
	position: relative;
	animation: searchSlideDown 0.3s ease;
}

@keyframes searchSlideDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.search-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	transition: all 0.3s ease;
}

.search-close:hover {
	color: #e74c3c;
	transform: rotate(90deg);
}

.search-container {
	background: rgba(22, 22, 22, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.search-input-icon {
	position: absolute;
	left: 20px;
	font-size: 20px;
	color: #aeb3b8;
}

.search-input {
	width: 100%;
	background: #000;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 18px 140px 18px 55px;
	font-size: 18px;
	color: #fff;
	transition: all 0.3s ease;
}

.search-input:focus {
	outline: none;
	border-color: #e74c3c;
	background: #0a0a0a;
}

.search-input::placeholder {
	color: #666;
}

.search-shortcut {
	position: absolute;
	right: 20px;
	font-size: 12px;
	color: #666;
	background: rgba(255, 255, 255, 0.05);
	padding: 5px 12px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results {
	max-height: 60vh;
	overflow-y: auto;
	padding-right: 5px;
}

.search-results::-webkit-scrollbar {
	width: 6px;
}

.search-results::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

.search-section {
	margin-bottom: 25px;
}

.search-section-title {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.search-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.search-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(231, 76, 60, 0.3);
	transform: translateX(5px);
}

.search-item-icon {
	width: 40px;
	height: 40px;
	background: rgba(231, 76, 60, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e74c3c;
	font-size: 18px;
	flex-shrink: 0;
}

.search-item-content {
	flex: 1;
}

.search-item-title {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
}

.search-item-description {
	font-size: 13px;
	color: #aeb3b8;
	line-height: 1.4;
}

.search-item-badge {
	font-size: 11px;
	color: #e74c3c;
	background: rgba(231, 76, 60, 0.1);
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.search-empty {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.search-empty i {
	font-size: 48px;
	margin-bottom: 15px;
	opacity: 0.3;
}

.search-empty p {
	font-size: 16px;
	margin: 0;
}

@media (max-width: 768px) {
	.search-modal.active {
		padding-top: 5vh;
		padding-left: 15px;
		padding-right: 15px;
	}

	.search-modal-content {
		max-width: 100%;
	}

	.search-close {
		top: -45px;
		font-size: 20px;
	}

	.search-container {
		padding: 15px;
		border-radius: 15px;
	}

	.search-input {
		font-size: 16px;
		padding: 15px 110px 15px 50px;
	}

	.search-input-icon {
		left: 18px;
		font-size: 18px;
	}

	.search-shortcut {
		font-size: 10px;
		padding: 4px 8px;
		right: 15px;
	}

	.search-item {
		padding: 12px;
		gap: 12px;
	}

	.search-item-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.search-item-title {
		font-size: 14px;
	}

	.search-item-description {
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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 > ul > li {
		white-space: nowrap;
		padding: 15px 14px;
	}

	.navmenu > ul > li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		font-size: 13px;
		padding: 0 2px;
		font-family: var(--nav-font);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		text-transform: uppercase;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu > ul > li > a:before {
		content: "";
		position: absolute;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--nav-hover-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover > a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
	}

	.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 i {
		font-size: 12px;
	}

	.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;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	position: relative;
}

.footer .footer-top {
	padding-top: 50px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px;
}

.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-about .logo span {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--heading-font);
	color: var(--heading-color);
}

.footer .footer-about p {
	font-size: 14px;
	font-family: var(--heading-font);
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	padding-right: 3px;
	font-size: 13px;
	line-height: 0;
	color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .copyright {
	padding: 25px 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
}

.page-title:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
}

.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 35px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 76px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	position: relative;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: var(--accent-color);
	margin: 4px 10px;
}

.section-title p {
	color: var(--heading-color);
	margin: 0;
	font-size: 36px;
	font-weight: 800;
	padding-top: 5px;
	text-transform: uppercase;
	font-family: var(--heading-font);
}

@media (max-width: 768px) {
	.section-title p {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Nosotros Section
--------------------------------------------------------------*/
.nosotros {
	background-color: #111;
	margin-top: 0;
	padding-top: 0;
}

.nosotros section:first-child {
	margin-top: 0;
}

/*--------------------------------------------------------------
# Nosotros - Hero Subsection
--------------------------------------------------------------*/
.nosotros-hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 0;
}

.nosotros-hero img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	margin: 0;
}

.nosotros-hero::before {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.nosotros-hero .container {
	position: relative;
	z-index: 3;
}

.nosotros-hero .hero-content {
	max-width: 600px;
	text-align: left;
	padding-left: 70px;
}

.nosotros-hero .hero-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}

.nosotros-hero h2 {
	margin: 0 0 20px 0;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #fff;
}

.nosotros-hero p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 30px 0;
	font-size: 18px;
	line-height: 1.6;
}

.nosotros-hero .btn-watch-video {
	display: inline-flex;
	align-items: center;
	background: #e74c3c;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	padding: 5px 25px;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
	cursor: pointer;
}

.nosotros-hero .btn-watch-video i {
	font-size: 24px;
	margin-right: 8px;
	transition: 0.3s;
}

.nosotros-hero .btn-watch-video:hover {
	background: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/*--------------------------------------------------------------
# Video Modal
--------------------------------------------------------------*/
.video-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	z-index: 999999;
	padding: 60px 20px 20px 20px;
	margin: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
	overflow-y: auto;
}

.video-modal-overlay.active {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.video-modal-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: auto;
	animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.video-modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1;
	padding: 0;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000000;
	font-weight: 300;
}

.video-modal-close:hover {
	background: #e74c3c;
	border-color: #e74c3c;
	transform: rotate(90deg);
}

.video-modal-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-modal-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1400px) {
	.video-modal-container {
		max-width: 1000px;
	}
}

@media (max-width: 1399px) {
	.video-modal-container {
		max-width: 900px;
	}
}

@media (max-width: 1199px) {
	.video-modal-overlay {
		padding: 50px 20px 20px 20px;
	}

	.video-modal-container {
		max-width: 800px;
	}
}

@media (max-width: 991px) {
	.video-modal-overlay {
		padding: 45px 15px 15px 15px;
	}

	.video-modal-container {
		max-width: 700px;
	}

	.video-modal-close {
		top: -45px;
		width: 42px;
		height: 42px;
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.video-modal-overlay {
		padding: 40px 15px 15px 15px;
	}

	.video-modal-container {
		max-width: 95%;
	}

	.video-modal-close {
		top: -42px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.video-modal-overlay {
		padding: 35px 10px 10px 10px;
	}

	.video-modal-close {
		top: -40px;
		width: 38px;
		height: 38px;
		font-size: 22px;
	}

	.video-modal-wrapper {
		border-radius: 6px;
	}
}

@media (max-height: 800px) {
	.video-modal-container {
		max-width: 700px;
	}
}

@media (max-height: 700px) {
	.video-modal-overlay {
		padding: 40px 15px 15px 15px;
	}

	.video-modal-container {
		max-width: 650px;
	}

	.video-modal-close {
		top: -42px;
	}
}

@media (max-height: 600px) {
	.video-modal-overlay {
		padding: 35px 15px 15px 15px;
	}

	.video-modal-container {
		max-width: 600px;
	}

	.video-modal-close {
		top: -40px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}

@media (max-height: 500px) {
	.video-modal-overlay {
		padding: 30px 10px 10px 10px;
	}

	.video-modal-container {
		max-width: 550px;
	}

	.video-modal-close {
		top: -38px;
		width: 38px;
		height: 38px;
		font-size: 22px;
	}
}

@media (max-height: 450px) {
	.video-modal-overlay {
		padding: 25px 10px 10px 10px;
	}

	.video-modal-container {
		max-width: 500px;
	}

	.video-modal-close {
		top: -35px;
		width: 36px;
		height: 36px;
		font-size: 20px;
	}
}

@media (max-height: 400px) and (orientation: landscape) {
	.video-modal-overlay {
		padding: 20px 10px 10px 10px;
	}

	.video-modal-container {
		max-width: 480px;
	}

	.video-modal-close {
		top: -32px;
		width: 34px;
		height: 34px;
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Nosotros - About Subsection
--------------------------------------------------------------*/
.nosotros-about {
	padding: 20px 0 0 0;
}

.nosotros-about .about-card {
	border-radius: 30px;
	padding: 60px 80px;
	max-width: 1000px;
}

.nosotros-about .about-header {
	text-align: left;
}

.nosotros-about .title-line-1 {
	color: #fff;
	font-weight: 600;
	font-size: 2.5rem;
	margin: 0;
}

.nosotros-about .title-line-2 {
	color: #e74c3c;
	font-weight: 700;
	font-size: 2.7rem;
	margin: 0 0 20px 0;
}

.nosotros-about .header-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
	margin-bottom: 20px;
}

.nosotros-about .subtitle {
	font-size: 1.2rem;
	font-weight: 400;
	color: #aeb3b8;
	margin: 0;
	line-height: 1.6;
}

.nosotros-about .section-header {
	margin-top: 75px;
}

.nosotros-about .section-header h3 {
	font-weight: 700;
	font-size: 2.7rem;
	margin-bottom: 20px;
	color: #fff;
}

.nosotros-about-content {
	background-image: url("assets/images/seguridad.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 20px;
	position: relative;
}

.nosotros-about-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(17, 17, 17, 0.85);
	z-index: 1;
}

.nosotros-about-content > * {
	position: relative;
	z-index: 2;
}

.nosotros-about .about-content-card {
	border-radius: 30px;
	padding: 60px 80px;
	max-width: 1000px;
}

.nosotros-about-content .section-header {
	margin-bottom: 30px;
}

.nosotros-about-content .section-header h3 {
	font-weight: 600;
	font-size: 2.5rem;
	padding-left: 25px;
	color: #aeb3b8;
	margin: 0;
	margin-bottom: 40px;
	text-align: left;
}

.nosotros-about .content-wrapper {
	padding-left: 25px;
}

.nosotros-about .mission-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #cccccc;
	margin-bottom: 30px;
}

.nosotros-about .mission-text-secondary {
	font-size: 1rem;
	line-height: 1.7;
	color: #929292;
	margin-bottom: 30px;
}

.nosotros-about .contact-btn {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: white;
	padding: 5px 25px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.nosotros-about .contact-btn:hover {
	background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
	color: white;
	text-decoration: none;
}

@media (max-width: 991px) {
	.nosotros-about .about-content-card {
		padding: 40px 30px;
	}

	.nosotros-about .content-wrapper {
		padding-left: 15px;
	}
}

@media (max-width: 768px) {
	.nosotros-about-content {
		padding: 60px 0;
	}

	.nosotros-about .about-content-card {
		padding: 30px 20px;
	}

	.nosotros-about .content-wrapper {
		padding-left: 10px;
	}

	.nosotros-about-content .section-header h3 {
		font-size: 2rem;
		padding-left: 15px;
	}
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.nosotros-about .about-card {
		padding: 40px 30px;
	}
}

@media (max-width: 768px) {
	.nosotros-about {
		padding: 60px 0 0 0;
	}

	.nosotros-about .about-card {
		padding: 30px 20px;
	}

	.nosotros-about .title-line-1,
	.nosotros-about .title-line-2 {
		font-size: 2rem;
	}

	.nosotros-about .subtitle {
		font-size: 1rem;
	}

	.nosotros-about .mission-card {
		padding: 30px;
	}

	.nosotros-about .section-header h3 {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------------
# Nosotros - Stats Subsection
--------------------------------------------------------------*/
.nosotros-stats {
	padding: 70px 0;
}

.nosotros-stats .stats-card {
	background: #161616;
	border-radius: 30px;
	padding: 60px 70px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	max-width: 1400px;
	margin: 0 auto;
}

.nosotros-stats .section-header {
	margin-bottom: 30px;
}

.nosotros-stats .section-header h3 {
	font-weight: 600;
	font-size: 2rem;
	padding-left: 25px;
	color: #aeb3b8;
	margin: 0;
	text-align: left;
}

.nosotros-stats .stats-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 20px;
	height: 100%;
}

.nosotros-stats .stats-item i {
	font-size: 48px;
	color: #fff;
	margin-bottom: 15px;
}

.nosotros-stats .stats-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
	margin-bottom: 15px;
}

.nosotros-stats .stats-content {
	flex: 1;
	width: 100%;
}

.nosotros-stats .stats-item span {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: 10px;
	white-space: nowrap;
}

.nosotros-stats .stats-item p {
	font-size: 0.95rem;
	margin: 0;
	color: #999;
	line-height: 1.5;
}

.nosotros-stats .plus-prefix::after {
	content: " +";
	white-space: nowrap;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.nosotros-stats .stats-card {
		padding: 40px 30px;
	}
}

@media (max-width: 768px) {
	.nosotros-stats {
		padding: 60px 0;
	}

	.nosotros-stats .section-header h3 {
		font-size: 2rem;
	}

	.nosotros-stats .stats-card {
		padding: 30px 20px;
	}

	.nosotros-stats .stats-item {
		padding: 30px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nosotros-stats .row > div:last-child .stats-item {
		border-bottom: none;
	}

	.nosotros-stats .stats-item i {
		font-size: 40px;
	}

	.nosotros-stats .stats-item span {
		font-size: 2.2rem;
	}

	.nosotros-stats .stats-item p {
		font-size: 0.9rem;
	}
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
	padding: 20px 0;
}

.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;
	}
}

/*--------------------------------------------------------------
# Productos Section
--------------------------------------------------------------*/
.productos {
	background-color: #111;
}

.productos-header {
	position: relative;
	padding: 100px 0 120px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.5s ease-in-out;
}

.productos-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.productos-header .container {
	position: relative;
	z-index: 2;
}

.productos-header .header-content {
	margin-bottom: 50px;
	margin-left: 70px;
	text-align: left;
}

.productos-header .header-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 15px;
}

.productos-header h2 {
	font-size: 3.5rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.productos-tabs-wrapper {
	display: inline-block;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 7px;
	margin-left: 70px;
	margin-top: 100px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.productos-tabs {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.productos-tabs .nav-item {
	flex: 0 0 auto;
}

.productos-tabs .nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: none;
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.productos-tabs .nav-link i {
	font-size: 20px;
	color: #fff;
	flex-shrink: 0;
}

.productos-tabs .nav-link span {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
}

.productos-tabs .nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.productos-tabs .nav-link.active {
	background: rgba(231, 76, 60, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.productos-content {
	background: #161616;
	border-radius: 30px;
	padding: 60px 80px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	margin-top: -60px;
	position: relative;
	z-index: 3;
}

.productos-content .row {
	display: flex;
	align-items: stretch;
}

.productos-content .features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.productos-content .feature-item {
	display: flex;
	gap: 15px;
	align-items: center;
}

.productos-content .feature-item i {
	font-size: 24px;
	color: #e74c3c;
	flex-shrink: 0;
	margin-top: 2px;
}

.productos-content .feature-item h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.4;
}

.productos-content .description {
	padding-left: 40px;
	border-left: 2px solid rgba(255, 255, 255, 0.1);
	height: 100%;
}

.productos-content .description p {
	font-size: 1rem;
	line-height: 1.7;
	color: #aeb3b8;
	margin-bottom: 20px;
}

.productos-content .description p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.productos-header h2 {
		font-size: 2.5rem;
	}

	.productos-tabs-wrapper {
		width: 100%;
	}

	.productos-tabs {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.productos-content {
		padding: 40px 30px;
	}

	.productos-content .row {
		display: block;
	}

	.productos-content .description {
		padding-left: 0;
		border-left: none;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 2px solid rgba(255, 255, 255, 0.1);
		height: auto;
	}
}

@media (max-width: 768px) {
	.productos-header {
		padding: 80px 0 100px 0;
	}

	.productos-header .header-content {
		margin-left: 0;
		padding: 0 20px;
	}

	.productos-header h2 {
		font-size: 2rem;
	}

	.productos-tabs-wrapper {
		margin: 0 20px !important;
		padding: 6px !important;
		border-radius: 12px;
		overflow: visible !important;
		display: block !important;
		width: calc(100% - 40px) !important;
	}

	.productos-tabs {
		flex-wrap: nowrap !important;
		flex-direction: row !important;
		gap: 4px !important;
		display: flex !important;
		justify-content: space-between !important;
	}

	.productos-tabs .nav-item {
		flex: 1 1 0 !important;
		width: auto !important;
		min-width: 0 !important;
	}

	.productos-tabs .nav-link {
		padding: 10px 8px !important;
		justify-content: center;
		white-space: nowrap;
		display: flex !important;
		flex-direction: row !important;
		gap: 6px !important;
	}

	.productos-tabs .nav-link i {
		font-size: 16px;
	}

	.productos-tabs .nav-link span {
		font-size: 13px;
	}

	.productos-content {
		padding: 30px 20px;
		margin-top: -40px;
	}

	.productos-content .feature-item {
		gap: 10px;
	}

	.productos-content .feature-item i {
		font-size: 20px;
	}

	.productos-content .feature-item h5 {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.productos-header h2 {
		font-size: 1.75rem;
	}

	.productos-tabs-wrapper {
		margin: 0;
	}

	.productos-content {
		padding: 25px 15px;
	}
}

/*--------------------------------------------------------------
# Logros Section
--------------------------------------------------------------*/
.logros {
	background-color: #111;
	padding: 80px 0 100px 0;
	overflow: hidden;
}

.logros .logros-header {
	text-align: left;
	margin-bottom: 50px;
	padding-left: 70px;
}

.logros .logros-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 10px;
}

.logros .logros-title-line-1 {
	color: #fff;
	font-weight: 700;
	font-size: 2.5rem;
	margin: 0;
	line-height: 1.2;
}

.logros .logros-title-line-2 {
	color: #e74c3c;
	font-weight: 700;
	font-size: 2.5rem;
	margin: 0;
	line-height: 1.2;
}

.logros-carousel-wrapper {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 70px;
}

.logros-carousel {
	overflow: visible;
	width: 100%;
}

.logros-track {
	display: flex;
	gap: 40px;
	transition: transform 0.6s ease;
}

.logros-card {
	min-width: calc(100% - 140px);
	width: calc(100% - 140px);
	height: 380px;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	flex-shrink: 0;
}

.logros-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.logros-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 70%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.75) 30%,
		rgba(0, 0, 0, 0.5) 60%,
		rgba(0, 0, 0, 0.2) 85%,
		transparent 100%
	);
	z-index: 1;
}

.logros-card-content {
	position: absolute;
	top: 50px;
	left: 60px;
	right: 60px;
	z-index: 2;
	max-width: 600px;
}

.logros-card-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 15px 0;
	line-height: 1.3;
	text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.logros-card-content p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.logros-nav-controls {
	position: absolute;
	bottom: -70px;
	right: 70px;
	display: flex;
	gap: 15px;
	z-index: 10;
}

.logros-nav {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.logros-nav:hover {
	background: rgba(231, 76, 60, 0.9);
	border-color: #e74c3c;
	transform: scale(1.1);
}

.logros-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.logros-nav:disabled:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1);
}

@media (max-width: 991px) {
	.logros-carousel-wrapper {
		padding: 0 40px;
	}

	.logros .logros-header {
		padding-left: 40px;
	}

	.logros-card {
		min-width: calc(100% - 80px);
		width: calc(100% - 80px);
		height: 350px;
		border-radius: 20px;
	}

	.logros-card-content {
		top: 40px;
		left: 40px;
		right: 40px;
	}

	.logros-card-content h3 {
		font-size: 1.6rem;
	}

	.logros-nav-controls {
		right: 40px;
		bottom: -60px;
	}
}

@media (max-width: 768px) {
	.logros {
		padding: 50px 0 80px 0;
	}

	.logros-carousel-wrapper {
		padding: 0;
	}

	.logros-carousel {
		padding: 0;
		overflow: hidden;
		width: 100%;
	}

	.logros .logros-header {
		padding-left: 20px;
		margin-bottom: 40px;
	}

	.logros .logros-title-line-1,
	.logros .logros-title-line-2 {
		font-size: 1.8rem;
	}

	.logros-track {
		gap: 20px;
	}

	.logros-card {
		min-width: calc(100vw - 40px);
		width: calc(100vw - 40px);
		height: 320px;
		border-radius: 15px;
	}

	.logros-card-content {
		top: 25px;
		left: 20px;
		right: 20px;
	}

	.logros-card-content h3 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

	.logros-card-content p {
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.logros-nav-controls {
		position: absolute;
		bottom: -60px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		display: flex;
		gap: 10px;
		z-index: 10;
	}

	.logros-nav {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# IA Section
--------------------------------------------------------------*/
.ia {
	background-color: #111;
	padding: 20px 0;
}

.ia .ia-header {
	text-align: left;
	margin-bottom: 60px;
	padding-left: 70px;
	max-width: 900px;
}

.ia .ia-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 20px;
}

.ia .ia-title {
	font-size: 2.8rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 25px 0;
	line-height: 1.3;
}

.ia .ia-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #cccccc;
	margin: 0;
}

.ia-features {
	padding: 0 70px;
}

.ia-feature-card {
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ia-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #e74c3c 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ia-feature-card:hover {
	background: #0f0f0f;
	border-color: rgba(231, 76, 60, 0.3);
	transform: translateY(-5px);
}

.ia-feature-card:hover::before {
	opacity: 1;
}

.ia-feature-icon {
	width: 60px;
	height: 60px;
	background: transparent;
	border: 2px solid #e74c3c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.ia-feature-icon i {
	font-size: 28px;
	color: #e74c3c;
	transition: all 0.3s ease;
}

.ia-feature-card:hover .ia-feature-icon {
	background: #e74c3c;
	transform: scale(1.1);
}

.ia-feature-card:hover .ia-feature-icon i {
	color: #fff;
}

.ia-feature-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
	margin-bottom: 20px;
}

.ia-feature-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 15px 0;
	line-height: 1.4;
}

.ia-feature-card p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #aeb3b8;
	margin: 0;
}

@media (max-width: 991px) {
	.ia .ia-header {
		padding-left: 40px;
	}

	.ia-features {
		padding: 0 40px;
	}

	.ia .ia-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.ia {
		padding: 60px 0;
	}

	.ia .ia-header {
		padding-left: 20px;
		margin-bottom: 40px;
	}

	.ia-features {
		padding: 0 20px;
	}

	.ia .ia-title {
		font-size: 1.8rem;
	}

	.ia .ia-description {
		font-size: 0.95rem;
	}

	.ia-feature-card {
		padding: 30px 25px;
	}

	.ia-feature-card h4 {
		font-size: 1rem;
	}

	.ia-feature-card p {
		font-size: 0.85rem;
	}
}

/*--------------------------------------------------------------
# Clientes Section
--------------------------------------------------------------*/
.clientes {
	background-color: #111;
	padding: 60px 0 0 0;
}

.clientes .clientes-header {
	text-align: left;
	margin-bottom: 60px;
	padding-left: 70px;
}

.clientes .clientes-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 10px;
}

.clientes .clientes-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.clientes-carousel-wrapper {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.clientes-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 90%;
	object-fit: cover;
	z-index: 1;
}

.clientes-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 2;
}

.clientes-content {
	position: relative;
	z-index: 3;
	padding: 80px 0;
}

.clientes-swiper {
	overflow: visible;
	padding: 40px 70px 60px 70px;
}

.cliente-item {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cliente-item .cliente-logo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	margin: 0 auto 30px auto;
	object-fit: cover;
	background: #fff;
	padding: 10px;
}

.cliente-item h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 25px 0;
	line-height: 1.3;
}

.cliente-item p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-weight: 400;
}

.clientes-swiper .swiper-pagination {
	position: relative;
	margin-top: 40px;
	bottom: 0;
}

.clientes-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	transition: all 0.3s ease;
}

.clientes-swiper .swiper-pagination-bullet-active {
	background: #e74c3c;
	width: 30px;
	border-radius: 6px;
}

.clientes-nav-controls {
	position: absolute;
	bottom: 100px;
	right: 70px;
	display: flex;
	gap: 15px;
	z-index: 10;
}

.clientes-nav {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.clientes-nav:hover {
	background: rgba(231, 76, 60, 0.9);
	border-color: #e74c3c;
	transform: scale(1.1);
}

.clientes-nav.swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.clientes-nav.swiper-button-disabled:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1);
}

@media (max-width: 991px) {
	.clientes .clientes-header {
		padding-left: 40px;
	}

	.clientes-swiper {
		padding: 40px 40px 60px 40px;
	}

	.cliente-item h3 {
		font-size: 1.5rem;
	}

	.cliente-item p {
		font-size: 1rem;
	}

	.clientes-nav-controls {
		right: 40px;
	}
}

@media (max-width: 768px) {
	.clientes {
		padding: 60px 0 0 0;
	}

	.clientes .clientes-header {
		padding-left: 20px;
		margin-bottom: 40px;
	}

	.clientes .clientes-title {
		font-size: 1.8rem;
	}

	.clientes-carousel-wrapper {
		min-height: 500px;
	}

	.clientes-swiper {
		padding: 30px 20px 50px 20px;
	}

	.cliente-item .cliente-logo {
		width: 100px;
		height: 100px;
		margin-bottom: 25px;
	}

	.cliente-item h3 {
		font-size: 1.3rem;
		margin-bottom: 20px;
	}

	.cliente-item p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.clientes-nav-controls {
		right: 20px;
		bottom: 80px;
		gap: 10px;
	}

	.clientes-nav {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Certificaciones Section
--------------------------------------------------------------*/
.certificaciones {
	background-color: #0a0a0a;
	padding: 80px 0;
}

.certificaciones .certificaciones-header {
	text-align: left;
	margin-bottom: 70px;
	padding-left: 70px;
	max-width: 700px;
}

.certificaciones .certificaciones-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 20px;
}

.certificaciones .certificaciones-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 25px 0;
	line-height: 1.3;
}

.certificaciones .certificaciones-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #cccccc;
	margin: 0;
}

.certificaciones-list {
	padding: 0 70px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.certificacion-item {
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 50px 60px;
	display: flex;
	align-items: center;
	gap: 60px;
	transition: all 0.3s ease;
}

.certificacion-content {
	flex: 1;
	max-width: 600px;
}

.certificacion-content h4 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.certificacion-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: #aeb3b8;
	margin: 0 0 15px 0;
}

.politica-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.politica-list li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #aeb3b8;
	padding: 10px 0 10px 30px;
	position: relative;
}

.politica-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #e74c3c;
	font-weight: 700;
	font-size: 1.2rem;
}

.certificacion-images {
	flex: 1;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.certificacion-images img {
	max-width: 220px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.cert-iram-logo {
	height: 250px !important;
	width: auto;
	object-fit: contain;
}

.certificacion-images img:hover {
	transform: translateY(-10px);
}

.certificacion-politica .certificacion-images img {
	max-width: 320px;
}

.certificacion-images-triple {
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 15px;
	justify-content: center;
}

.certificacion-images-triple img {
	max-width: 180px;
	flex: 1;
}

.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.95);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 85vh;
	object-fit: contain;
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

#modalCaption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 20px 0;
	font-size: 1.1rem;
}

.modal-close {
	position: absolute;
	top: 25px;
	right: 45px;
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
	z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
	color: #e74c3c;
}

@media (max-width: 768px) {
	.modal-content {
		max-width: 95%;
		max-height: 80vh;
	}

	.modal-close {
		top: 15px;
		right: 25px;
		font-size: 40px;
	}

	#modalCaption {
		font-size: 0.95rem;
		padding: 15px 0;
	}

	.cert-iram-logo {
		height: auto;
		max-height: 250px;
	}
}

@media (max-width: 1200px) {
	.certificacion-item {
		flex-direction: column;
		gap: 40px;
	}

	.certificacion-content {
		max-width: 100%;
	}

	.certificacion-images {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.certificaciones .certificaciones-header {
		padding-left: 40px;
	}

	.certificaciones-list {
		padding: 0 40px;
	}

	.certificacion-item {
		padding: 40px 40px;
	}

	.certificacion-images img {
		max-width: 200px;
	}

	.certificacion-politica .certificacion-images img {
		max-width: 280px;
	}

	.certificacion-images-triple img {
		max-width: 160px;
	}
}

@media (max-width: 768px) {
	.certificaciones {
		padding: 60px 0;
	}

	.certificaciones .certificaciones-header {
		padding-left: 20px;
		margin-bottom: 50px;
	}

	.certificaciones .certificaciones-title {
		font-size: 1.8rem;
	}

	.certificaciones .certificaciones-description {
		font-size: 0.9rem;
	}

	.certificaciones-list {
		padding: 0 20px;
	}

	.certificacion-item {
		padding: 30px 25px;
		gap: 30px;
	}

	.certificacion-content h4 {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}

	.certificacion-content p {
		font-size: 0.9rem;
	}

	.politica-list li {
		font-size: 0.88rem;
		padding: 8px 0 8px 25px;
	}

	.politica-list li::before {
		font-size: 1rem;
	}

	.certificacion-images {
		flex-direction: column;
		gap: 15px;
	}

	.certificacion-images img {
		max-width: 100%;
		width: 100%;
	}

	.certificacion-politica .certificacion-images img {
		max-width: 100%;
	}

	.certificacion-images-triple {
		flex-direction: column;
	}

	.certificacion-images-triple img {
		max-width: 100%;
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
	background-color: #111;
	padding: 60px 0 40px;
}

.contact .contact-header {
	text-align: left;
	margin-bottom: 40px;
	padding-left: 70px;
}

.contact .contact-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aeb3b8;
	margin-bottom: 8px;
}

.contact .contact-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.contact-form-wrapper {
	padding: 0 70px;
	max-width: 800px;
}

.contact-form {
	background: transparent;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 400;
	color: #aeb3b8;
	margin-bottom: 8px;
}

.form-input,
.form-textarea {
	width: 100%;
	background: #000;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 10px 0;
	font-size: 1rem;
	color: #fff;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-bottom-color: #e74c3c;
}

.form-textarea {
	resize: none;
	font-family: inherit;
}

.form-submit {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.btn-submit {
	background: #e74c3c;
	color: #fff;
	padding: 12px 35px;
	border-radius: 50px;
	border: none;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.form-messages {
	margin-top: 20px;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
	display: none;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 10px;
}

.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
	display: block;
}

.php-email-form .loading {
	background: rgba(255, 255, 255, 0.05);
	color: #aeb3b8;
	text-align: center;
	font-weight: 500;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin: 0 10px -4px 0;
	border: 3px solid #e74c3c;
	border-top-color: transparent;
	animation: animate-loading 1s linear infinite;
}

.php-email-form .error-message {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
	border: 1px solid rgba(220, 53, 69, 0.3);
	font-weight: 500;
}

.php-email-form .sent-message {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	border: 1px solid rgba(40, 167, 69, 0.3);
	text-align: center;
	font-weight: 600;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 991px) {
	.contact .contact-header {
		padding-left: 40px;
	}

	.contact-form-wrapper {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.contact {
		padding: 40px 0 30px;
	}

	.contact .contact-header {
		padding-left: 20px;
		margin-bottom: 30px;
	}

	.contact .contact-title {
		font-size: 1.8rem;
	}

	.contact-form-wrapper {
		padding: 0 20px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.form-submit {
		justify-content: center;
	}

	.btn-submit {
		width: 100%;
		max-width: 300px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: start;
	margin-bottom: 30px;
}

.footer-info .logo {
	display: inline-block;
	margin-bottom: 20px;
}

.footer-info .logo img {
	height: 40px;
	width: auto;
}

.footer-contact {
	color: #aeb3b8;
	font-size: 0.9rem;
	line-height: 1.8;
}

.footer-contact p {
	margin-bottom: 8px;
}

.footer-contact strong {
	color: #fff;
	font-weight: 500;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: #aeb3b8;
	font-size: 18px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	color: #fff;
	transform: translateY(-2px);
}

.footer-copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	color: #aeb3b8;
	font-size: 0.9rem;
}

.footer-copyright .sitename {
	color: #fff;
	font-weight: 600;
}

@media (max-width: 768px) {
	.footer {
		padding: 30px 0 15px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.footer-info .logo img {
		height: 35px;
	}

	.social-links {
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# Responsive - Mobile Optimization
--------------------------------------------------------------*/

/* Tablet */
@media (max-width: 991px) {
	/* Nosotros Hero */
	.nosotros-hero .hero-content {
		padding-left: 0;
		max-width: 100%;
	}

	.nosotros-hero h2 {
		font-size: 42px;
	}

	/* About */
	.nosotros-about .about-card {
		padding: 40px;
	}

	.nosotros-about-content .about-content-card {
		padding: 40px;
	}

	.nosotros-about .content-wrapper {
		padding-left: 20px;
	}

	/* Stats */
	.nosotros-stats .stats-card {
		padding: 40px;
	}

	/* Productos */
	.productos-header .header-content {
		margin-left: 0;
	}

	.productos-tabs-wrapper {
		margin-left: 0;
		width: 100%;
	}

	.productos-content {
		padding: 40px;
	}

	/* Logros */
	.logros .logros-header {
		padding-left: 40px;
	}

	.logros-carousel-wrapper {
		padding: 0 40px;
	}

	/* IA */
	.ia .ia-header {
		padding-left: 40px;
	}

	.ia-features {
		padding: 0 40px;
	}

	/* Clientes */
	.clientes .clientes-header {
		padding-left: 40px;
	}

	.clientes-swiper {
		padding: 40px;
	}

	/* Certificaciones */
	.certificaciones .certificaciones-header {
		padding-left: 40px;
	}

	.certificaciones-list {
		padding: 0 40px;
	}

	.certificacion-item {
		flex-direction: column;
		padding: 40px;
		gap: 30px;
	}

	/* Contacto */
	.contact .contact-header {
		padding-left: 40px;
	}

	.contact-form-wrapper {
		padding: 0 40px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	/* General sections */
	section,
	.section {
		padding: 40px 0;
		scroll-margin-top: 70px;
	}

	/* Nosotros Hero */
	.nosotros-hero {
		min-height: 85vh;
		padding: 100px 0 60px;
		margin-top: -70px;
		padding-top: 170px;
	}

	.nosotros-hero img {
		top: 0;
	}
	.nosotros-hero .hero-content {
		padding: 0 20px;
	}

	.nosotros-hero .hero-label {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.nosotros-hero h2 {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.nosotros-hero p {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.nosotros-hero .btn-watch-video {
		font-size: 15px;
		padding: 8px 22px;
	}

	.nosotros-hero .btn-watch-video i {
		font-size: 20px;
	}

	/* About */
	.nosotros-about {
		padding: 40px 0 0 0;
	}

	.nosotros-about .about-card {
		padding: 30px 20px;
		margin: 0 15px;
	}

	.nosotros-about .title-line-1,
	.nosotros-about .title-line-2 {
		font-size: 1.8rem;
	}

	.nosotros-about .subtitle {
		font-size: 1rem;
		line-height: 1.5;
	}

	.nosotros-about-content {
		margin-top: 40px;
		padding: 40px 0;
	}

	.nosotros-about-content .about-content-card {
		padding: 30px 20px;
		margin: 0 15px;
	}

	.nosotros-about-content .section-header h3 {
		font-size: 1.8rem;
		padding-left: 15px;
		margin-bottom: 30px;
	}

	.nosotros-about .content-wrapper {
		padding-left: 15px;
	}

	.nosotros-about .mission-text {
		font-size: 1rem;
		margin-bottom: 20px;
	}

	.nosotros-about .mission-text-secondary {
		font-size: 0.95rem;
		margin-bottom: 25px;
	}

	.nosotros-about .contact-btn {
		width: 100%;
		text-align: center;
		padding: 10px 25px;
	}

	/* Stats */
	.nosotros-stats {
		padding: 50px 0;
	}

	.nosotros-stats .stats-card {
		padding: 30px 20px;
		margin: 0 15px;
	}

	.nosotros-stats .section-header h3 {
		font-size: 1.6rem;
		padding-left: 15px;
	}

	.nosotros-stats .stats-item {
		padding: 25px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nosotros-stats .row > div:last-child .stats-item {
		border-bottom: none;
	}

	.nosotros-stats .stats-item i {
		font-size: 40px;
		margin-bottom: 12px;
	}

	.nosotros-stats .stats-item span {
		font-size: 2.5rem;
		margin-bottom: 8px;
	}

	.nosotros-stats .stats-item p {
		font-size: 0.9rem;
	}

	/* Productos */
	.productos-header {
		padding: 80px 0 100px;
	}

	.productos-header .header-content {
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.productos-header .header-label {
		font-size: 12px;
	}

	.productos-header h2 {
		font-size: 2rem;
		line-height: 1.3;
	}

	.productos-tabs-wrapper {
		margin: 0 20px;
		padding: 8px;
		border-radius: 12px;
	}

	.productos-tabs {
		flex-direction: column;
		gap: 8px;
	}

	.productos-tabs .nav-item {
		flex: 1;
		width: 100%;
	}

	.productos-tabs .nav-link {
		padding: 12px 15px;
		justify-content: flex-start;
		width: 100%;
	}

	.productos-tabs .nav-link i {
		font-size: 20px;
	}

	.productos-tabs .nav-link span {
		font-size: 14px;
	}

	.productos-content {
		padding: 30px 20px;
		margin: -40px 20px 0;
		border-radius: 20px;
	}

	.productos-content .features-list {
		gap: 20px;
		margin-bottom: 30px;
	}

	.productos-content .feature-item {
		gap: 12px;
	}

	.productos-content .feature-item i {
		font-size: 20px;
		margin-top: 0;
	}

	.productos-content .feature-item h5 {
		font-size: 1rem;
	}

	.productos-content .description {
		padding-left: 0;
		border-left: none;
		padding-top: 20px;
		border-top: 2px solid rgba(255, 255, 255, 0.1);
	}

	.productos-content .description p {
		font-size: 0.95rem;
		margin-bottom: 15px;
	}

	/* Logros */
	.logros {
		padding: 50px 0 90px;
	}

	.logros .logros-header {
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.logros .logros-label {
		font-size: 12px;
	}

	.logros .logros-title-line-1,
	.logros .logros-title-line-2 {
		font-size: 1.8rem;
	}

	.logros-carousel-wrapper {
		padding: 0;
	}

	.logros-carousel {
		padding: 0 20px;
		overflow: hidden;
	}

	.logros-track {
		gap: 20px;
	}

	.logros-card {
		min-width: calc(100vw - 40px);
		width: calc(100vw - 40px);
		height: 320px;
		border-radius: 15px;
	}

	.logros-card-content {
		top: 25px;
		left: 20px;
		right: 20px;
	}

	.logros-card-content h3 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

	.logros-card-content p {
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.logros-nav-controls {
		position: absolute;
		bottom: -60px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 15px;
		z-index: 10;
	}

	.logros-nav {
		width: 45px;
		height: 45px;
		font-size: 18px;
		background: rgba(255, 255, 255, 0.1);
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		color: #fff;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		backdrop-filter: blur(10px);
	}

	.logros-nav:hover {
		background: rgba(231, 76, 60, 0.9);
		border-color: #e74c3c;
		transform: scale(1.1);
	}

	.logros-nav:disabled {
		opacity: 0.3;
		cursor: not-allowed;
	}

	.logros-nav:disabled:hover {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.3);
		transform: scale(1);
	}

	/* IA */
	.ia {
		padding: 50px 0;
	}

	.ia .ia-header {
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.ia .ia-label {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.ia .ia-title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.ia .ia-description {
		font-size: 0.95rem;
	}

	.ia-features {
		padding: 0 20px;
	}

	.ia-feature-card {
		padding: 30px 20px;
		margin-bottom: 20px;
	}

	.ia-feature-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 18px;
	}

	.ia-feature-icon i {
		font-size: 24px;
	}

	.ia-feature-card h4 {
		font-size: 1rem;
		margin-bottom: 12px;
	}

	.ia-feature-card p {
		font-size: 0.88rem;
	}

	/* Clientes */
	.clientes {
		padding: 50px 0 0;
	}

	.clientes .clientes-header {
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.clientes .clientes-label {
		font-size: 12px;
	}

	.clientes .clientes-title {
		font-size: 1.8rem;
	}

	.clientes-carousel-wrapper {
		min-height: 480px;
	}

	.clientes-content {
		padding: 60px 0;
	}

	.clientes-swiper {
		padding: 30px 20px 50px;
	}

	.cliente-item .cliente-logo {
		width: 90px;
		height: 90px;
		margin-bottom: 20px;
		padding: 8px;
	}

	.cliente-item h3 {
		font-size: 1.25rem;
		margin-bottom: 18px;
	}

	.cliente-item p {
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.clientes-swiper .swiper-pagination {
		margin-top: 30px;
	}

	.clientes-nav-controls {
		right: 20px;
		bottom: 70px;
		gap: 10px;
	}

	.clientes-nav {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	/* Certificaciones */
	.certificaciones {
		padding: 50px 0;
	}

	.certificaciones .certificaciones-header {
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.certificaciones .certificaciones-label {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.certificaciones .certificaciones-title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.certificaciones .certificaciones-description {
		font-size: 0.9rem;
	}

	.certificaciones-list {
		padding: 0 20px;
		gap: 30px;
	}

	.certificacion-item {
		padding: 30px 20px;
		gap: 25px;
	}

	.certificacion-content h4 {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}

	.certificacion-content p {
		font-size: 0.9rem;
	}

	.certificacion-images {
		flex-direction: column;
		gap: 15px;
	}

	.certificacion-images img {
		max-width: 100%;
		width: 100%;
	}

	/* Contacto */
	.contact {
		padding: 50px 0 35px;
	}

	.contact .contact-header {
		padding: 0 20px;
		margin-bottom: 35px;
	}

	.contact .contact-label {
		font-size: 12px;
	}

	.contact .contact-title {
		font-size: 1.8rem;
	}

	.contact-form-wrapper {
		padding: 0 20px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		font-size: 0.85rem;
		margin-bottom: 6px;
	}

	.form-input,
	.form-textarea {
		font-size: 0.95rem;
		padding: 8px 0;
	}

	.form-submit {
		justify-content: center;
		margin-top: 25px;
	}

	.btn-submit {
		width: 100%;
		padding: 12px 30px;
		font-size: 0.95rem;
	}

	/* Footer */
	.footer {
		padding: 35px 0 20px;
	}

	.footer .container {
		padding: 0 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-bottom: 25px;
	}

	.footer-info .logo img {
		height: 32px;
	}

	.footer-contact {
		font-size: 0.85rem;
	}

	.social-links {
		justify-content: flex-start;
		gap: 10px;
	}

	.social-links a {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.footer-copyright {
		font-size: 0.85rem;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.nosotros-hero h2 {
		font-size: 28px;
	}

	.nosotros-hero p {
		font-size: 15px;
	}

	.nosotros-about .title-line-1,
	.nosotros-about .title-line-2 {
		font-size: 1.5rem;
	}

	.nosotros-stats .stats-item span {
		font-size: 2.2rem;
	}

	.productos-header h2 {
		font-size: 1.75rem;
	}

	.productos-tabs-wrapper {
		margin: 0;
	}

	.productos-content {
		padding: 25px 15px;
	}

	.logros .logros-title-line-1,
	.logros .logros-title-line-2 {
		font-size: 1.5rem;
	}

	.logros-card {
		height: 280px;
	}

	.ia .ia-title {
		font-size: 1.6rem;
	}

	.clientes .clientes-title {
		font-size: 1.6rem;
	}

	.certificaciones .certificaciones-title {
		font-size: 1.6rem;
	}

	.contact .contact-title {
		font-size: 1.6rem;
	}
}

/*--------------------------------------------------------------
# Header Mobile Fixes
--------------------------------------------------------------*/
@media (max-width: 1199px) {
	.header {
		padding: 15px 0;
	}

	.header .container-fluid {
		padding: 0 20px;
	}

	.header .logo img {
		max-height: 32px;
	}

	.header .header-icons {
		order: 2;
		margin: 0 15px 0 auto;
	}

	.header .search-icon {
		margin-right: 0;
	}

	.mobile-nav-toggle {
		order: 3;
		margin: 0;
	}

	/* Mobile Menu Styling */
	.navmenu ul {
		background-color: rgba(17, 17, 17, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: #fff;
		padding: 15px 20px;
		font-size: 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.navmenu a:hover,
	.navmenu .active {
		color: #e74c3c;
		background: rgba(231, 76, 60, 0.1);
	}

	.navmenu li:last-child a {
		border-bottom: none;
	}

	.mobile-nav-active .navmenu {
		background: rgba(0, 0, 0, 0.95);
	}
}
