/* Fuente principal (Google Fonts: estable; cdnfonts.com a veces responde 500) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   Home - Banner con su menú (estilo de la foto)
   Menú integrado sobre el banner a pantalla completa
   ============================================ */

/* Fuente principal de la web */
body {
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Animaciones de entrada al hacer scroll */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.animate-on-scroll.animate-on-scroll--left {
	transform: translateY(28px) translateX(-24px);
}
.animate-on-scroll.animate-on-scroll--left.is-visible {
	transform: translateY(0) translateX(0);
}
.animate-on-scroll.animate-on-scroll--right {
	transform: translateY(28px) translateX(24px);
}
.animate-on-scroll.animate-on-scroll--right.is-visible {
	transform: translateY(0) translateX(0);
}
/* Pequeño retraso escalonado para hijos (ej. tarjetas) */
.animate-on-scroll-group .animate-on-scroll { transition-delay: 0s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.animate-on-scroll-group .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }

/* Barra de progreso de scroll (fija en la parte superior) */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: rgba(0, 0, 0, 0.08);
	z-index: 9999;
	overflow: hidden;
}
.scroll-progress__bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #E85D04, #8DC63F);
	transition: width 0.12s ease-out;
}

/* Botón WhatsApp flotante (esquina inferior derecha) — a y button (dos líneas WA) */
.scroll-top.scroll-to-target {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: #fff !important;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	text-decoration: none;
	font-size: 1.85rem;
	line-height: 1;
	transition: transform .2s, box-shadow .2s, background .2s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.scroll-top.scroll-to-target:hover {
	color: #fff !important;
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
	background: #20bd5a;
}
.scroll-top.scroll-to-target .fab.fa-whatsapp {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	display: block;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.scroll-top.scroll-to-target svg {
	display: block;
	line-height: 1;
}

/* Dos números: contenedor fijo + botón sin position fixed duplicada */
.float-whatsapp-wrap {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
}
.float-whatsapp-wrap .float-whatsapp__toggle {
	position: relative;
	bottom: auto;
	right: auto;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}
.float-whatsapp-wrap .float-whatsapp__toggle:hover {
	color: #fff !important;
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
	background: #20bd5a;
}
.float-whatsapp-wrap .float-whatsapp__toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
.float-whatsapp__panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 12px);
	min-width: 240px;
	max-width: min(92vw, 300px);
	padding: 12px 14px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.float-whatsapp__panel[hidden] {
	display: none !important;
}
.float-whatsapp__panel-title {
	font-size: 0.8rem;
	font-weight: 600;
	color: #444;
	margin: 0 0 10px;
	line-height: 1.3;
}
.float-whatsapp__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	margin-bottom: 6px;
	border-radius: 10px;
	text-decoration: none;
	color: #1a1a1a;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background .15s;
}
.float-whatsapp__option:last-child {
	margin-bottom: 0;
}
.float-whatsapp__option:hover {
	background: #f0fdf4;
	color: #128c7e;
}
.float-whatsapp__option .fa-whatsapp {
	color: #25d366;
	font-size: 1.25rem;
}

/* --- Header único para todo el sitio --- */
.site-header__bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	padding: 1rem 0;
	transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__logo a {
	display: inline-block;
	text-decoration: none;
}
.site-header__logo img {
	height: 60px;
	width: auto;
	display: block;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.site-header__nav a {
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0,0,0,.3);
	position: relative;
	display: inline-block;
}

/* Subrayado de izquierda a derecha al hover (solo enlaces, no el botón Contacto) */
.site-header__nav a:not(.site-header__btn-contacto)::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #e85d04;
	transition: width 0.25s ease;
}

.site-header__nav a:not(.site-header__btn-contacto):hover::after,
.site-header__nav a:not(.site-header__btn-contacto).active::after {
	width: 100%;
}

.site-header__nav a:not(.site-header__btn-contacto):hover {
	color: #fff;
}

.site-header__btn-contacto {
	background: #e85d04 !important;
	color: #fff !important;
	border: none;
	padding: 0.5rem 1.25rem;
	border-radius: 6px;
	margin-left: 0.5rem;
	text-decoration: none;
	font-weight: 500;
}

.site-header__btn-contacto:hover {
	background: #d54d02 !important;
	color: #fff !important;
}

.site-header__bar--mobile .site-header__inner {
	justify-content: space-between;
}

/* Al hacer scroll: header negro sólido (todas las páginas) */
.site-header.is-scrolled .site-header__bar {
	background: #000;
	backdrop-filter: none;
	box-shadow: 0 1px 0 rgba(255,255,255,.1);
}
.site-header.is-scrolled .site-header__nav a {
	text-shadow: none;
}

/* --- Banner / Hero: pantalla completa, el menú va encima --- */
.hero-home {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	margin-top: 0;
}

.hero-home .swiper {
	width: 100%;
	height: 100vh;
	min-height: 500px;
}

.hero-home .swiper-slide {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.hero-home .swiper-slide.hero-home__slide--video {
	background-image: none !important;
	background-color: #0d0d0d;
}
.hero-home__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}
.hero-home__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
	pointer-events: none;
}
.hero-home__title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem 1rem 4rem;
	text-align: center;
	z-index: 2;
}
.hero-home .swiper-slide .hero-home__title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.hero-home__title {
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0,0,0,.4);
	margin: 0;
}

/* Flechas del slider */
.hero-home__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,.6);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background .2s;
}

.hero-home__arrow:hover {
	background: rgba(255,255,255,.9);
}

.hero-home__arrow--prev { left: 24px; }
.hero-home__arrow--next { right: 24px; }

.hero-home__arrow i {
	color: #333;
	font-size: 1rem;
}

/* Paginación dots: inactivos = círculos claros, activo = barra naranja alargada */
.hero-home .swiper-pagination,
.hero-home .hero-home-pagination {
	bottom: 1.5rem !important;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hero-home .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	opacity: 1;
	transition: width .25s ease, background .25s ease, border-radius .25s ease;
}

.hero-home .swiper-pagination-bullet-active {
	width: 28px;
	height: 8px;
	border-radius: 4px;
	background: #e85d04;
}

/* --- Botón flotante "Talk with Us" --- */
.talk-with-us {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,.25);
	transition: transform .2s, box-shadow .2s;
}

.talk-with-us:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

.talk-with-us i {
	font-size: 1.1rem;
}

@media (max-width: 1199.98px) {
	.site-header__nav {
		display: none;
	}
}

/* --- Menú móvil (sidebar + overlay) - compatibilidad con Bootstrap --- */
.body-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
}
.body-overlay.active {
	opacity: 1;
	visibility: visible;
}
.tpsideinfo {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	max-width: 85vw;
	height: 100vh;
	background: #1a1a1a;
	z-index: 1050;
	padding: 1rem;
	transform: translateX(100%);
	transition: transform .25s;
	overflow-y: auto;
}
.tpsideinfo.open {
	transform: translateX(0);
}
.tpsideinfo__close {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.25rem;
}
.tpsideinfo .mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tpsideinfo .mobile-menu__nav li {
	margin-bottom: 0.5rem;
}
.tpsideinfo .mobile-menu__nav a {
	display: block;
	padding: 0.4rem 0;
	font-weight: 500;
}
.tpsideinfo .mobile-menu a {
	color: #fff;
	text-decoration: none;
}
.tpsideinfo .mobile-menu .social-link {
	display: inline-block;
	margin: 0.5rem;
}
/* Icono WhatsApp vectorial (sustituye PNG pixelados) */
a.social-wa-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #25d366;
	color: #fff !important;
	border-radius: 50%;
	font-size: 1.4rem;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
	-webkit-font-smoothing: antialiased;
}
a.social-wa-circle .fab.fa-whatsapp {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	line-height: 1;
}
a.social-wa-circle--footer {
	width: 40px;
	height: 40px;
	font-size: 1.25rem;
}

/* Footer (diseño 4 columnas, fondo oscuro) */
.site-footer {
	background-color: #1A1F26;
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.site-footer__main {
	padding-top: 1rem;
}
.site-footer__brand {
	max-width: 280px;
}
.site-footer__logo {
	display: inline-block;
	margin-bottom: 1rem;
}
.site-footer__logo img {
	height: 40px;
	width: auto;
	display: block;
}
.site-footer__desc {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	color: rgba(255, 255, 255, 0.75);
}
.site-footer__social {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #E85D04;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s, transform 0.2s;
}
.site-footer__social a:hover {
	background-color: #d45203;
	color: #fff;
	transform: translateY(-2px);
}
.site-footer__title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem 0;
}
.site-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer__links li {
	margin-bottom: 0.5rem;
}
.site-footer__links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}
.site-footer__links a:hover {
	color: #8DC63F;
}
.site-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
}
.site-footer__contact-icon {
	flex-shrink: 0;
	width: 20px;
	text-align: center;
	color: #8DC63F;
}
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1rem 0;
}
.site-footer__bottom .container {
	text-align: center;
}
.site-footer__bottom-inner {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.site-footer__copy {
	font-size: 0.85rem;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

/* Sección Nuestros Servicios */
.servicios-home {
	background: #ffffff;
}
.servicios-home__heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	margin: 0;
}
.servicios-home__heading-dark {
	color: #2c2c2c;
}
.servicios-home__heading-green {
	color: #8DC63F;
}
.servicios-home__subheading {
	font-size: 1rem;
	color: #5a5a5a;
	margin: 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.servicios-home__card {
	background: #f8f8f8;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
	transition: box-shadow .25s, transform .25s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.servicios-home__card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
	transform: translateY(-4px);
}

.servicios-home__card-img-wrap {
	position: relative;
	aspect-ratio: 4/3;
	min-height: 180px;
	overflow: hidden;
	flex-shrink: 0;
}
.servicios-home__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s;
}
.servicios-home__card:hover .servicios-home__card-img {
	transform: scale(1.05);
}
.servicios-home__card-subtitle {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0.65rem 1rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.35;
	color: #8dc63f;
	background-color: rgba(0, 0, 0, 0.8);
	background-image: none;
	z-index: 2;
}

.servicios-home__card-subs {
	margin: 0 0 0.85rem;
	padding-left: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #555;
	list-style: none;
}
.servicios-home__card-sub {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.45rem;
}
.servicios-home__card-sub:last-child {
	margin-bottom: 0;
}
.servicios-home__card-sub-img-wrap {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	overflow: hidden;
	background: #eee;
}
.servicios-home__card-sub-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.servicios-home__card-sub-text {
	flex: 1;
	min-width: 0;
}

.servicios-home__card-body {
	padding: 1.75rem 1.25rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.servicios-home__card .servicios-home__card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 0.75rem;
	line-height: 1.3;
}
.servicios-home__card-desc {
	font-size: 0.9rem;
	color: #5a5a5a;
	line-height: 1.5;
	margin: 0 0 1rem;
	flex: 1;
}
.servicios-home__card-link {
	color: #e85d04;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	transition: gap .2s, color .2s;
}
.servicios-home__card-link:hover {
	color: #d54d02;
	gap: 0.5rem;
}
.servicios-home__card-link i {
	font-size: 0.8rem;
}

.servicios-home__btn-wrap {
	margin-top: 1.5rem;
}
.servicios-home__btn-all {
	background-color: #E85D04;
	border-color: #E85D04;
	color: #fff;
	font-weight: 600;
	padding: 0.65rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.servicios-home__btn-all:hover {
	background-color: #d45203;
	border-color: #d45203;
	color: #fff;
	transform: translateY(-2px);
}
.servicios-home__btn-all i {
	margin-left: 0.35rem;
}

/* Página Productos: formulario de cotización */
.productos-cotizacion {
	background: #f5f9f0;
}
.productos-cotizacion__heading {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	line-height: 1.3;
}
.productos-cotizacion__heading-accent {
	color: #8DC63F;
}
.productos-cotizacion__subheading {
	font-size: 1rem;
	color: #5a5a5a;
	margin: 0;
}

/* Sección Testimonios (fondo blanco, intercalado con Portafolio gris) */
section.testimonios-home,
.testimonios-home {
	background-color: #ffffff !important;
	background: #ffffff;
}
.testimonios-home__heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	text-align: center;
}
.testimonios-home__heading-accent {
	color: #e85d04;
}
.testimonios-home__subheading {
	font-size: 1rem;
	color: #5a5a5a;
	margin: 0;
	text-align: center;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.testimonios-home__card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.75rem;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
	height: 100%;
	text-align: center;
	transition: box-shadow .25s, transform .25s;
}
.testimonios-home__card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.1);
	transform: translateY(-2px);
}
.testimonios-home__card-avatar-wrap {
	width: 90px;
	height: 90px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #8DC63F;
	flex-shrink: 0;
}
.testimonios-home__card-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.testimonios-home__card-quote {
	font-size: 0.95rem;
	color: #5a5a5a;
	line-height: 1.6;
	margin: 0 0 1.25rem;
	font-style: normal;
}
.testimonios-home__card-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 0.25rem;
}
.testimonios-home__card-role {
	font-size: 0.9rem;
	color: #888;
	margin: 0 0 0.25rem;
}
.testimonios-home__card-company {
	font-size: 0.9rem;
	color: #e85d04;
	font-weight: 600;
	margin: 0;
}

/* Carrusel de logos (clientes) */
.clientes-home {
	background: #f8f9fa;
}
.clientes-home__heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	margin: 0;
}
.clientes-home__heading-dark {
	color: #2c2c2c;
}
.clientes-home__heading-green {
	color: #8DC63F;
}
.clientes-home__subheading {
	font-size: 1rem;
	color: #5a5a5a;
	margin: 0;
}
.clientes-home__swiper-wrap {
	position: relative;
	padding: 0 2.75rem;
}
.clientes-home-swiper {
	overflow: hidden;
	padding: 0.5rem 0;
}
.clientes-home-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}
.clientes-home__logo {
	display: block;
	max-width: 100%;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: filter .25s, opacity .25s;
}
.clientes-home-swiper .swiper-slide:hover .clientes-home__logo {
	filter: grayscale(0%);
	opacity: 1;
}
.clientes-home__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #e85d04;
	box-shadow: 0 2px 12px rgba(0,0,0,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s, color .2s;
}
.clientes-home__arrow:hover {
	background: #e85d04;
	color: #fff;
}
.clientes-home__arrow--prev {
	left: 0;
}
.clientes-home__arrow--next {
	right: 0;
}
@media (max-width: 575.98px) {
	.clientes-home__swiper-wrap {
		padding: 0 2.25rem;
	}
	.clientes-home__arrow {
		width: 38px;
		height: 38px;
	}
}

/* Sección Contáctanos */
.contacto-home {
	background: #f8f9fa;
}
.contacto-home__heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	text-align: center;
}
.contacto-home__subheading {
	font-size: 1rem;
	color: #5a5a5a;
	margin: 0;
	text-align: center;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.contacto-home__info-card,
.contacto-home__form-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 1.75rem 1.5rem;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
	height: 100%;
}
.contacto-home__info-title,
.contacto-home__form-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 1.25rem;
}
.contacto-home__info-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.25rem;
	align-items: flex-start;
}
.contacto-home__info-item:last-child {
	margin-bottom: 0;
}
.contacto-home__info-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: #e85d04;
	color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}
.contacto-home__info-icon--green {
	background: #8dc63f;
	color: #fff;
}
.contacto-home__sede-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 1rem 0 0.5rem;
}
.contacto-home__sede-title:first-of-type {
	margin-top: 0;
}
.contacto-home__info-text {
	margin: 0;
	font-size: 0.9rem;
	color: #5a5a5a;
	line-height: 1.5;
}
.contacto-home__info-item strong {
	display: block;
	color: #2c2c2c;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}
.contacto-home__info-item p {
	margin: 0;
	font-size: 0.9rem;
	color: #5a5a5a;
	line-height: 1.5;
}

.contacto-home__map-wrap {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f0f0f0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.contacto-home__map-wrap iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 220px;
	border: 0;
	border-radius: 12px;
	vertical-align: top;
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
.contacto-home__map-link {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #e85d04;
	text-decoration: none;
	font-weight: 500;
}
.contacto-home__map-link:hover {
	color: #d54d02;
	text-decoration: underline;
}

.contacto-home__form .form-label {
	font-weight: 600;
	color: #2c2c2c;
	font-size: 0.9rem;
}
.contacto-home__form .form-control {
	border-radius: 8px;
	border: 1px solid #dee2e6;
	padding: 0.6rem 0.75rem;
}
.contacto-home__form .form-control:focus {
	border-color: #e85d04;
	box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.15);
}
.contacto-home__char-count {
	font-size: 0.8rem;
	color: #888;
	margin-top: 0.35rem;
	text-align: right;
}
.contacto-home__btn-submit {
	background: #e85d04;
	border: none;
	color: #fff;
	padding: 0.65rem 1.75rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: background .2s;
}
.contacto-home__btn-submit:hover {
	background: #d54d02;
	color: #fff;
}

/* ========== Página Nosotros ========== */
.nosotros-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.nosotros-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.nosotros-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}
.nosotros-hero__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 2rem 1rem;
}
.nosotros-hero__cta {
	display: inline-block;
	background: #E85D04 !important;
	border-color: #E85D04 !important;
	color: #fff !important;
	padding: 0.5rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 1.5rem;
	transition: background 0.2s, transform 0.2s;
}
.nosotros-hero__cta:hover {
	background: #d45203 !important;
	border-color: #d45203 !important;
	color: #fff !important;
	transform: translateY(-2px);
}
.nosotros-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}
.nosotros-hero__title-accent {
	color: #8DC63F;
}
.nosotros-hero__tagline {
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.5;
}

/* Indicadores (count-up) */
.nosotros-stats {
	background: #f5f9f0;
}
/* Carruseles Nosotros (móvil) */
.nosotros-stats__swiper .swiper-slide {
	height: auto;
}
.nosotros-stats__swiper { padding-bottom: 2.5rem; }
.nosotros-stats__swiper .nosotros-stats-pagination { position: absolute; bottom: 0; }
.nosotros-proposito__swiper .swiper-slide { height: auto; }
.nosotros-proposito__swiper { padding-bottom: 2.5rem; }
.nosotros-proposito__swiper .nosotros-proposito-pagination { position: absolute; bottom: 0; }
.nosotros-valores__swiper .swiper-slide { height: auto; display: flex; }
.nosotros-valores__swiper .swiper-slide .nosotros-valores__card { flex: 1; }
.nosotros-valores__swiper { padding-bottom: 2.5rem; }
.nosotros-valores__swiper .nosotros-valores-pagination { position: absolute; bottom: 0; }
.nosotros-stats__swiper .swiper-pagination-bullet,
.nosotros-proposito__swiper .swiper-pagination-bullet,
.nosotros-valores__swiper .swiper-pagination-bullet {
	background: #E85D04;
	opacity: 0.4;
}
.nosotros-stats__swiper .swiper-pagination-bullet-active,
.nosotros-proposito__swiper .swiper-pagination-bullet-active,
.nosotros-valores__swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.nosotros-stats__item {
	padding: 0.5rem 0;
}
@media (max-width: 767.98px) {
	.nosotros-stats__item {
		text-align: center;
	}
}
.nosotros-stats__number {
	display: block;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	color: #E85D04;
	line-height: 1.2;
	margin-bottom: 0.35rem;
}
.nosotros-stats__label {
	font-size: 0.95rem;
	color: #5a5a5a;
	margin: 0;
}

/* Propósito: Misión y Visión */
.nosotros-proposito {
	background: #ffffff;
}
.nosotros-proposito__subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #E85D04;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}
.nosotros-proposito__heading {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	line-height: 1.3;
}
.nosotros-proposito__heading-accent {
	color: #8DC63F;
}
.nosotros-proposito__card {
	padding: 1.75rem 1.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	height: 100%;
	position: relative;
}
.nosotros-proposito__card--mision {
	background: #fef3eb;
}
.nosotros-proposito__card--vision {
	background: #e8f5e0;
}
.nosotros-proposito__card-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	color: #fff;
}
.nosotros-proposito__card-icon--orange {
	background: #E85D04;
}
.nosotros-proposito__card-icon--green {
	background: #8DC63F;
}
.nosotros-proposito__card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 0.75rem;
}
.nosotros-proposito__card-text {
	font-size: 0.95rem;
	color: #5a5a5a;
	line-height: 1.6;
	margin: 0;
}

/* Nuestros valores */
.nosotros-valores {
	background: #f5f9f0;
}
.nosotros-valores__subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #E85D04;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}
.nosotros-valores__heading {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	line-height: 1.3;
}
.nosotros-valores__heading-accent {
	color: #8DC63F;
}
.nosotros-valores__card {
	background: #fff;
	padding: 1.75rem 1.25rem;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	height: 100%;
	transition: box-shadow 0.2s, transform 0.2s;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.nosotros-valores__card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.nosotros-valores__card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}
.nosotros-valores__card-icon--orange {
	background: #fef3eb;
	color: #E85D04;
}
.nosotros-valores__card-icon--green {
	background: #e8f5e0;
	color: #8DC63F;
}
.nosotros-valores__card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 0.5rem;
}
.nosotros-valores__card-text {
	font-size: 0.9rem;
	color: #5a5a5a;
	line-height: 1.55;
	margin: 0;
	max-width: 100%;
}

/* Nuestros objetivos */
.nosotros-objetivos {
	background: #ffffff;
}
.nosotros-objetivos__img-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.nosotros-objetivos__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.nosotros-objetivos__subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #E85D04;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}
.nosotros-objetivos__heading {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 1rem;
	line-height: 1.3;
}
.nosotros-objetivos__heading-accent {
	color: #8DC63F;
}
.nosotros-objetivos__text {
	font-size: 1rem;
	color: #5a5a5a;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.nosotros-objetivos__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.nosotros-objetivos__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #fef3eb;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #2c2c2c;
}
.nosotros-objetivos__item-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 10px;
	background: #E85D04;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.nosotros-objetivos__item span:last-child {
	line-height: 1.4;
}

/* CTA Nosotros: ¿Tienes un proyecto en mente? */
.nosotros-cta {
	background: #f5f9f0;
}
.nosotros-cta__box {
	max-width: 720px;
	margin: 0 auto;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #2d3a2a 0%, #1a2618 100%);
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.nosotros-cta__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.25;
}
.nosotros-cta__title-accent {
	color: #8DC63F;
}
.nosotros-cta__text {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0 0 2rem;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}
.nosotros-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.nosotros-cta__btn {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.nosotros-cta__btn--orange {
	background: #E85D04;
	color: #fff;
	border: 2px solid #E85D04;
}
.nosotros-cta__btn--orange:hover {
	background: #d45203;
	border-color: #d45203;
	color: #fff;
	transform: translateY(-2px);
}
.nosotros-cta__btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
}
.nosotros-cta__btn--outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #8DC63F;
	color: #fff;
	transform: translateY(-2px);
}

.nosotros-empresa {
	background: #ffffff;
}
.nosotros-empresa__subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #E85D04;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}
.nosotros-empresa__heading {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 1.25rem;
	line-height: 1.3;
}
.nosotros-empresa__heading-accent {
	color: #8DC63F;
}
.nosotros-empresa__text {
	font-size: 1rem;
	color: #5a5a5a;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.nosotros-empresa__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.nosotros-empresa__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
}
.nosotros-empresa__pill i {
	font-size: 1.1rem;
}
.nosotros-empresa__pill--orange {
	background: #fef3eb;
	color: #E85D04;
}
.nosotros-empresa__pill--orange i {
	color: #E85D04;
}
.nosotros-empresa__pill--green {
	background: #e8f5e0;
	color: #6b9e3e;
}
.nosotros-empresa__pill--green i {
	color: #8DC63F;
}
.nosotros-empresa__img-wrap {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nosotros-empresa__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.nosotros-empresa__brand-card {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	max-width: 280px;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(232, 93, 4, 0.15);
}
.nosotros-empresa__brand-icon img {
	display: block;
	object-fit: contain;
}
.nosotros-empresa__brand-name {
	display: block;
	font-size: 1.15rem;
	color: #2c2c2c;
	margin-bottom: 0.15rem;
}
.nosotros-empresa__brand-tagline {
	font-size: 0.9rem;
	color: #5a5a5a;
	margin: 0;
}

/* ========== Ficha individual de servicio (servicios/{slug}) ========== */
.servicio-page__hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 5rem 0 3.5rem;
}
.servicio-page__hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.servicio-page__hero-bg--fallback {
	background-color: #2c2c2c;
}
.servicio-page__hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.servicio-page__hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}
.servicio-page__hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 1.25rem;
	background: #e85d04;
	border-radius: 12px;
	color: #fff;
	font-size: 1.35rem;
	box-shadow: 0 4px 14px rgba(232, 93, 4, 0.45);
}
.servicio-page__hero-title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.servicio-page__hero-desc {
	font-size: clamp(0.95rem, 2vw, 1.125rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.65;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.servicio-page__content {
	background: #fff;
}
.servicio-page__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #e85d04;
	margin: 0 0 0.5rem;
}
.servicio-page__heading {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 2rem;
	line-height: 1.2;
}
/* Tarjetas de subservicios (referencia diseño: imagen arriba, barra naranja + título en mayúsculas, texto) */
.servicio-page__sub-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.servicio-page__sub-card:hover {
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}
.servicio-page__sub-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f0f0f0;
	overflow: hidden;
}
.servicio-page__sub-card__media--empty {
	min-height: 180px;
	background: #ececec;
}
.servicio-page__sub-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.servicio-page__sub-card:hover .servicio-page__sub-card__img {
	transform: scale(1.03);
}
.servicio-page__sub-card__body {
	padding: 1.35rem 1.5rem 1.6rem;
	text-align: left;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.servicio-page__sub-card__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 0 0.9rem;
	line-height: 1.35;
	text-align: center;
}
.servicio-page__sub-card__accent {
	width: 4px;
	min-height: 2.75rem;
	flex-shrink: 0;
	background: #e85d04;
	border-radius: 2px;
}
.servicio-page__sub-card__title-text {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1a1a1a;
}
.servicio-page__sub-card__desc {
	font-size: 0.875rem;
	color: #6b6b6b;
	line-height: 1.65;
	margin: 0;
	flex: 1;
}
