@charset "UTF-8";

/* =============================
   RESET BÁSICO
============================= */
* { box-sizing: border-box; }
*:focus { outline: none; }

html, body {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* 🔑 CLAVE */
}

/* =============================
   BASE
============================= */
body {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #a5a5a5;
  background-color: #2c343b;
  overflow-x: hidden;
}

p { margin: 0; }

/* =============================
   HEADINGS
============================= */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 300;
  color: #fff;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }

@media (min-width: 1200px) {
  h1 { font-size: 60px; line-height: 1.2; }
  h2 { font-size: 48px; }
  h3 { font-size: 38px; }
  h4 { font-size: 24px; }
}

.subtitle {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

/* =============================
   LINKS
============================= */
a {
  color: #fff;
  text-decoration: none;
  transition: color .3s ease-in-out;
}

a:hover { color: #ffac62; }

/* =============================
   ICONOS (FontAwesome)
============================= */
.icon {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transition: .3s ease-in-out;
}

.icon-lg { font-size: 26px; }

@media (min-width: 1200px) {
  .icon-lg { font-size: 38px; }
}

.icon-primary { color: #ffac62; }

/* =============================
   LISTAS INLINE (REDES)
============================= */
.list-inline > li {
  display: inline-block;
}

/* =============================
   CONTENT BOX (MODAL PRIVACIDAD)
============================= */

@media (min-width: 1200px) {
  .content-box {
    padding: 50px;
    max-width: 970px;
  }
}

.content-box-inner {
  max-height: 470px;
  overflow-y: auto;
}

.close-modal-content-box {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 43px;
  height: 43px;
  line-height: 38px;
  text-align: center;
  font-size: 24px;
  background-color: #ffac62;
  color: #000;
}

.close-modal-content-box:hover {
  background-color: #fff;
}

/* =============================
   BOTONES LINK (GALERÍA)
============================= */
.button-link {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  color: #fff;
}

.button-link:hover { color: #ffac62; }

.button-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.button-link-icon .icon {
  position: relative;
  right: 0;
  transition: right .3s ease;
}

.button-link-icon:hover .icon {
  right: 10px;
}


/* =============================
   CSS OPTIMIZADO – SECCIÓN EXTRA
   Se eliminaron: breadcrumbs, pagination,
   snackbars, offsets de rows, utilidades no usadas,
   boxed layout, IE fixes.
============================= */

/* Thumbnails */
.figure-light figcaption {
  padding-top: 10px;
  color: #b7b7b7;
}


/* =============================
   HEADER / BRAND
============================= */
.page-header {
  padding: 40px 0;
}

@media (min-width: 1200px) {
  .page-header {
    padding: 60px 0 30px;
  }
}

.brand-logo {
  display: inline-block;
  vertical-align: middle;
}

.brand-name {
  display: block;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 100;
  line-height: 1;
}

@media (min-width: 1200px) {
  .brand-name { font-size: 45px; }
}

.brand-subtitle {
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .75;
  padding-left: 3px;
}

@media (min-width: 1200px) {
  .brand-subtitle { letter-spacing: .29em; }
}

.head-title {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  font-weight: 100;
}

/* =============================
   BANNER
============================= */
.section-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}

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

/* =============================
   PAGE LAYOUT + VIDEO BG
============================= */
.page {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: transparent; /* 🔑 CLAVE */
}

.bg-video {
  position: fixed;        /* mejor que absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  background: #000;       /* fallback mientras carga */
}



/* =============================
   TEXT HELPERS (USADOS)
============================= */
.text-italic { font-style: italic; }
.text-underline { text-decoration: underline; }
.text-primary { color: #ffac62 !important; }
.font-weight-light { font-weight: 300; }
.font-weight-regular { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-sbold { font-weight: 600; }


/* =============================
   CSS OPTIMIZADO – SECCIÓN FINAL
   Eliminado:
   - section-single (landing multipropósito)
   - grid-demonstration / grid-system
   - backgrounds contextuales no usados
   - utilities genéricas (height-fill, object-inline, etc.)
   - animate.css completo (no necesario)
============================= */

/* =============================
   SECTIONS – RESPONSIVE LIMPIO
============================= */
@media (max-width: 991px) {
  section.section-sm:first-of-type,
  section.section-md:first-of-type,
  section.section-lg:first-of-type {
    padding-top: 40px;
  }
}

.section-xs { padding: 25px 0; }
.section-sm { padding: 50px 0; }
.section-md { padding: 60px 0; }
.section-lg { padding: 80px 0; }

@media (min-width: 768px) {
  .section-sm { padding: 60px 0; }
  .section-md { padding: 70px 0; }
}

@media (min-width: 992px) {
  .section-md { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
}

@media (min-width: 1200px) {
  .section-lg { padding: 115px 0; }
}

/* =============================
   BACKGROUNDS BÁSICOS
============================= */
.bg-default { background-color: #2c343b; }
.bg-gray-dark { background-color: #2c343b; }

[class^='bg-'] {
  background-size: cover;
  background-position: center;
}

/* =============================
   FADE SIMPLE (REEMPLAZA animate.css)
============================= */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: .4s ease-in-out;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}


@keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

/*
*
* Preloader
*/
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 9999999;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #fff;
	transition: .3s all ease;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.preloader-body {
	text-align: center;
}

.preloader-body p {
	position: relative;
	right: -8px;
}

.cssload-container {
	width: 100%;
	height: 36px;
	text-align: center;
}

.cssload-speeding-wheel {
	width: 36px;
	height: 36px;
	margin: 0 auto;
	border: 3px solid #ffac62;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	animation: cssload-spin .88s infinite linear;
}

@-webkit-keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
	}
}

.tabs-custom {
	text-align: left;
}

.tabs-custom .nav-tabs {
	font-size: 0;
	line-height: 0;
	word-spacing: 0;
	border: 0;
}

.tabs-custom .nav-tabs:before, .tabs-custom .nav-tabs:after {
	display: none;
}

.tabs-custom .nav-item {
	float: none;
	border: 0;
	cursor: pointer;
	transition: .33s all ease;
}

.tabs-custom .nav-link {
	margin: 0;
	border-radius: 0;
	border: 0;
}

.tabs-custom .nav-link.active {
	cursor: default;
	border: 0;
}

.tab-content > .tab-pane {
	display: block;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	position: relative;
}

.tab-content > .active {
	visibility: visible;
	height: auto;
	overflow: visible;
}

* + .tabs-horizontal.tabs-corporate {
	margin-top: 25px;
}

* + .tabs-vertical.tabs-corporate {
	margin-top: 40px;
}

@media (min-width: 768px) {
	* + .tabs-vertical.tabs-corporate {
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	* + .tabs-vertical.tabs-corporate {
		margin-top: 80px;
	}
}

.tabs-line .nav-tabs {
	position: relative;
}

.tabs-line .nav-link {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
}

.tabs-line * + .tab-content {
	margin-top: 20px;
}

@media (max-width: 991px) {
	.tabs-line .nav-tabs {
		max-width: 100%;
		border: 1px solid #e5e7e9;
	}
	.tabs-line .nav-item {
		margin: -1px;
	}
	.tabs-line .nav-link {
		padding: 7px 10px;
		color: #fff;
		background: transparent;
		border-bottom: 1px solid #e5e7e9;
	}
	.tabs-line .nav-link:first-child {
		border-top: 1px solid #e5e7e9;
	}
	.tabs-line .nav-link:hover,
	.tabs-line .nav-link.active {
		color: #fff;
		background: transparent;
	}
}

.tabs-corporate > .nav-tabs {
	display: block;
	position: relative;
	border: 1px solid;
}

.tabs-corporate .nav-item {
	margin: -1px;
}

.tabs-corporate .nav-link {
	position: relative;
	padding: 10px 10px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	opacity: .87;
}

.tabs-corporate .nav-link-hover {
	display: none;
}

.tabs-corporate .nav-link:hover,
.tabs-corporate .nav-link.active {
	color: #2c343b;
	background: #fff;
}

.tabs-corporate .tab-content {
	position: relative;
	padding: 30px 0 0;
}

@media (min-width: 768px) {
	.tabs-horizontal.tabs-corporate > .nav-tabs {
		position: relative;
		width: 100%;
		display: block;
		text-align: center;
		border: 0;
		will-change: transform;
		border-top: 1px solid #e5e7e9;
	}
	.tabs-horizontal.tabs-corporate .nav-item {
		display: inline-block;
		will-change: transform;
	}
	.tabs-horizontal.tabs-corporate > .nav-tabs .nav-link {
		display: block;
		position: relative;
		z-index: 1;
		min-width: 130px;
		padding: 35px 20px;
	}
	.tabs-horizontal.tabs-corporate > .nav-tabs .nav-link, .tabs-horizontal.tabs-corporate > .nav-tabs .nav-link::before {
		transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	}
	.tabs-horizontal.tabs-corporate > .nav-tabs .nav-link::before {
		content: '';
		position: absolute;
		top: -10px;
		left: 50%;
		width: 1px;
		height: 20px;
		opacity: 0;
		transform: rotate(-45deg);
		transition: transform 0.4s, opacity 0.4s;
		transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
		background: #fff;
	}
	.tabs-horizontal.tabs-corporate .nav-link-hover,
	.tabs-horizontal.tabs-corporate .nav-link-main {
		display: block;
		white-space: nowrap;
		transition: .3s ease-in-out;
	}
	.tabs-horizontal.tabs-corporate .nav-link-hover {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate3d(-50%, -100%, 0);
		opacity: 0;
		visibility: hidden;
	}
	.tabs-horizontal.tabs-corporate .nav-link.active,
	.tabs-horizontal.tabs-corporate .nav-link:hover {
		color: #fff;
		background: transparent;
	}
	.tabs-horizontal.tabs-corporate .nav-link.active::before,
	.tabs-horizontal.tabs-corporate .nav-link:hover::before {
		opacity: 1;
		transform: rotate(45deg);
	}
	.tabs-horizontal.tabs-corporate .nav-link.active .nav-link-hover,
	.tabs-horizontal.tabs-corporate .nav-link:hover .nav-link-hover {
		opacity: 1;
		visibility: visible;
		transform: translate3d(-50%, 35px, 0);
	}
	.tabs-horizontal.tabs-corporate .nav-link.active .nav-link-main,
	.tabs-horizontal.tabs-corporate .nav-link:hover .nav-link-main {
		transform: translate3d(0, 100%, 0);
		opacity: 0;
		visibility: hidden;
	}
	[data-x-mode] .tabs-horizontal.tabs-corporate .nav-link-hover {
		display: none;
	}
	[data-x-mode] .tabs-horizontal.tabs-corporate .nav-link.active .nav-link-main,
	[data-x-mode] .tabs-horizontal.tabs-corporate .nav-link:hover .nav-link-main {
		transform: none;
		opacity: 1;
		visibility: visible;
	}
	.tabs-horizontal.tabs-line .nav-tabs {
		border: 0;
		border-bottom: 4px solid #d7d7d7;
	}
	.tabs-horizontal.tabs-line .nav-item {
		display: inline-block;
	}
	.tabs-horizontal.tabs-line .nav-item:not(:last-child) {
		margin-right: 52px;
	}
	.tabs-horizontal.tabs-line .nav-link {
		position: relative;
		padding: 0 0 15px 0;
		background-color: transparent;
		color: #a5a5a5;
		border: 0;
	}
	.tabs-horizontal.tabs-line .nav-link::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 0;
		height: 4px;
		width: 0;
		background: #ffac62;
		transition: .22s ease;
	}
	.tabs-horizontal.tabs-line .nav-link.active,
	.tabs-horizontal.tabs-line .nav-link:hover {
		color: #ccc;
	}
	.tabs-horizontal.tabs-line .nav-link.active::after {
		width: 100%;
	}
	.tabs-horizontal.tabs-line * + .tab-content {
		margin-top: 30px;
	}
	.tabs-vertical {
		display: flex;
		align-items: flex-start;
	}
	.tabs-vertical .nav-tabs {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		flex-shrink: 0;
		max-width: 50%;
	}
	.tabs-vertical .nav-item {
		border: 0;
		width: 100%;
		text-align: left;
	}
	.tabs-vertical .nav-link.active,
	.tabs-vertical .nav-link:hover {
		box-shadow: 0 9px 21px 0 rgba(30, 30, 30, 0.13);
	}
	.tabs-vertical .tab-content {
		flex-grow: 1;
	}
	.tabs-vertical.tabs-corporate .nav-tabs {
		width: auto;
		min-width: 260px;
		border: 0;
	}
	.tabs-vertical.tabs-corporate .nav-item {
		margin: 0;
	}
	.tabs-vertical.tabs-corporate .nav-link {
		position: relative;
		padding: 17px 30px;
		border: 0;
		overflow: hidden;
		text-align: left;
	}
	.tabs-vertical.tabs-corporate .nav-item + .nav-item {
		margin-top: 2px;
	}
	.tabs-vertical.tabs-corporate .tab-content {
		padding: 0 0 0 30px;
	}
}

@media (min-width: 1200px) {
	.tabs-horizontal.tabs-corporate .tab-content {
		padding: 0;
	}
	.tabs-horizontal.tabs-corporate > .tab-content {
		max-height: 590px;
		min-height: 550px;
		overflow: hidden;
		padding-top: 30px;
	}
	[data-x-mode] .tabs-horizontal.tabs-corporate > .tab-content {
		max-height: none;
		min-height: initial;
	}
	.tabs-vertical.tabs-corporate .tab-content {
		padding: 0 0 0 45px;
	}
}

.tabs-horizontal.tabs-gallery > .nav-tabs {
	justify-content: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.tabs-horizontal.tabs-gallery .nav-item {
	padding: 25px 5px;
	min-width: 300px;
	flex-basis: 33.3%;
	max-width: 33.3%;
}

@media (min-width: 768px) {
	.tabs-horizontal.tabs-gallery .nav-item {
		padding: 25px 25px;
	}
}

.tabs-horizontal.tabs-gallery .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	padding: 25px;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 24px;
	background: rgba(255, 255, 255, 0.1);
}

.tabs-horizontal.tabs-gallery .nav-link img,
.tabs-horizontal.tabs-gallery .nav-link span {
	position: relative;
	z-index: 1;
}

.tabs-horizontal.tabs-gallery .nav-link span {
	display: inline-block;
	max-width: 180px;
}

.tabs-horizontal.tabs-gallery .nav-link img {
	box-shadow: 13px 0 30px -7px rgba(0, 0, 0, 0.49);
}

@media (min-width: 1200px) {
	.tabs-horizontal.tabs-gallery .nav-link img {
		max-width: 100%;
	}
}

.tabs-horizontal.tabs-gallery .nav-link:after, .tabs-horizontal.tabs-gallery .nav-link:before {
	content: "";
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	bottom: 100%;
	opacity: 0;
	z-index: 0;
	background: rgba(255, 255, 255, 0.13);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.8) 77%, rgba(255, 255, 255, 0) 100%);
}

.tabs-horizontal.tabs-gallery .nav-link * + * {
	margin-top: 30px;
}

@media (min-width: 1200px) {
	.tabs-horizontal.tabs-gallery .nav-link {
		flex-direction: row;
		justify-content: flex-start;
		padding: 0 10px 0 0;
		text-align: left;
	}
	.tabs-horizontal.tabs-gallery .nav-link * + * {
		margin-left: 6%;
		margin-top: 0;
	}
}

.tabs-horizontal.tabs-gallery .nav-link:after, .tabs-horizontal.tabs-gallery .nav-link:before {
	opacity: 1;
	transition-property: bottom, opacity;
	transition-timing-function: ease;
}

.tabs-horizontal.tabs-gallery .nav-link:after {
	transition-duration: 0.8s, 0.6s;
	bottom: -30%;
}

.tabs-horizontal.tabs-gallery .nav-link:before {
	transition-delay: .1s;
	transition-duration: .6s, .4s;
	bottom: 0;
	transform: rotate(45deg);
}

.tabs-horizontal.tabs-gallery .nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.tabs-horizontal.tabs-gallery .nav-link:hover:before {
	bottom: -50%;
}

.tabs-horizontal.tabs-gallery .nav-link:hover:after {
	opacity: .3;
}

.tabs-horizontal.tabs-gallery .nav-link.active,
.tabs-horizontal.tabs-gallery .nav-link:hover {
	transition-property: background;
	transition-delay: .5s;
	color: #fff;
}

[data-x-mode] .tabs-horizontal.tabs-gallery > .tab-content {
	padding-top: 40px;
}

/*rtl:begin:ignore*/
/*
*
* Owl Carousel
*/
.owl-carousel .animated {
	-webkit-animation-duration: 600ms;
	animation-duration: 600ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

/* ==========================
   Animaciones básicas
========================== */
@-webkit-keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}


/* ==========================
   Footer
========================== */
footer {
	text-align: center;
	padding: 15px 0;
	color: #fff;
	background-color: #222;
}

footer a {
	color: #ffac62;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

/* ==========================
   Modal básico
========================== */
.modal {
	display: none;
	position: fixed;
	z-index: 1050;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}

.modal .content-box {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 5px;
	position: relative;
	width: 90%;
	max-width: 500px;
}

.modal .close-modal-content-box {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #000;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
}
