/*******************************************************
    Template Name    : Rocket - IT Solution & Business Services Powerful HTML5 Landing Page Template
    Author           : Elegant Theme
    Version          : 1.0
    Created          : 2024
    File Description : Main css file of the template
********************************************************/

/**************************************
    -- Css Table of Content
    01.Generale Css
    02.Preloader Section Css
    03.Navber Section Css
    04.Home Section Css
    05.About Section Css
    06.Services Section Css
    07.Counter Section Css
    08.Portfolio Section Css
    09.Team Section Css
    10.Testimonials Section Css
    11.Faq Section Css
    12.Hire Section Css
    13.Blog Section Css
    14.Partner Logo Section Css
    15.Contact Section Css
    16.Footer Section Css
 *************************************/


/**************************************
 * 00. Dark Theme Palette (variables)
 **************************************/
:root {
	--bg-primary: #0B0F0D;
	--bg-secondary: #111814;
	--card-bg: #17211B;
	--border: #2A382F;
	--green: #31C77A;
	--green-hover: #24A963;
	--green-soft: #89E8B7;
	--text-primary: #F3F7F4;
	--text-secondary: #A7B3AB;
	--text-muted: #6F7C73;
	--btn-primary-text: #07110B;
	--gradient-green: linear-gradient(135deg, #31C77A 0%, #1D8F58 100%);
}

/**************************************
 * 01. Generale Css
 **************************************/
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
	background: var(--bg-primary) !important;
	color: var(--text-primary);
	font-family: 'Ubuntu', sans-serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 26px;
	overflow-x: hidden;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 0.5px;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-weight: normal;
	color: var(--text-primary);
	line-height: 1.5;
}
a {
	color: var(--green);
	text-decoration: none !important;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
img {
	max-width: 100%;
}
a:hover {
	color: var(--green);
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
a:hover,
a:focus {
	color: var(--green);
	text-decoration: none;
}
p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: var(--text-secondary);
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.5px;
	font-family: 'Ubuntu', sans-serif;
}
.z-index {
	z-index: 9;
}
.position-relative {
	position: relative!important;
}
.form-control:focus {
	box-shadow: none;
	outline: 0 none;
	border-bottom: 1px solid var(--green);
}
.btn:focus {
	outline: none !important;
	box-shadow: none;
}
button:focus {
	outline: 0 none;
	box-shadow: none;
}
.button:focus {
	outline: none;
	box-shadow: none;
}
/* Botón secundario: fondo transparente, borde sutil, se ilumina en verde al hover/focus */
.button {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 10px 30px;
	text-align: center;
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: 0.7px;
	font-weight: 700;
	border: 2px solid var(--border);
	border-radius: 30px;
	color: var(--text-primary);
	background: transparent;
	cursor: pointer;
	margin-top: 25px;
	transition: all .3s ease;
}
.button:hover,
.button:focus-visible {
	border-color: var(--green);
	color: var(--green);
	outline: none;
}

/* Botón principal: fondo verde sólido, texto oscuro para máximo contraste */
.button-two {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 10px 30px;
	text-align: center;
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: 0.7px;
	font-weight: 700;
	border: 2px solid var(--green);
	border-radius: 30px;
	color: var(--btn-primary-text);
	background: var(--green);
	cursor: pointer;
	margin-top: 25px;
	transition: all .3s ease;
}
.button-two:hover,
.button-two:focus-visible {
	background: var(--green-hover);
	border-color: var(--green-hover);
	color: var(--btn-primary-text);
	outline: none;
}

.bg-grey {
	background-color: var(--bg-secondary);
}

.bg-gradient {
	background-color: transparent;
	background-image: var(--gradient-green);
}

.bg-none {
	background: none !important;
}
.color-text {
	color: var(--green);
}
dl,
ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mr-15 {
	margin-right: 15px;
}
.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}
.bg-fixed {
	background-attachment: fixed;
}
.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}
.section-padding {
	padding: 100px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 75px;
}
.section-title h5,
.sub-title {
	color: var(--green);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}
.section-title h2 {
	color: var(--text-secondary);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: capitalize;
}
.display-table {
	width: 100%;
	height: 100%;
	display: table;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.mr-0 {
	margin: 0;
}
.mr-top-50 {
	margin-top: 50px;
}
.back-to-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	color: var(--text-primary);
	background: var(--green);
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
}
.back-to-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--green);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.back-to-top:hover:before,
.back-to-top:focus:before {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
	color: var(--text-primary);
}
.back-to-top.active {
	top: 97%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}
.back-to-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 20px;
}
.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* [ Start Overlay ] */

[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
[data-overlay-dark]:before {
	background: var(--bg-primary);
}
[data-overlay-light]:before {
	background: var(--bg-secondary);
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
	color: var(--text-primary);
}
[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
	color: var(--text-secondary);
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: .1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: .2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: .3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: .4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: .5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: .6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: .7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: .8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
	opacity: .9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}
/* [ End Overlay ] */

/* owl theme */

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
	width: 7px;
	height: 7px;
	margin: 5px 5px;
	background-color: var(--border);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 5px;
	transition: .3s;
	border: 2px solid transparent;
}
.owl-theme .owl-dots .owl-dot.active span {
	background-color: var(--green) !important;
	width: 7px;
	height: 7px;
	transition: .3s;
	-webkit-box-shadow: 0 1px 5px var(--green);
	box-shadow: 0 1px 5px var(--green);
}
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: transparent;
	border: 2px solid var(--green);
	transition: .3s;
}

/**************************************
 * 02.Preloader Section Css
 **************************************/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-primary);
	z-index: 999999;
}
.preloader .preloader-inner {
	width: 100px;
	height: 100px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.preloader .preloader-inner span {
	position: absolute;
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-color: var(--green) !important;
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite;
}
.preloader .preloader-inner span:last-child {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
@keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}
@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/**************************************
 * 03.Navber Section Css
 **************************************/
.navbar-b {
	transition: all .5s ease-in-out;
	background-color: transparent;
	padding-top: 1.463rem;
	padding-bottom: 1.463rem;
}
.navbar-b.navbar-reduce {
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
	position: relative;
	padding-right: 10px;
	padding-left: 0;
}
.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
	color: var(--text-primary);
	text-transform: capitalize;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	font-family: 'Ubuntu', sans-serif;
}
.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
	color: var(--green);
}
.navbar-b.navbar-trans .nav-link:hover {
	color: var(--text-primary);
}
.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
	color: var(--text-primary);
}
.navbar-b.navbar-reduce {
	transition: all .5s ease-in-out;
	background-color: var(--bg-secondary);
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.navbar-b.navbar-reduce .nav-link {
	color: var(--text-secondary);
}
.navbar-b.navbar-reduce .nav-link:hover {
	color: var(--green);
}
.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
	color: var(--green);
	background: var(--bg-secondary);
    border-radius: 3px;
}
.navbar-b.navbar-reduce .navbar-brand {
	color: var(--text-secondary);
}
.navbar-b.navbar-reduce .navbar-toggler span {
	background-color: var(--text-primary);
}
.navbar-b .navbar-brand {
	color: var(--text-primary);
	font-size: 1.6rem;
	font-weight: 700;
}
.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	visibility: visible !important;
}
.navbar-b .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}
.navbar-b .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item:hover {
	background-color: var(--green);
	color: var(--text-primary);
	transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item.active {
	background-color: var(--green);
}
.navbar-toggler {
	position: relative;
	
}
.navbar-toggler:focus,
.navbar-toggler:active {
	outline: 0;
	box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: var(--text-primary);
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}
.navbar-b .black-logo,
.navbar-b.navbar-reduce .navbar-brand .black-logo,
.navbar-area.is-sticky .navbar-brand .black-logo {
	display: none !important;
}
.navbar-b.navbar-reduce .navbar-brand .white-logo,
.navbar-area.is-sticky .navbar-brand .white-logo {
	display: block !important;
}
.navbar-area {
	position: absolute;
	z-index: 999;
	left: 0;
	width: 100%;
	height: auto;
	background-color: transparent;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	background: var(--bg-secondary) !important;
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-area.is-sticky .navbar-nav .nav-item a {
	color: var(--text-secondary);
}

/*
.navbar-area.is-sticky .navbar-nav .nav-item a:hover,
.navbar-area.is-sticky .navbar-nav .nav-item a:focus,
.navbar-area.is-sticky .navbar-nav .nav-item a.active {
	color: var(--green);
	background: var(--bg-secondary);
    border-radius: 3px;
}
*/

/*
.navbar-area.is-sticky .navbar-toggler span {
    display: block;
    background-color: var(--card-bg);
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 0;
    opacity: 1;
}
*/

/**************************************
 * 04.Home Section Css
 **************************************/

.home-area {
	position: relative;
	z-index: 1;
	height: 700px;
	min-height: 100vh;	
	
	padding-top: 170px;
	padding-bottom: 50px;
}


/* nuevo para lazy*/

/* Agregar una clase adicional para el lazy loading */
.lazy-bg {
    background-image: none; /* Eliminar la imagen de fondo inicialmente */
}

/* Establecer la imagen de fondo cuando se carga */
.lazy-bg.loaded {
    background: url(../img/home-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* fin nuevo para lazy*/




.home-area::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.55;
	background-color: var(--bg-primary);
}

#particles-js {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
}

.hero-equal-height {
	position: relative;
	width: 100%;
	height: 750px;
	min-height: 100vh;
	-js-display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.home-area .home-content {
	padding-top: 100px;
    text-align: center;
}
.home-area .home-content h3 {
    color: var(--text-primary);
	font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.home-area .home-content h3.hero-tagline {
	text-transform: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 22px;
	letter-spacing: 0.2px;
}
.hero-tagline-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.hero-tagline-item i {
	color: var(--green);
	font-size: 24px;
}

.home-area .home-content h1 {
	color: var(--text-primary);
	font-size: 45px;
    font-weight: 800;
	margin: 48px 0 18px;
}
.hero-typewriter-cursor {
	display: inline-block;
	width: 3px;
	height: 0.85em;
	margin-left: 3px;
	vertical-align: -0.1em;
	background: currentColor;
	opacity: 0;
}
.hero-typewriter-cursor.is-blinking {
	opacity: 1;
	animation: hero-typewriter-blink 1s steps(1, start) infinite;
}
.hero-typewriter-cursor.is-hidden {
	opacity: 0;
	transition: opacity 0.6s ease;
}
@keyframes hero-typewriter-blink {
	0%, 49% { opacity: 1; }
	50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-typewriter-cursor {
		display: none !important;
	}
}
.home-area .home-content p {
	font-size: 15px;
	color: var(--text-primary);
}
.home-button-box {
    margin-top: 8px;
}

.button-two.home-btn-1 {
	margin-right: 15px;
}

/**************************************
 * 05.About Section Css
 **************************************/
.about-area {
	position: relative;
	z-index: 1;
}
.about-area .bg-shape {
	background-image: url(../img/bg-shape-1.png);
	background-repeat: no-repeat;
	background-position: right center;
	position: absolute;
	width: 700px;
	height: 705px;
	background-size: 80%;
	top: 15px;
	right: 0;
	z-index: -1;
}

.about-content h2 {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 15px;
}
.about-content h3 {
	color: var(--text-secondary);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.about-content p {
	margin-bottom: 15px;
}
.about-content .button {
	margin-top: 10px;
}
.about-image-wrapper {
	position: relative;
	text-align: center;
}
.about-image-wrapper img {
	border-radius: 3px;
}
.about-banner-1 img {
	position: absolute;
	left: 0px;
	top: -70px;
	width: 200px;
	z-index: -1;
	opacity: .7;
}
.about-main-banner {
	position: relative;
}
.about-main-banner img {
	border-radius: 3px;
	max-width: 480px;
	margin: 0 auto;
}
.about-banner-2 img {
	right: 0px;
	left: auto;
	position: absolute;
	top: 75%;
	width: 240px;
	z-index: 2;
}
.about-main-banner .video-btn {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	height: 55px;
	width: 55px;
	line-height: 55px;
	border-radius: 50%;
	display: block;
	color: var(--text-primary);
	background: transparent;
	margin: auto;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.iq-video.video-btn i {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 67px;
	color: var(--text-primary);
}
.about-main-banner .video-btn {
	border-radius: 50%;
	display: block;
	-webkit-animation: ripple-white 1s linear infinite;
	animation: ripple-white 1s linear infinite;
	-webkit-transition: .5s;
}

/* Rediseño "Acerca de Duoseptem" (solo index.html, clases nuevas para no afectar el bloque legado de blog.html) */
.about-text {
	max-width: 520px;
}
.about-text .sub-title {
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.about-text h2 {
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.3px;
	margin-bottom: 22px;
	max-width: 480px;
}
.about-text p {
	max-width: 46ch;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.1px;
	color: var(--text-secondary);
}
.about-text .button {
	padding: 13px 32px;
}
@media (min-width: 992px) {
	.about-text {
		padding-right: 30px;
	}
}

.about-visual {
	position: relative;
	max-width: 520px;
	margin: 0 auto;
}
.about-visual-decor {
	position: absolute;
	inset: -20px;
	z-index: 0;
	border-radius: 24px;
	background:
		radial-gradient(circle at 20% 15%, rgba(49, 199, 122, 0.18), transparent 55%),
		repeating-linear-gradient(0deg, rgba(42, 56, 47, 0.55) 0, rgba(42, 56, 47, 0.55) 1px, transparent 1px, transparent 36px),
		repeating-linear-gradient(90deg, rgba(42, 56, 47, 0.55) 0, rgba(42, 56, 47, 0.55) 1px, transparent 1px, transparent 36px);
	-webkit-mask-image: radial-gradient(circle at 50% 35%, #000 35%, transparent 72%);
	mask-image: radial-gradient(circle at 50% 35%, #000 35%, transparent 72%);
	pointer-events: none;
}
.about-visual-main,
.about-visual-thumb {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--card-bg);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.about-visual-main {
	border-radius: 18px;
	aspect-ratio: 4 / 3;
}
.about-visual-secondary {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.about-visual-thumb {
	flex: 1 1 0;
	border-radius: 14px;
	aspect-ratio: 1 / 1;
}
.about-visual-main img,
.about-visual-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 991px) {
	.about-visual {
		margin-top: 40px;
	}
}
@media (max-width: 575px) {
	.about-visual-decor {
		inset: -10px;
	}
	.about-visual-secondary {
		gap: 14px;
	}
}
@-webkit-keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}
@keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}
.animation-bounce {
	-webkit-animation: bounce 3s infinite ease-in-out;
	-o-animation: bounce 3s infinite ease-in-out;
	-ms-animation: bounce 3s infinite ease-in-out;
	-moz-animation: bounce 3s infinite ease-in-out;
	animation: bounce 3s infinite ease-in-out;
}
@-webkit-keyframes bounce {
	0% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(15px);
	}
	100% {
		transform: translateY(-5px);
	}
}
@keyframes bounce {
	0% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(15px);
	}
	100% {
		transform: translateY(-5px);
	}
}

/**************************************
 * 06.Service Section Css
 **************************************/
.single-services-item {
	padding: 45px 30px;
	text-align: center;
	border-radius: 5px;
	margin-top: 30px;
	background-color: var(--card-bg);
	color: var(--text-primary);
	border-top: 3px solid var(--green);
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	transition: all 0.4s ease 0s;
}
.services-icon {
	text-align: center;
	margin-bottom: 20px;
}
.services-icon i {
	font-size: 40px;
	color: var(--green);
	transition: all 0.6s;
}
.single-services-item:hover .services-icon i {
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(380deg);
}
.services-info h6 {
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: capitalize;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.services-info p {
	color: var(--text-primary);
	-webkit-transition: all .4s;
	transition: all .4s;
}

/**************************************
 * 06b.Products Section Css
 **************************************/
.products-area .product-block {
	margin-bottom: 90px;
}
.products-area .product-block:last-child {
	margin-bottom: 0;
}
.product-content h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin: 8px 0 15px;
}
.product-content p {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 480px;
	margin-bottom: 10px;
}
.product-visual {
	background-color: var(--card-bg);
	border-top: 3px solid var(--green);
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
}
.product-visual-icon {
	margin-bottom: 20px;
}
.product-visual-icon i {
	font-size: 40px;
	color: var(--green);
}
.product-modules {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.product-modules li {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-secondary);
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 30px;
	border: 1px solid var(--border);
	transition: transform .3s ease, border-color .3s ease;
}
.product-modules li:hover {
	transform: translateY(-3px);
	border-color: var(--green);
}
.product-modules li i {
	color: var(--green);
	font-size: 16px;
}
@media (max-width: 991px) {
	.products-area .product-block > [class*="col-lg-6"]:not(:last-child) {
		margin-bottom: 30px;
	}
}

/**************************************
 * 07.Counter Section Css
 **************************************/
.counter-area {
	position: relative;
	z-index: 1;
	text-align: center;
	background: url(../img/banner-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.counter-area::after {
	position: absolute;
	z-index: -1;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .7;
	background: var(--bg-primary);
}
.counter-area .section-title h5 {
	color: var(--text-primary);
}
.counter-area .section-title h2 {
	color: var(--text-primary);
}
.counter-contents h2 {
	color: var(--text-primary);
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 5px;
	word-spacing: -10px;
}
.counter-contents h3 {
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
}

/**************************************
 * 08.Portfolio Section Css
 **************************************/
.project-area {
	position: relative;
}

.project-area .project-list {
	text-align: center;
	margin-bottom: 20px;
}

.project-area .project-list .nav {
	display: inline-block;
	margin: 0;
	position: relative;
}

.project-area .project-list .nav li {
	display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 5px;
    padding: 12px 30px;
    background-color: var(--card-bg);
    cursor: pointer;
    border-radius: 3px;
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.project-area .project-list .nav li:hover, .project-area .project-list .nav li.filter-active {
    color: var(--btn-primary-text);
    background-color: var(--green);
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.project-area .project-container {
	display: inline-block;
	width: 100%;
}

.project-area .project-grid-item {
	overflow: hidden;
}

.project-grid-item img {
	width: 100%;
	border-radius: 5%;
}

.project-item {
	position: relative;
	display: block;
	overflow: hidden;
    border-radius: 3px;
	margin-top: 30px;
}

/* ===============================
   PROJECT GRID – HOVER OVERLAY
   =============================== */

.project-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* Imagen */
.project-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Overlay base (tu estructura, respetada) */
.project-item .project-img-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 18px;

  opacity: 0;
  transform: scale(0.96);
  transition: all 0.35s ease;
}

/* Hover */
.project-item:hover .project-img-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Contenido interno */
.project-content {
  width: 100%;
  height: 100%;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Texto */
.project-content .info p {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.project-content .info h6 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}

/* Icono */
.project-content .icon {
  color: var(--text-primary);
  font-size: 22px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.project-item:hover .project-content .icon {
  transform: scale(1.1);
}

.project-more-btn {
	margin-top: 30px;
}

.project-item .project-img-overlay .project-content .info a p {
  color: var(--green) !important; /* usa tu verde */
  font-weight: 500;
  font-size: 18px;
}


.project-item .project-img-overlay .project-content .info h6 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
}




/**************************************
 * 09.Team Section Css
 **************************************/
.team-area {
}

.team-area .section-title {
	margin-bottom: 35px;
}
.single-team-box {
	margin-top: 30px;
	border-radius: 3px;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-image {
	position: relative;
	z-index: 1;
}
.single-team-box .team-image img {
	width: 100%;
	height: auto;
}
.team-info {
	padding: 20px 15px 30px;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
.team-info span {
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
	display: block;
}
.team-social-icon {
	display: block;
	margin-top: 15px;
}
.single-team-box .team-social-icon a {
	position: relative;
	z-index: 1;
	color: inherit;
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	margin: 0 5px;
	display: inline-block;
	vertical-align: middle;
	background: transparent;
}
.single-team-box .team-social-icon a:after {
	top: 0px;
	left: 0px;
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	background: inherit;
	border-radius: inherit;
}
.single-team-box .team-social-icon a:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.single-team-box .team-social-icon a:hover i:before {
	color: var(--text-primary);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}
.social-color-1:hover:after {
	background-color: #3b5998 !important;
}
.social-color-2:hover:after {
	background-color: #00acee !important;
}
.social-color-3:hover:after {
	background-color: #0e76a8 !important;
}
.social-color-1 {
	color: #3b5998 !important;
	background-color: transparent;
	border: 1px dashed #3b5998;
}
.social-color-2 {
	color: #00acee !important;
	background-color: transparent;
	border: 1px dashed #00acee;
}
.social-color-3 {
	color: #0e76a8 !important;
	background-color: transparent;
	border: 1px dashed #0e76a8;
}
.mt-70 {
	margin-top: 70px !important;
}

/**************************************
 * 10.Testimonial Section Css
 **************************************/
.testimonial-area {
	text-align: center;
}

.testimonial-gradient-area .section-title h2 {
	font-weight: 700;
	color: var(--text-primary);
}
.single-testimonial {
	position: relative;
	background-color: var(--card-bg);
	padding: 40px 15px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35) !important;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35) !important;
	margin: 10px;
}
.rating-box ul li {
	display: inline-block;
}
.rating-box ul li i {
	color: #ffce39;
	font-size: 18px;
}
.testimonial-content {
	margin-top: 15px;
	margin-bottom: 25px;
}
.testimonial-content p {
	font-size: 14px;
	font-style: italic;
}
.single-testimonial .testimonial-bio {} .single-testimonial .testimonial-bio .avatar img {
	border-radius: 50%;
	border-left: 3px solid var(--green);
	border-bottom: 3px solid var(--green);
	width: 85px;
	margin: 0 auto;
	padding: 3px;
}
.single-testimonial .testimonial-bio .bio-info {
	text-align: center;
	margin-top: 15px;
}
.single-testimonial .testimonial-bio .bio-info .name {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-top: 0;
	margin-bottom: 2px;
}
.single-testimonial .testimonial-bio .bio-info span {
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
	display: block;
}
/* Testimonios nuevos (Luis Flores, Mario Valdez): modificador aditivo, no altera .single-testimonial existente */
.single-testimonial-featured {
	border: 1px solid var(--border);
	border-radius: 14px;
	text-align: left;
	padding: 30px 26px;
}
.single-testimonial-featured .testi-content-inner {
	position: relative;
}
.single-testimonial-featured .testimonial-quote-icon {
	color: var(--green);
	font-size: 20px;
	opacity: 0.6;
	display: block;
	margin-bottom: 10px;
}
.single-testimonial-featured .rating-box {
	text-align: left;
}
.single-testimonial-featured .testimonial-content p {
	font-style: normal;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-primary);
}
.single-testimonial-featured .testimonial-bio {
	display: flex;
	align-items: center;
	gap: 14px;
	text-align: left;
	margin-top: 20px;
}
.single-testimonial-featured .avatar {
	flex-shrink: 0;
}
.single-testimonial-featured .bio-info {
	text-align: left;
	margin-top: 0;
}
.single-testimonial-featured .bio-info .name {
	margin-bottom: 4px;
}
.single-testimonial-featured .testimonial-tag {
	display: inline-block;
	margin-top: 6px;
	padding: 2px 12px;
	border: 1px solid var(--green);
	border-radius: 20px;
	color: var(--green);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

/* Estandarizar el alto de las tarjetas visibles en cada fila del carrusel */
#testimonial-slide.owl-carousel .owl-stage {
	display: flex;
}
#testimonial-slide.owl-carousel .owl-item {
	display: flex;
	height: auto;
}
#testimonial-slide .single-testimonial {
	width: 100%;
	display: flex;
	flex-direction: column;
}
#testimonial-slide .single-testimonial .testi-content-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
}
#testimonial-slide .single-testimonial .testimonial-content {
	flex: 1;
}
#testimonial-slide .single-testimonial .testimonial-bio {
	margin-top: 20px;
}

/* Ondeado sutil de banderas (avatares circulares existentes + emoji de las tarjetas nuevas) */
@keyframes flag-wave {
	0%, 100% {
		transform: perspective(300px) rotateY(0deg) scaleX(1) translateY(0);
	}
	25% {
		transform: perspective(300px) rotateY(7deg) scaleX(0.985) translateY(-1px);
	}
	50% {
		transform: perspective(300px) rotateY(0deg) scaleX(1.015) translateY(0);
	}
	75% {
		transform: perspective(300px) rotateY(-7deg) scaleX(0.985) translateY(1px);
	}
}
.single-testimonial .testimonial-bio .avatar img {
	animation: flag-wave 4s ease-in-out infinite;
	transform-style: preserve-3d;
	will-change: transform;
}
.single-testimonial:hover .testimonial-bio .avatar img {
	animation-duration: 2.5s;
}
.single-testimonial .testimonial-bio .avatar {
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}
.single-testimonial .testimonial-bio .avatar::after {
	content: "";
	position: absolute;
	top: -25%;
	left: -60%;
	width: 14%;
	height: 150%;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.45) 55%, transparent 100%);
	transform: rotate(8deg);
	animation: flag-shine 4s ease-in-out infinite;
	pointer-events: none;
}
@keyframes flag-shine {
	0% {
		left: -60%;
	}
	40% {
		left: 130%;
	}
	100% {
		left: 130%;
	}
}
.single-testimonial:hover .testimonial-bio .avatar::after {
	animation-duration: 2.5s;
}
@media (prefers-reduced-motion: reduce) {
	.single-testimonial .testimonial-bio .avatar img,
	.single-testimonial .testimonial-bio .avatar::after {
		animation: none;
	}
}

.testimonial-area .owl-theme .owl-nav.disabled+.owl-dots {
	position: unset;
	right: 0;
	top: 50%;
	transform: none;
	margin-top: 20px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
	background-color: var(--border);
}
.slider-bg-grey .owl-theme .owl-dots .owl-dot span {
	background-color: var(--border);
}

/**************************************
 * 11.Faq Section Css
 **************************************/
.faq-area {
	background: var(--bg-secondary);
}
.faq-area .faq-item .accordion .accordion-item {
	margin-bottom: 20px;
}
.faq-area .faq-item .accordion .accordion-item:last-child {
	margin-bottom: 0px;
}
.faq-area .faq-item .accordion .title {
	padding: 15px 12px;
	background-color: var(--bg-secondary);
	border-radius: 5px;
	cursor: pointer;
	border-left: 3px solid var(--green);
	position: relative;
	-webkit-transition: all .4s;
	transition: all .4s;
	border-bottom: 1px solid var(--border);
}
.faq-area .faq-item .accordion .title:after {
	content: '\f067';
	font-family: 'Ubuntu';
	font-weight: 400;
	font-size: 12px;
	position: absolute;
	right: 10px;
	color: var(--text-secondary);
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.faq-area .faq-item .accordion .title h6 {
	font-size: 16px;
	font-weight: 700;
	padding-right: 20px;
}
.faq-area .faq-item .accordion .title h6 span {
	color: var(--text-secondary);
}
.faq-area .faq-item .accordion .active .title h6 span {
	color: var(--text-primary);
}
.faq-area .faq-item .accordion .accordion-info {
	display: none;
	padding: 20px 15px;
	margin-top: 10px;
	margin-left: 0;
	background: transparent;
	border-radius: 0;
}
.faq-area .faq-item .accordion .accordion-info p {
	font-size: 14px;
}
.faq-area .faq-item .accordion .active {
	display: block;
}
.faq-area .faq-item .accordion .active .title {
	color: var(--text-primary);
	background: var(--green);
}
.faq-area .faq-item .accordion .active .title:after {
	content: '\f068';
	color: var(--text-primary);
}
.faq-area .faq-item .accordion .active .title h6 {
	color: var(--text-primary);
}

/**************************************
 * 12. Hire Section Css
 **************************************/
.hire-area {
	position: relative;
	z-index: 1;
	text-align: center;
	background-image: url(../img/banner-bg.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hire-area::after {
	position: absolute;
	z-index: -1;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .6;
	background: var(--bg-primary);
}
.hire-container {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
}
.hire-content h5 {
	color: var(--text-primary);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.hire-content h2 {
	color: var(--text-primary);
	font-size: 38px;
	font-weight: 700;
	text-transform: capitalize;
}
.hire-content .button {
	color: var(--text-primary);
}

/**************************************
 * 13. Blog Section Css
 **************************************/
.blog-area {
	text-align: center;
}
.blog-area .section-title {
	text-align: center;
    margin-bottom: 35px;
}
.blog-area .single-blog {
	position: relative;
	background: var(--card-bg);
	border-radius: 5px;
    margin-top: 30px;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.blog-area .post-img {
	position: relative;
	overflow: hidden;
}
.blog-area .single-blog img {
	-webkit-transition: all .5s;
	transition: all .5s;
}
.blog-area .single-blog:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: rotate(3deg) scale(1.1, 1.1);
	-ms-transform: rotate(3deg) scale(1.1, 1.1);
	transform: rotate(3deg) scale(1.1, 1.1);
}
.single-blog .blog-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--green);
	color: var(--text-primary);
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	z-index: 2;
	text-transform: uppercase;
}
.single-blog .blog-tag a {
	color: var(--text-primary);
	font-size: 12px;
	padding: 5px 10px;
	font-weight: 700;
	display: block;
}
.blog-area .single-blog .blog-text {
	padding: 30px 25px;
	text-align: left;
}
.blog-category {
	margin-bottom: 15px;
}
.blog-area .single-blog .blog-type {
	font-weight: 700;
	color: var(--green);
	font-size: 14px;
	display: inline-block;
}
.blog-area .single-blog .blog-type:hover {
	color: var(--green);
	text-decoration: underline !important;
}
.blog-area .single-blog .blog-text h5 a {
	color: var(--text-secondary);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	display: block;
}
.blog-area .single-blog .blog-text h5 a:hover {
	color: var(--green);
	text-decoration: underline !important;
}
.blog-bottom-text-link {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.blog-bottom-text-link span {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 700;
}
.single-blog .blog-text .blog-bottom-text-link a {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 5px;
	display: block;
}
.single-blog .blog-text .blog-bottom-text-link a:hover {
	color: var(--green);
	text-decoration: underline !important;
}
.blog-more-btn {
	text-align: center;
	margin-top: 20px;
}

/**************************************
 * 14.Partner Logo Section Css
 **************************************/
.partner-area .section-title {
    margin-bottom: 60px;
}
.partner-single-item {
	background: var(--bg-secondary);
    padding: 5px 20px;
	border-radius: 5px;
    -webkit-box-shadow: 0 0.3em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
	box-shadow: 0 0.3em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
    margin: 15px 15px;
}
.partner-single-item img {
	margin: 0 auto;
}

/**************************************
 * 15. Contact Section Css
 **************************************/
.contact-info {
	padding-left: 15px;
	margin-top: 20px;
}
.contact-info ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}
.contact-info ul li {
	color: var(--text-secondary);
	padding: 30px 30px;
	border-radius: 5px;
	margin-bottom: 15px;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.35);
}
.contact-info ul li h6 {
	display: block;
	margin-bottom: 3px;
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
}
.contact-info ul li p {
	color: var(--text-secondary);
	font-weight: 400;
}
.contact-info ul li a {
	color: var(--text-secondary);
	display: block;
	text-decoration: underline !important;
}
.contact-area .form input,
.contact-area .form textarea {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid var(--border);
	background-color: var(--bg-secondary);
	font-weight: 500;
	border-radius: 5px;
	border-left: 3px solid var(--green);
	transition: border-color .3s ease, box-shadow .3s ease;
}
.contact-area .form textarea {
	max-height: 120px;
	max-width: 100%;
}
.contact-area .form input:focus,
.contact-area .form textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(49, 199, 122, 0.25);
}
.contact-area .form input::placeholder,
.contact-area .form textarea::placeholder {
	color: var(--text-muted);
}
#contact-form .button {
	margin: 0;
}
.form-group {
	margin-bottom: 25px;
}
button,
input,
textarea {
	color: var(--text-secondary);
}
button,
input,
textarea {
	outline: none;
}
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}
.contact-area .form-message.success {
	background: var(--green);
	color: var(--btn-primary-text);
	padding: 10px 15px;
	border-radius: 3px;
}
.contact-area .form-message.error {
	background: #E5484D;
	color: var(--text-primary);
	padding: 10px 15px;
	border-radius: 3px;
}
/* Mensajes de resultado del formulario de contacto (Bootstrap alert) */
.alert-success {
	background-color: var(--card-bg) !important;
	border: 1px solid var(--green) !important;
	color: var(--green-soft) !important;
}
.alert-danger {
	background-color: var(--card-bg) !important;
	border: 1px solid #E5484D !important;
	color: #F3A7AA !important;
}

/**************************************
 * 15.1 Home Contact Redesign
 * (exclusivo de #contact en index.html — no afecta el resto de páginas
 * que reutilizan .contact-area / .contact-info / #contact-form)
 **************************************/
.home-contact-area .section-title {
	margin-bottom: 45px;
}
.home-contact-area .section-title h6 {
	color: var(--green);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}
.home-contact-area .section-title h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 18px;
	color: var(--text-primary);
}
.home-contact-area .section-title h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 3px;
	transform: translateX(-50%);
	background: var(--green);
	border-radius: 3px;
}

.home-contact-panel {
	display: grid;
	grid-template-columns: 58fr 42fr;
	align-items: stretch;
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* -------- Formulario -------- */
.home-contact-form-col {
	display: flex;
	flex-direction: column;
}
.home-contact-fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.home-contact-area .form-group {
	margin-bottom: 0;
}
.home-form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.home-contact-area .home-contact-form-col .form input,
.home-contact-area .home-contact-form-col .form textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background-color: var(--card-bg);
	color: var(--text-primary);
	font-weight: 500;
	transition: border-color .3s ease, box-shadow .3s ease;
}
.home-contact-area .home-contact-form-col .form textarea {
	min-height: 130px;
	max-width: 100%;
	resize: vertical;
}
.home-contact-form-col .form input::placeholder,
.home-contact-form-col .form textarea::placeholder {
	color: var(--text-muted);
}
.home-contact-area .home-contact-form-col .form input:focus,
.home-contact-area .home-contact-form-col .form textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(49, 199, 122, 0.2);
	outline: none;
}

.home-contact-fields .button-two {
	align-self: flex-start;
}

.home-contact-alerts {
	margin-top: 18px;
}

/* -------- Columna derecha: info + mapa -------- */
.home-contact-right-col {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* -------- Tarjeta de información -------- */
.home-contact-info-col {
	padding: 36px 32px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
}
.home-contact-logo {
	max-width: 130px;
	margin-bottom: 22px;
}
.home-contact-info-title {
	color: var(--text-primary);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
}
.home-contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}
.home-contact-info-list[hidden] {
	display: none;
}
.home-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.home-contact-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--border);
	color: var(--green);
	font-size: 13px;
}
.home-contact-info-item p {
	color: var(--text-secondary);
	margin: 0;
	padding-top: 7px;
}
.home-contact-info-item .contact-info-link {
	color: var(--text-secondary);
	padding-top: 7px;
	display: inline-block;
	text-decoration: none;
	transition: color .2s ease;
}
.home-contact-info-item .contact-info-link:hover {
	color: var(--green);
	text-decoration: underline;
}
.home-contact-whatsapp {
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 20px;
	border-radius: 30px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--green);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background-color .3s ease, border-color .3s ease;
}
.home-contact-whatsapp:hover {
	background: rgba(49, 199, 122, 0.12);
	border-color: var(--green);
	color: var(--green-soft);
}

/* -------- Mapa interactivo de Sinaloa -------- */
.home-contact-map-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 26px 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.home-map-eyebrow {
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.home-map-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin-top: 8px;
}
.home-map-frame {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
}
.home-map-svg {
	width: 100%;
	height: 100%;
	display: block;
}
.home-map-parallax {
	transition: transform 0.35s ease-out;
}
.home-map-silhouette {
	fill: var(--bg-primary);
	stroke: var(--green);
	stroke-width: 1.4;
	stroke-opacity: 0.55;
	vector-effect: non-scaling-stroke;
}
.home-map-texture {
	opacity: 0.55;
	pointer-events: none;
}
.home-map-nodes circle {
	fill: var(--green-soft);
	opacity: 0.5;
}
.home-map-nodes line {
	stroke: var(--green);
	stroke-width: 0.6;
	stroke-opacity: 0.22;
	stroke-dasharray: 2 3;
	vector-effect: non-scaling-stroke;
}
.home-map-secondary-dot {
	fill: var(--text-muted);
	opacity: 0.55;
	cursor: default;
}
.home-map-marker-halo {
	fill: var(--green);
	opacity: 0.16;
	transform-origin: center;
	transform-box: fill-box;
	animation: home-map-pulse 2.6s ease-out infinite;
}
.home-map-marker-dot {
	fill: var(--green);
	stroke: var(--bg-primary);
	stroke-width: 2;
	transition: fill 0.2s ease;
}
.home-map-marker-label {
	fill: var(--text-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	user-select: none;
}
@keyframes home-map-pulse {
	0% { transform: scale(1); opacity: 0.5; }
	70% { transform: scale(2.6); opacity: 0; }
	100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.home-map-marker-halo {
		animation: none;
	}
	.home-map-parallax {
		transition: none;
	}
}

.home-map-corner-info {
	position: absolute;
	left: 4px;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 8px 12px;
	z-index: 4;
}
.home-map-corner-link {
	color: var(--text-secondary);
	font-size: 15px;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
	transition: color 0.2s ease;
}
.home-map-corner-link:hover {
	color: var(--green);
	text-decoration: underline;
}

.home-map-cta {
	align-self: flex-start;
	margin-bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 30px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-decoration: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.home-map-cta i {
	font-size: 11px;
}
.home-map-cta:hover,
.home-map-cta:focus-visible {
	background: rgba(49, 199, 122, 0.12);
	border-color: var(--green);
	color: var(--green-soft);
	outline: none;
}

/* En escritorio, la columna derecha (info + mapa) iguala exactamente
   la altura del formulario: la info conserva su alto natural y el
   mapa crece para ocupar el resto. */
@media (min-width: 992px) {
	.home-map-wrap {
		flex: 1 1 auto;
		aspect-ratio: auto;
		min-height: 0;
	}
}

/* -------- Responsive -------- */
@media (max-width: 991px) {
	.home-contact-panel {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 575px) {
	.home-contact-panel {
		padding: 20px;
		gap: 22px;
	}
	.home-contact-fields .button-two {
		align-self: stretch;
		width: 100%;
	}
	.home-contact-info-col {
		padding: 28px 22px;
	}
}

/**************************************
 * 16.Footer Section Css
 **************************************/
.footer-top-wrapper {
	background-color: var(--bg-secondary)
}

.footer-top-wrapper.section-padding {
  padding: 40px 0 30px;
}



.footer-bottom-wrapper {
	padding: 20px 0;
	background-color: var(--bg-secondary);
}
.footer-about .footer-logo {
	color: var(--text-primary);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
}
.footer-about p {
	color: var(--text-primary);
}
.pl-50 {
	padding-left: 50px;
}
.pr-50 {
	padding-right: 50px;
}
.footer-list h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 18px;
}
.footer-list ul li a {
	display: inline-block;
	color: var(--text-secondary);
	padding: 5px 0;
	font-weight: 600;
}
.footer-list ul li a:hover {
	color: var(--green);
}
.footer-social-icon {
	margin-top: 20px;
}
.footer-social-icon li {
	display: inline-block;
	margin-right: 10px;
}
.footer-social-icon li a {
	box-sizing: border-box;
	color: var(--text-primary);
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	display: block;
	border-radius: 30px;
	background-color: rgba(11, 15, 13, 0.92);
	border: 2px solid var(--green);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.footer-social-icon li a:hover {
	color: var(--green-soft);
	background: rgba(11, 15, 13, 0.96);
	border-color: var(--green-soft);
}
.footer-list .input-box {
	padding-top: 10px;
}
.footer-list .input-box input {
	width: 100%;
	line-height: 50px;
	background: var(--bg-secondary);
	border-radius: 30px;
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 600;
	border: 0;
	padding-left: 25px;
}
.footer-list .input-box input::-webkit-input-placeholder {
	/* Edge */
	color: var(--text-secondary);
}
.footer-list .input-box input:-ms-input-placeholder {
	/* Internet Explorer */
	color: var(--text-secondary);
}
.footer-list .input-box input::placeholder {
	color: var(--text-secondary);
}
.footer-list .input-box button {
	width: 100%;
	border: 0;
	margin-top: 20px;
	background: var(--green);
	color: var(--text-primary);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 48px;
	border-radius: 30px;
}
.footer-list .input-box button i {
	font-size: 14px;
	padding-left: 5px;
}
.footer-copyright-text p {
	color: var(--text-primary);
}

.icon-contact {
	justify-content: center;
	width: 80px;
	height: 80px;
}

.text-contact {
	font-size: 21px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 2px;
}


.carousel-caption {
	background: rgba(0, 0, 0, 0.9);
	color: white;
	top: auto;
    bottom: 70px;
	border-radius: 10px;

   }

   
   .carousel-inner {
	width: 100vw;
	height: 100vh;
}

.carousel-inner .carousel-item {
	width: 100%;
	height: 100%;
}

.carousel-inner .carousel-item img {
	margin-top: 10px;
	width: 95%;
	height: auto;
    display: block;
    margin: auto;	
	border-radius: 10px;
}


.carousel2-inner .carousel2-item {
	width: 100%;
	height: 100%;
}

.carousel2-inner .carousel2-item img {
	margin-top: 10px;
	width: 100%;
	height: auto;
    display: block;
    margin: auto;	
	border-radius: 10px;
}

.flechas {
	background-color: rgb(11, 67, 18);
	padding: 28px;
	border-radius: 30px;
}

.carousel-control-prev {
left: 1.2em;
}

.carousel-control-next {
right: 1.2em;
}


		  
		  
.btn-whatsapp {
	display: block;
	color: var(--text-primary);
	position: fixed;
	right: 30px;
	bottom: 110px;
	line-height: 80px;
	text-align: center;
	z-index: 999;
  }

/* Animación sutil del botón flotante de WhatsApp (página principal) */
.home-wa-fab {
	animation: home-wa-shake 6s ease-in-out infinite;
}
.home-wa-fab-link {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	line-height: 0;
	transition: transform 0.25s ease;
}
.home-wa-fab-link:hover,
.home-wa-fab-link:focus-visible {
	transform: scale(1.08);
}
.home-wa-fab-link img {
	position: relative;
	z-index: 1;
	display: block;
}
.home-wa-fab-shine {
	position: absolute;
	top: 0;
	left: -60%;
	width: 45%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	animation: home-wa-shine 6s ease-in-out infinite;
}
@keyframes home-wa-shake {
	0%, 8%, 100% { transform: translateX(0) rotate(0deg); }
	1% { transform: translateX(-3px) rotate(-8deg); }
	2% { transform: translateX(3px) rotate(8deg); }
	3% { transform: translateX(-2px) rotate(-6deg); }
	4% { transform: translateX(2px) rotate(6deg); }
	5% { transform: translateX(-1px) rotate(-3deg); }
	6% { transform: translateX(1px) rotate(3deg); }
	7% { transform: translateX(0) rotate(0deg); }
}
@keyframes home-wa-shine {
	0%, 12% { left: -60%; opacity: 0; }
	14% { opacity: 1; }
	26% { opacity: 1; left: 100%; }
	30%, 100% { left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.home-wa-fab {
		animation: none;
	}
	.home-wa-fab-shine {
		animation: none;
		opacity: 0;
	}
}


/* diseño del blog*/

/*=== MEDIA QUERY ===*/

html {
  overflow-x: hidden;
}



h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 42px;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  line-height: 30px;
}

.navbar-toggle .icon-bar {
  background: var(--green);
}

input[type="email"], input[type="password"], input[type="text"], input[type="tel"] {
  box-shadow: none;
  height: 45px;
  outline: none;
  font-size: 14px;
}

input[type="email"]:focus, input[type="password"]:focus, input[type="text"]:focus, input[type="tel"]:focus {
  box-shadow: none;
  border: 1px solid var(--green);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--green);
}

.py-7 {
  padding: 7rem 0px;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn:focus {
  outline: 0px;
  border: 0px;
  box-shadow: none;
}

.btn-main, .btn-transparent, .btn-small {
  background: var(--green);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.btn-main:hover, .btn-transparent:hover, .btn-small:hover {
  background: var(--green-hover);
  color: var(--text-primary);
}

.btn-solid-border {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--text-secondary);
}

.btn-solid-border:hover {
  border: 2px solid var(--green);
  background: var(--green);
}

.btn-transparent {
  background: transparent;
  padding: 0;
  color: var(--green);
}

.btn-transparent:hover {
  background: transparent;
  color: var(--green);
}

.btn-large {
  padding: 20px 45px;
}

.btn-large.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn-small {
  padding: 10px 25px;
  font-size: 12px;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

.bg-gray {
  background: var(--bg-secondary);
}

.bg-primary {
  background: var(--green);
}

.bg-primary-dark {
  background: var(--green-hover);
}

.bg-primary-darker {
  background: var(--green-hover);
}

.bg-dark {
  background: var(--card-bg);
}

.bg-gradient {
  background-image: linear-gradient(145deg, rgba(19, 177, 205, 0.95) 0%, rgba(152, 119, 234, 0.95) 100%);
  background-repeat: repeat-x;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title .title {
  font-size: 50px;
  line-height: 50px;
}

.section-title p {
  color: var(--text-secondary);
  font-family: "Poppins", sans-serif;
}

.subtitle {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 1px;
}

.overly, .page-title, .slider, .cta, .hero-img {
  position: relative;
}

.overly:before, .page-title:before, .slider:before, .cta:before, .hero-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: var(--bg-primary);
}

.overly-2, .bg-counter, .cta-block, .latest-blog {
  position: relative;
}

.overly-2:before, .bg-counter:before, .cta-block:before, .latest-blog:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.text-color {
  color: var(--green);
}

.text-black {
  color: var(--text-secondary);
}

.text-color2 {
  color: #c54041;
}

.text-color2 {
  color: #b99769;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.no-spacing {
  letter-spacing: 0px;
}

/* Links */
a {
  color: var(--text-secondary);
  text-decoration: none;
}

a:focus, a:hover {
  color: var(--green);
  text-decoration: none;
}

a:focus {
  outline: none;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}

.page-title {
  padding: 100px 0;
}

.page-title .block h1 {
  color: var(--text-primary);
}

.page-title .block p {
  color: var(--text-primary);
}

.page-wrapper {
  padding: 70px 0;
}

#wrapper-work {
  overflow: hidden;
  padding-top: 100px;
}

#wrapper-work ul li {
  width: 50%;
  float: left;
  position: relative;
}

#wrapper-work ul li img {
  width: 100%;
  height: 100%;
}

#wrapper-work ul li .items-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.6);
  padding-left: 44px;
  padding-top: 140px;
}

#wrapper-work ul li .items-text h2 {
  padding-bottom: 28px;
  padding-top: 75px;
  position: relative;
}

#wrapper-work ul li .items-text h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75px;
  height: 3px;
  background: var(--bg-secondary);
}

#wrapper-work ul li .items-text p {
  padding-top: 30px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 300;
  padding-right: 80px;
}

/*--
	features-work Start 
--*/
#features-work {
  padding-top: 50px;
  padding-bottom: 75px;
}

#features-work .block ul li {
  width: 19%;
  text-align: center;
  display: inline-block;
  padding: 40px 0px;
}

#navbar {
  background: var(--bg-secondary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#navbar li {
  padding-left: 15px;
}

#navbar .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  transition: all .25s ease;
}

#navbar .nav-link:hover, #navbar .nav-link:focus {
  color: var(--green);
}

#navbar .btn {
  padding: .5rem 1.5rem;
  color: var(--text-primary);
}

.header-top {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top .header-top-socials {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0px;
}

.header-top .header-top-socials a {
  color: var(--text-secondary);
  margin-right: 15px;
  font-size: 16px;
}

.header-top .header-top-info {
  color: var(--text-secondary);
  font-size: 16px;
}

.header-top .header-top-info a span {
  color: var(--text-primary);
}

.header-top .header-top-info a {
  margin-left: 35px;
  color: var(--text-secondary);
}

.navbar-brand {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--green);
}

.dropdown-menu {
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all .2s ease-in, visibility 0s linear .2s, -webkit-transform .2s linear;
  transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear;
  transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear, -webkit-transform .2s linear;
  -webkit-transition: all .2s ease-in, visibility 0s linear .2s, -webkit-transform .2s linear;
  -o-transition: all .2s ease-in, visibility 0s linear .2s, -o-transform .2s linear;
  -ms-transition: all .2s ease-in, visibility 0s linear .2s, -ms-transform .2s linear;
  width: 250px;
  margin-top: 15px;
  padding: 0px;
  border-radius: 0px;
  display: block;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  transition: all .45s ease 0s;
  opacity: 1;
}

.dropdown-item {
  padding: .8rem 1.5rem;
  text-transform: uppercase;
  font-size: 14px;
}

.dropdown-item:hover {
  background: var(--green);
  color: var(--text-primary);
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

.bg-1 {
  height: 240px;
  background: url("../../images/bg/home-2.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.bg-2 {
  background: url("../../images/bg/home-5.jpg");
  background-size: cover;
}

.slider {
  background: url("../../images/bg/home-1.jpg") no-repeat;
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0 280px 0;
  position: relative;
}

.slider .block h1 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 600;
  color: var(--text-primary);
}

.slider .block p {
  margin-bottom: 30px;
  color: #b9b9b9;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}

.slider .block span {
  letter-spacing: 1px;
}

.intro-item i {
  font-size: 60px;
  line-height: 60px;
}

.color-one {
  color: var(--green);
}

.color-two {
  color: #00d747;
}

.color-three {
  color: #9262ff;
}

.color-four {
  color: #088ed3;
}

.bg-about {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 45%;
  min-height: 650px;
  background: url("../images/about/home-8.jpg") no-repeat;
  background-size: cover;
}

.about-content {
  padding: 20px 0px 0px 80px;
}

.about-content h4 {
  font-weight: 600;
}

.about-content h4:before {
  position: absolute;
  content: "\f576";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  position: absolute;
  top: 8px;
  left: -65px;
  font-weight: 700;
}

.counter-item .counter-stat {
  font-size: 50px;
}

.counter-item p {
  margin-bottom: 0px;
}

.bg-counter {
  background: url("../images/bg/counter.jpg") no-repeat;
  background-size: cover;
}

.team-img-hover .team-social li a.facebook {
  background: #6666cc;
}

.team-img-hover .team-social li a.twitter {
  background: #3399cc;
}

.team-img-hover .team-social li a.instagram {
  background: #cc66cc;
}

.team-img-hover .team-social li a.linkedin {
  background: #3399cc;
}

.team-img-hover {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.team-img-hover li a {
  display: inline-block;
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-align: center;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.team-img-hover:hover li a:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.team-item:hover .team-img-hover {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.service-item {
  position: relative;
  padding-left: 80px;
}

.service-item i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 50px;
  opacity: .4;
}

.cta {
  background: url("../images/bg/home-3.jpg") fixed 50% 50%;
  background-size: cover;
  padding: 120px 0px;
}

.cta-block {
  background: url("../images/bg/home-3.jpg") no-repeat;
  background-size: cover;
}

.testimonial-item {
  padding: 50px 30px;
}

.testimonial-item i {
  font-size: 40px;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
}

.testimonial-item .testimonial-text {
  font-size: 20px;
  line-height: 38px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-item .testimonial-item-content {
  padding-left: 65px;
}

.slick-slide:focus, .slick-slide a {
  outline: none;
}

.hero-img {
  background: url("../images/bg/home-5.jpg");
  position: absolute;
  content: "";
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
}

.h70 {
  height: 55%;
}

.lh-45 {
  line-height: 45px;
}

.pricing-header h1 {
  font-size: 70px;
  font-weight: 300;
}

.pricing .btn-solid-border {
  border-color: var(--border);
}

.pricing .btn-solid-border:Hover {
  border-color: var(--green);
}

.portflio-item .portfolio-item-content {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transition: all .35s ease;
}

.portflio-item:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all .35s ease;
  overflow: hidden;
}

.portflio-item:hover:before {
  opacity: 1;
}

.portflio-item:hover .portfolio-item-content {
  opacity: 1;
  bottom: 20px;
  right: 30px;
}

.portflio-item .overlay-item {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--green);
  opacity: 0;
  transition: all .35s ease;
}

.portflio-item:hover .overlay-item {
  opacity: 1;
}

.contact-form-wrap .form-group {
  padding-bottom: 15px;
  margin: 0px;
}

.contact-form-wrap .form-group .form-control {
  background: var(--bg-secondary);
  height: 48px;
  border: 1px solid var(--border);
  box-shadow: none;
  width: 100%;
}

.contact-form-wrap .form-group-2 {
  margin-bottom: 13px;
}

.contact-form-wrap .form-group-2 textarea {
  background: var(--bg-secondary);
  height: 135px;
  border: 1px solid var(--border);
  box-shadow: none;
  width: 100%;
}

.address-block li {
  margin-bottom: 10px;
}

.address-block li i {
  font-size: 20px;
  width: 20px;
}

.social-icons li {
  margin: 0 6px;
}

.social-icons i {
  margin-right: 15px;
  font-size: 25px;
}

.google-map {
  position: relative;
}

.google-map #map {
  width: 100%;
  height: 450px;
}

/*=================================================================
  Latest Posts
==================================================================*/
.blog-item-content h3 {
  line-height: 36px;
}

.blog-item-content h3 a {
  transition: all .4s ease 0s;
}

.blog-item-content h3 a:hover {
  color: var(--green) !important;
}

.lh-36 {
  line-height: 36px;
}

.tags a {
  background: var(--bg-secondary);
  display: inline-block;
  padding: 8px 23px;
  border-radius: 38px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  text-transform: capitalize;
}

.pagination .nav-links a, .pagination .nav-links span.current {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pagination .nav-links span.current, .pagination .nav-links a.next, .pagination .nav-links a.prev {
  color: var(--text-secondary);
}

h3.quote {
  font-size: 25px;
  line-height: 50px;
  font-weight: normal;
  padding: 0px 25px 0px 85px;
  margin: 65px 0 65px 0 !important;
  position: relative;
}

h3.quote::before {
  content: '';
  width: 55px;
  height: 2px;
  background: var(--green);
  position: absolute;
  top: 25px;
  left: 0;
}

.nav-posts-title {
  line-height: 25px;
  font-size: 18px;
}

.latest-blog {
  position: relative;
  padding-bottom: 150px;
}

.mt-70 {
  margin-top: -70px;
}

.border-1 {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* =====================================================
   ARTICLE / PORTFOLIO DETAIL
   Componente aislado (Desktop + Mobile)
===================================================== */

/* =====================================================
   BASE – TEXTO GENERAL DEL ARTÍCULO
===================================================== */

#project p {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  color: var(--text-secondary);
}

#project ul {
  padding-left: 18px;
}

#project ul li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: justify;
}

/* =====================================================
   HERO ARTÍCULO
===================================================== */

.article-hero-wrapper {
  position: relative;
  border-radius: 18px;
}

/* Imagen con sombra (VISIBLE) */
.article-hero-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 10px 20px rgba(0,0,0,0.35);
}

/* Contenedor del texto (no recorta sombra) */
.article-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  pointer-events: none;
}

/* Overlay REAL detrás del texto */
.article-hero-content {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 40px;

  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
}

/* Título */
.article-hero-text h1 {
  margin: 0;
  color: var(--text-primary);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 760px;
}

/* Meta */
.article-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.article-hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,.55);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
}




/* =====================================================
   FEATURE BLOCK (SECCIONES INTERNAS)
===================================================== */

.feature-block {
  padding: 40px 0;
}

.feature-text {
  padding-right: 40px;
}

.feature-text h2 {
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
}

.feature-text ul {
  margin-top: 16px;
}

.feature-image img {
  border-radius: 16px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    0 6px 14px rgba(0,0,0,.18);
}

/* =====================================================
   MOBILE – ARTÍCULO
===================================================== */

@media (max-width: 768px) {

  .article-hero-content {
    flex-direction: column;
    padding: 22px 20px 26px;
    gap: 12px;

    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0)
    );
  }

  .article-hero-text h1 {
    font-size: 18px;
    line-height: 1.35;
  }

  .article-hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .article-hero-meta .meta-item {
    font-size: 10px;
    padding: 6px 8px;
  }
}

/* =====================================================
   ERP HERO (portfolio-erp.html — banner principal)
===================================================== */
.erp-hero {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	background-color: var(--bg-primary);
}
.erp-hero-carousel,
.erp-hero-carousel .carousel-inner,
.erp-hero-carousel .carousel-item {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.erp-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 6s ease;
}
.erp-hero:hover .erp-hero-bg {
	transform: scale(1.03);
}
.erp-hero-carousel .carousel-control-prev,
.erp-hero-carousel .carousel-control-next {
	z-index: 3;
	width: 48px;
}
.erp-hero-shade-top {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 220px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	z-index: 2;
}
.erp-hero-shade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 32%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 35%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.1) 92%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	z-index: 2;
}
.erp-hero-container {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: flex-end;
	padding-bottom: 44px;
}
.erp-hero-content {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}
.erp-hero-title {
	color: var(--text-primary);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.25;
	max-width: 640px;
	margin: 0;
	text-align: left;
}
.erp-hero-meta {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}
.erp-hero-meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 20px;
	border-left: 1px solid var(--border);
}
.erp-hero-meta-item:first-child {
	padding-left: 0;
	border-left: none;
}
.erp-hero-meta-label {
	color: var(--text-secondary);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.erp-hero-meta-value {
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 700;
}
.erp-hero-meta-category {
	color: var(--green);
}
@media (prefers-reduced-motion: reduce) {
	.erp-hero-bg {
		transition: none;
	}
}
@media (max-width: 991px) {
	.erp-hero {
		height: 480px;
	}
	.erp-hero-container {
		padding-bottom: 30px;
	}
	.erp-hero-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.erp-hero-title {
		font-size: 28px;
		max-width: 100%;
	}
	.erp-hero-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		width: 100%;
	}
	.erp-hero-meta-item {
		flex-direction: row;
		align-items: center;
		gap: 8px;
		width: 100%;
		padding-left: 0;
		padding-bottom: 10px;
		border-left: none;
		border-bottom: 1px solid var(--border);
	}
	.erp-hero-meta-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
}
@media (max-width: 575px) {
	.erp-hero {
		height: 420px;
	}
	.erp-hero-shade {
		height: 38%;
	}
	.erp-hero-container {
		padding-left: 8px;
		padding-right: 8px;
	}
	.erp-hero-title {
		font-size: 21px;
		line-height: 1.3;
	}
	.erp-hero-meta-label {
		font-size: 10px;
	}
	.erp-hero-meta-value {
		font-size: 13px;
	}
}

/* =====================================================
   ERP PROJECT DETAILS (portfolio-erp.html — ficha, intro y módulos)
===================================================== */

/* Ficha resumen */
.erp-summary {
	background: #111814;
	border: 1px solid #2A382F;
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 44px;
}
.erp-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.erp-summary-item {
	background: #17211B;
	border: 1px solid #2A382F;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.erp-summary-icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(49, 199, 122, 0.12);
	color: #31C77A;
	font-size: 16px;
}
.erp-summary-label {
	color: #A7B3AB;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.erp-summary-value {
	color: #F3F7F4;
	font-size: 16px;
	font-weight: 700;
}
.erp-summary-badge {
	display: inline-block;
	background: rgba(49, 199, 122, 0.14);
	color: #31C77A;
	border: 1px solid rgba(49, 199, 122, 0.4);
	border-radius: 999px;
	padding: 3px 12px;
	font-size: 14px;
	font-weight: 700;
}
@media (max-width: 991px) {
	.erp-summary-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.erp-summary {
		padding: 24px 18px;
	}
	.erp-summary-grid {
		grid-template-columns: 1fr;
	}
}

/* Texto introductorio */
.erp-intro {
	max-width: 760px;
	margin: 0 0 48px;
}
.erp-intro-text {
	color: #F3F7F4;
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 18px;
}
.erp-intro-note {
	border-left: 3px solid #31C77A;
	background: #111814;
	border-radius: 0 10px 10px 0;
	padding: 14px 20px;
}
.erp-intro-note p {
	color: #A7B3AB;
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

/* Navegación de módulos (tabs en desktop, acordeón en móvil) */
.erp-modules {
	margin-bottom: 40px;
}
.erp-modules-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 1px solid #2A382F;
	margin-bottom: 28px;
}
.erp-modules-nav-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	color: #A7B3AB;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 16px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.erp-modules-nav-btn:hover {
	color: #F3F7F4;
}
.erp-modules-nav-btn:focus-visible {
	outline: 2px solid #31C77A;
	outline-offset: 2px;
}
.erp-modules-nav-btn.is-active {
	color: #31C77A;
	border-bottom-color: #31C77A;
}
.erp-modules-nav-num {
	font-size: 12px;
	font-weight: 700;
	color: #6F7C73;
}
.erp-modules-nav-btn.is-active .erp-modules-nav-num {
	color: #31C77A;
}

/* Botón interno de acordeón: oculto en desktop, visible solo en móvil */
.erp-module-header {
	display: none;
}

/* Tarjeta de cada módulo */
.erp-module-panel {
	background: #111814;
	border: 1px solid #2A382F;
	border-radius: 16px;
	padding: 40px;
}
.erp-module-static-title {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	color: #F3F7F4;
}
.erp-module-num {
	color: #31C77A;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.erp-module-desc {
	max-width: 700px;
	color: #A7B3AB;
	font-size: 15.5px;
	line-height: 1.75;
	margin-bottom: 28px;
}

@media (min-width: 992px) {
	.erp-module-panel {
		display: none;
	}
	.erp-module-panel.is-active {
		display: block;
	}
	.erp-module-body[hidden] {
		display: block !important;
	}
}

@media (max-width: 991px) {
	.erp-modules-nav {
		display: none;
	}
	.erp-module-panel {
		margin-bottom: 16px;
		padding: 0;
		overflow: hidden;
	}
	.erp-module-static-title {
		display: none;
	}
	.erp-module-header {
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100%;
		background: transparent;
		border: none;
		color: #F3F7F4;
		font-size: 17px;
		font-weight: 700;
		text-align: left;
		padding: 20px 24px;
		cursor: pointer;
	}
	.erp-module-header:focus-visible {
		outline: 2px solid #31C77A;
		outline-offset: -2px;
	}
	.erp-module-title {
		flex: 1;
	}
	.erp-module-chevron {
		color: #6F7C73;
		font-size: 13px;
		transition: transform 0.25s ease;
	}
	.erp-module-header[aria-expanded="true"] .erp-module-chevron {
		color: #31C77A;
		transform: rotate(180deg);
	}
	.erp-module-header[aria-expanded="true"] .erp-module-num {
		color: #31C77A;
	}
	.erp-module-body {
		padding: 0 24px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.erp-module-chevron {
		transition: none;
	}
	.erp-modules-nav-btn {
		transition: none;
	}
}

/* Tablas de módulos */
.erp-table-wrap {
	overflow-x: auto;
}
.erp-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.erp-col-modulo { width: 22%; }
.erp-col-opcion { width: 33%; }
.erp-col-detalles { width: 45%; }
.erp-table thead th {
	background: #17211B;
	color: #F3F7F4;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: left;
	padding: 14px 18px;
}
.erp-table thead th:first-child {
	border-radius: 10px 0 0 0;
}
.erp-table thead th:last-child {
	border-radius: 0 10px 0 0;
}
.erp-table tbody th,
.erp-table tbody td {
	padding: 14px 18px;
	font-size: 14.5px;
	color: #F3F7F4;
	border-bottom: 1px solid #2A382F;
	vertical-align: top;
	text-align: left;
	font-weight: 400;
}
.erp-table tbody th[scope="row"] {
	color: #31C77A;
	font-weight: 700;
	background: rgba(49, 199, 122, 0.04);
}
.erp-table tbody td {
	color: #A7B3AB;
}
.erp-table tbody tr:hover td,
.erp-table tbody tr:hover th {
	background: rgba(49, 199, 122, 0.06);
}
.erp-table tbody tr:last-child td {
	border-bottom: none;
}

@media (max-width: 767px) {
	.erp-table thead {
		display: none;
	}
	.erp-table,
	.erp-table tbody,
	.erp-table tr,
	.erp-table th,
	.erp-table td {
		display: block;
		width: 100%;
	}
	.erp-table th[scope="row"] {
		display: none;
	}
	.erp-table tr {
		border-bottom: 1px solid #2A382F;
		padding: 14px 0;
	}
	.erp-table tr:last-child {
		border-bottom: none;
	}
	.erp-table td {
		padding: 4px 0;
		border-bottom: none;
	}
	.erp-table td::before {
		content: attr(data-label);
		display: block;
		color: #6F7C73;
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 2px;
	}
}

/* CTA final (Sistema Pyme / Personalizado / Capacitación / Seguimiento): tarjetas de igual tamaño */
.erp-cta-item {
	display: flex;
	flex-direction: column;
	min-height: 300px;
}
.erp-cta-item .services-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}
@media (max-width: 991px) {
	.erp-cta-item {
		min-height: 360px;
	}
}
@media (max-width: 360px) {
	.erp-cta-item {
		min-height: 420px;
	}
}

/* =====================================================
   CRM FEATURE CARDS (portfolio-crm.html — mismo patrón visual que ERP)
===================================================== */
.erp-feature-card {
	background: #111814;
	border: 1px solid #2A382F;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 30px;
}
.erp-feature-title {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	color: #F3F7F4;
}
@media (max-width: 767px) {
	.erp-feature-card {
		padding: 28px 22px;
	}
}

/* =====================================================
   BOTONES ELÉCTRICOS (index — hero: WhatsApp / Sistema Pyme)
===================================================== */
.button-two.btn-electric,
.button.btn-electric {
	position: relative;
	overflow: hidden;
	background: rgba(11, 15, 13, 0.92);
	border: 2px solid var(--green);
	color: var(--text-primary);
	text-shadow: 0 0 6px rgba(49, 199, 122, 0.5);
	box-shadow:
		0 0 8px rgba(49, 199, 122, 0.55),
		0 0 18px rgba(49, 199, 122, 0.3),
		inset 0 0 10px rgba(49, 199, 122, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

/* Textura interna: líneas verticales sutiles tipo energía */
.btn-electric::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	opacity: 0.5;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(137, 232, 183, 0.14) 0px,
		rgba(137, 232, 183, 0.14) 1px,
		transparent 1px,
		transparent 7px
	);
}

/* Destello que recorre el botón de izquierda a derecha */
.btn-electric::after {
	content: "";
	position: absolute;
	top: 0;
	left: -40%;
	width: 30%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	animation: btn-electric-shine 5s ease-in-out infinite;
}

.button-two.btn-electric:hover,
.button-two.btn-electric:focus-visible,
.button.btn-electric:hover,
.button.btn-electric:focus-visible {
	background: rgba(11, 15, 13, 0.96);
	border-color: var(--green-soft);
	color: var(--text-primary);
	transform: translateY(-3px);
	filter: brightness(1.12);
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.35),
		0 0 14px rgba(49, 199, 122, 0.8),
		0 0 32px rgba(49, 199, 122, 0.5),
		inset 0 0 14px rgba(49, 199, 122, 0.4);
	outline: none;
}

@keyframes btn-electric-shine {
	0%, 15% { left: -40%; opacity: 0; }
	17% { opacity: 1; }
	35% { opacity: 1; left: 120%; }
	40%, 100% { left: 120%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.btn-electric::after {
		animation: none;
		opacity: 0;
	}
	.button-two.btn-electric:hover,
	.button-two.btn-electric:focus-visible {
		transform: none;
	}
}

@media (max-width: 575px) {
	.button-two.btn-electric,
	.button.btn-electric {
		box-shadow:
			0 0 6px rgba(49, 199, 122, 0.5),
			0 0 12px rgba(49, 199, 122, 0.28),
			inset 0 0 8px rgba(49, 199, 122, 0.2);
	}
}

/* =====================================================
   "Duoseptem" (index — hero): mismo estilo que el eslogan, sin mayúsculas forzadas
===================================================== */
.home-area .home-content h3.hero-brand-mark {
	text-transform: none;
	font-size: 36px;
	opacity: 1;
	transition: opacity 0.09s ease;
}
@media (max-width: 575px) {
	.home-area .home-content h3.hero-brand-mark {
		font-size: 30px;
	}
}

/* Animación de partículas → "Duoseptem" (solo primera visita) */
.hero-brand-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	margin-bottom: 10px;
	transform: translateY(65px);
}
.hero-brand-wrap .hero-brand-mark {
	position: relative;
	z-index: 1;
	margin: 0;
}
.hero-brand-canvas {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.07s ease;
}
.hero-brand-canvas--hidden {
	opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
	.hero-brand-canvas {
		display: none;
	}
	.home-area .home-content h3.hero-brand-mark {
		transition: none;
	}
}
