/* Unified stylesheet: stylep.css + styles.css */

@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --zf-font-sans: "Wix Madefor Display", sans-serif;
  --zf-font-serif: "Libre Baskerville", serif;
}

body {
  margin: 0;
  padding: 0;
  text-decoration: none;
  height: 100vh;
  font-family: var(--zf-font-sans);
}

a {
  text-decoration: none;
}

.zf-heading,
.title-main,
.title-c,
.title-m,
.title-g,
.title_xg,
.apl-h1,
.apl-h2,
.apl-h3,
.apl-h4,
.apl-h5,
.apl-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--zf-font-serif);
  text-transform: uppercase;
}

.zf-subtitle {
  font-family: var(--zf-font-sans) !important;
  font-style: normal !important;
  line-height: 1.45;
  text-transform: none !important;
}

.zf-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
}

.zf-wordmark-zamora {
  font-family: var(--zf-font-serif) !important;
  font-style: italic !important;
  font-size: 14.9352941176vw !important;
  display: inline-block;
}

.zf-wordmark-floors {
  font-family: var(--zf-font-sans) !important;
  font-style: normal !important;
}

.zf-modal-dialog {
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
}

.zf-modal-card {
  --zf-modal-padding: 1.5rem;
  border: 1px solid rgba(4, 35, 30, 0.16);
  border-radius: 22px;
  background: #fffaf1;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.zf-modal-body {
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding-left: var(--zf-modal-padding) !important;
  padding-right: var(--zf-modal-padding) !important;
  padding-top: 0 !important;
  padding-bottom: var(--zf-modal-padding) !important;
  background: #fffaf1;
}

.zf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fffaf1;
  margin-left: calc(-1 * var(--zf-modal-padding));
  margin-right: calc(-1 * var(--zf-modal-padding));
  padding: 24px var(--zf-modal-padding) 14px;
  border-bottom: 1px solid rgba(4, 35, 30, 0.12);
}

.zf-modal-header-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 36px;
}

.zf-modal-title {
  margin: 0;
  color: #04231e;
  font-weight: 700;
}

.zf-modal-subtitle {
  margin: 4px 0 0;
  color: rgba(4, 35, 30, 0.68);
}

.zf-modal-close {
  border: 1px solid rgba(4, 35, 30, 0.16);
  background: #fffaf1;
  color: #04231e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.zf-modal-form {
  padding-top: 14px;
}

.zf-modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: #fffaf1;
  margin-left: calc(-1 * var(--zf-modal-padding));
  margin-right: calc(-1 * var(--zf-modal-padding));
  margin-bottom: calc(-1 * var(--zf-modal-padding));
  padding: 14px var(--zf-modal-padding) 24px;
  border-top: 1px solid rgba(4, 35, 30, 0.12);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (min-width: 992px) {
  .zf-modal-card {
    --zf-modal-padding: 3rem;
  }
}

/*INICIO HEADER*/
header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  top: 60px;
}

.menuP {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 20px;
  position: fixed;
  top: 30px;
  z-index: 1000;
  width: 500px;
  max-width: 90%;
}

.logo img {
  width: 200px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-desplegable {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #333;
  z-index: 1001;
  width: 100%;
  overflow: hidden;
  height: 0;
  transition: max-height 2s ease;
}

.menu-desplegable a {
  display: block;
  color: white;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
}

.menu-desplegable a:hover {
  color: #667469;
}

@media only screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu-desplegable {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    display: block;
    height: 100vh;
    /* Ocupa el 100% de la altura de la ventana */
    padding: 0;
  }

  .menu-desplegable.show {
    max-height: 100vh;
    opacity: 1;
    padding: 50px;
    /* Nuevo: Agregado padding cuando se muestra */
  }

  .menu-desplegable a {
    margin-right: 0;
  }
}

.menu-toggle {
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 1000;
  color: #ffedd4;
}

.menu.active {
  transform: translateY(0);
  transition: 3s;
}

body.menu-open {
  overflow: hidden;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 35, 30, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: transform 0.5s ease;
  z-index: 999;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: 3s;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  padding-top: 200px;
  padding-bottom: 30px;
}

.menu ul li {
  padding: 10px 0;
  justify-content: center;
  display: flex;
}

.menu ul li a {
  color: #ffedd4;
  text-decoration: none;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 200;
  transition: all 1s;
  padding: 10px 20px;
  width: 500px;
  justify-content: space-between;
  display: flex;
}

.menu ul li a:hover {
  background-color: #ffedd426;
  padding: 10px 70px;
  border-radius: 5px;
}

.menu ul li a i {
  display: inline-block;
  transition: transform 1s ease;
  /* Aplica la transición */
  margin-left: 80px;
}

.menu ul li a:hover i {
  transform: rotate(-45deg);
  transition: transform 1s ease;
}

#menu-icon {
  transition:
    transform 1s ease,
    opacity 1s ease;
}

.rotate-out {
  transform: rotate(180deg);
  opacity: 0;
}

.rotate-in {
  transform: rotate(0deg);
  opacity: 1;
}

/*FIN HEADER*/

.bg-dgr {
  background: rgb(4, 35, 30);
  background: linear-gradient(
    14deg,
    rgba(4, 35, 30, 1) 0%,
    rgba(177, 174, 156, 1) 46%,
    rgba(202, 194, 174, 1) 70%,
    rgba(255, 237, 212, 1) 100%
  );
}

.bg-p {
  background-color: #04231e;
  /*#04231e*/
}

.bg-pd {
  background-color: #ffedd417;
  backdrop-filter: blur(30px);
}

.bg-p-blur {
  background-color: rgba(25, 41, 35, 0.73);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.bg-p1 {
  background-color: #87bba5;
}

.bg-s {
  background-color: #e3ba94;
}

.bg-s1 {
  background-color: #ffedd4;
}

.txt-color-p {
  color: #101c17;
}

.txt-color-p1 {
  color: #101c1794;
}

.txt-color-s {
  color: #d8ab87;
}

.txt-color-s1 {
  color: #ffedd4;
}

.txt-color-s2 {
  color: #ffedd491;
}

.txt-cursiva {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}

.title-main {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.title-main span {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: #e3ba94;
}

.title-c {
  font-size: 25px;
  line-height: 1;
}

.title-m {
  font-size: 40px;
  line-height: 1;
}

.title-g {
  font-size: 90px;
  line-height: 1;
  margin: 0;
}

/* Tamaño de textos */
.title_xg {
  font-size: 19.2352941176vw;
  line-height: 1;
}

.title_xg span {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 16.9352941176vw;
}

.parrafo-c {
  font-size: 12px;
}

.parrafo-m {
  font-size: 16px;
  margin: 0;
}

.parrafo-g {
  font-size: 22px;
}

.padding-tp-max {
  padding: 150px 0px 0px;
}

.grupo-cards .card {
  background-color: #ffedd41f;
  padding: 20px;
  height: 100%;
  transition: 1s;
}

.grupo-cards .card:hover {
  border: solid 1px #ffedd4;
  transition: 1s;
}

.grupo-cards .card-p {
  background-color: #04231e;
  padding: 20px;
  height: 100%;
  transition: 1s;
}

.grupo-cards .card-p:hover {
  transition: 1s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #04231ec5;
}

.grupo-redes a img {
  width: 30px;
  margin-right: 20px;
}

.grupo-redes a:hover img {
  width: 30px;
  margin-right: 20px;
  cursor: pointer;
}

.mini-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.br {
  border-radius: 20px;
}

.cardInfo {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border: solid 0.5px #04231e59;
}

.cardInfo .link-img {
  margin-top: auto;
}

.cardInfo:hover {
  transition: 1s;
  border: solid 0.5px #04231e;
}

.cardInfo.border-p {
  padding: 30px;
  height: 100%;
  background-color: bisque;
}

.grupoEtiquetas div {
  border: solid 1px #04231e;
  padding: 10px;
  font-size: 12px;
  color: #04231e;
  margin-right: 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  transition: 1s;
}

.grupoEtiquetas div:hover {
  border: solid 1px #04231e;
  color: #c79a69;
  background-color: #04231e;
  transition: 1s;
  cursor: pointer;
}

.grupoEtiquetas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grupoEtiquetas input[type="checkbox"] {
  display: none;
}

.grupoEtiquetas label {
  border: solid 1px #ffedd4;
  padding: 10px 20px;
  font-size: 14px;
  color: #ffedd4;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}

.grupoEtiquetas label:hover {
  border: solid 1px #e3ba94;
  background-color: #04231e27;
  color: #e3ba94;
}

.grupoEtiquetas input[type="checkbox"]:checked + label {
  border-color: #c79a69;
  background-color: #04231e;
  color: #c79a69;
}

input,
select,
textarea,
.form-control,
.form-select {
  border: 1px solid rgba(4, 35, 30, 0.18) !important;
  border-radius: 0.375rem !important;
  background-color: #fffaf1 !important;
  color: #04231e !important;
  font-weight: 400 !important;
}

button {
  background-color: #e3ba94;
  border: solid 1px #e3ba94;
  padding: 10px;
  width: auto;
}

button:hover {
  background-color: #ebebeb;
}

.link-idioma {
  display: flex;
}

.link-idioma a {
  width: 50% !important;
  border-radius: 5px;
}

.link-idioma a:hover {
  background-color: #ffedd426;
  border-radius: 5px;
  text-align: center;
  padding: 10px 20px !important;
}

.link-idioma a.active {
  background-color: #ffedd426;
  border-radius: 5px;
  text-align: center;
  border: solid 1px #b79371;
}

.link-btn {
  background-color: #04231e;
  color: #ffedd4;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}

.link-btn:hover {
  background-color: #04231e;
  color: #b79371;
  cursor: pointer;
}

.link-img {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #04231e;
  color: beige;
  border-radius: 10px;
}

.link-img.color-s a,
.link-img.color-s i {
  color: #e3ba94;
}

.link-img a,
.link-img i {
  color: #ffedd4;
  margin-right: 20px;
}

.link-img i {
  transition: 1s;
  color: #b79371;
}

.link-img a span {
  margin-right: 20px;
  transition: 1s;
  cursor: pointer;
}

.link-img:hover a span {
  margin-right: 30px;
  transition: 1s;
  cursor: pointer;
}

.c-img-100 img {
  width: 100%;
}

.bb-s1 {
  border-bottom: solid 1px #ffedd4;
}

.bb-p {
  border-bottom: solid 1px #04231e53;
}

.card-p {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-p .link-img {
  margin-top: auto;
}

.card-p:hover i {
  margin-right: 0px;
  transition: 1s;
  cursor: pointer;
}

.nameLogo {
  font-size: 30px;
  margin: 0;
}

.parrafo-c {
  font-size: 12px;
}

/* Sección parallax */
.parallax {
  position: relative;
  height: 50vh;
  background-image: url("/img/floor_concreto.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.parallax2 {
  position: relative;
  height: 50vh;
  background-image: url("../img/protservs.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Para centrar el contenido sobre el fondo parallax */
.content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
}

.content h1 {
  font-size: 3rem;
  color: #333;
}

.title {
  width: 100%;
  top: 20vh;
  right: 0;
  overflow: hidden;
  pointer-events: none;

  p {
    white-space: nowrap;
    animation: marquee 10s linear infinite;
  }

  z-index: 10;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #04231e;
  flex-direction: column;
  overflow: hidden;
}

.contentPortada {
  text-align: left;
  position: relative;
  width: 900px;
  max-width: 100%;
  display: flex;
}

.paragraph {
  margin-bottom: 20px;
  font-size: 18px;
}

.image {
  width: 500px;
  height: auto;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.bottom-paragraph {
  font-size: 350px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
  line-height: 0;
  font-weight: 700;
}

.bottom-paragraph span {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}

.bottom-paragraph .zf-wordmark-zamora,
.bottom-paragraph .zf-wordmark-floors {
  font-size: inherit !important;
}

ul {
  list-style-type: none;
  /* Esto elimina los puntos */
}

@keyframes marquee {
  0% {
    transform: translate(0%, 0);
  }

  100% {
    transform: translate(-141.5vw, 0);
  }
}

.title {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: white;
  font-family: poppins;
  font-size: 100px;
  font-weight: 600;
}

.container-footer {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  background-image: url("../img/fondoFooter.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
}

footer {
  width: 100%;
}

.container-footer > .container {
  width: 100%;
}

.menuLateral {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-transform: uppercase;
}

.enlaceML,
.menuLateral .enlaceColorPrimary {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--color-primary);
  cursor: pointer;
}

.divIcon {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.divIcon img {
  width: 10px;
  margin-right: 10px;
}

.divIcon i {
  font-size: 10px;
  width: 18px;
  margin-right: 10px;
  text-align: center;
}

.enlaceML {
  color: #ffedd4;
  border-bottom: solid 1px #f2e5e11f;
}

.enlaceML:hover {
  color: #ffedd4;
  backdrop-filter: saturate(100%) blur(20px);
  transition: 1s;
}

/*Animacion de elevación de textos*/
/*Animacion de elevación de textos*/
.elevarArriba {
  opacity: 0;
  transition: all 1s;
  animation: elevarAbajo 1s;
}

.show {
  opacity: 1;
  transition: all 1s;
  animation: elevarArriba 1s;
}

.modal.show {
  opacity: 1;
  transition: all 1s;
  animation: elevarArriba 1s;
  backdrop-filter: blur(20px) !important;
}

/* Estilos para slider automatico */

.center {
  width: 100%;
  height: 100%;
}

.title {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: white;
  font-family: poppins;
  font-size: 100px;
  font-weight: 600;
}

.slider {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.itemsLeft {
  width: fit-content;
  display: flex;
  animation: slide 50s linear infinite;
}

.itemsRight {
  width: fit-content;
  display: flex;
  animation: slide 30s reverse infinite;
}

.item {
  width: 300px;
  border-radius: 10px;
  margin: 10px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes elevarArriba {
  100% {
    transform: translateY(0px);
  }

  0% {
    transform: translateY(60px);
  }
}

@keyframes elevarAbajo {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(60px);
  }
}

.invisibleAbajo {
  opacity: 1;
  transition: 1s;
}

/* Dispositivos pequeños (teléfonos en vertical, menos de 576px) */
@media (max-width: 575.98px) {
  button {
    width: 100%;
  }

  .title-m {
    font-size: 30px;
    line-height: 1;
  }

  .title-g {
    font-size: 40px;
    line-height: 1;
    margin: 0;
  }

  .bottom-paragraph {
    font-size: 160px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    white-space: normal;
    line-height: 1;
    font-weight: 700;
    text-align: center;
  }

  .image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    padding: 40px;
  }

  .contentPortada {
    text-align: left;
    position: relative;
    width: 900px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .title-main {
    line-height: 1;
    padding: 20px !important;
    margin-top: 150px;
  }
}

/* Dispositivos medianos (teléfonos en horizontal o tablets pequeñas, entre 576px y 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .title-g {
    font-size: 50px;
    line-height: 1;
    margin: 0;
  }

  .title-main {
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    margin-top: -180px;
  }
}

/* Dispositivos grandes (tablets y pequeños portátiles, entre 768px y 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .title-g {
    font-size: 50px;
    line-height: 1;
    margin: 0;
  }
}

/* Dispositivos extra grandes (pantallas medianas y grandes, entre 992px y 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Dispositivos extra extra grandes (pantallas grandes, más de 1200px) */
@media (min-width: 1200px) {
}


/* ---- styles.css section ---- */

/* Importación de iconos y fuentes */
@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap");
/* Variables */
:root {
  /* Colores base */
  --primary-color-50: #133934;
  --primary-color-60: #06352e;
  --primary-color-70: #04231e;
  --secondary-color: #FFEDD4;
  --tertiary-color: #333333;
  --success-color: #07b480;
  --danger-color: #dc3545;
  --warning-color: #ffe600;
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-color-glass: #1f1f1fab;


  /* Colores sutiles */
  --primary-color-subtle: #94cdff;
  --secondary-color-subtle: #ffe07a;
  --tertiary-color-subtle: #adadad;
  --success-color-subtle: #84ffda;
  --danger-color-subtle: #ffa6b0;
  --warning-color-subtle: #fff28b;
  --dark-color: #1f1f1f;
  --light-color: #f2f2f2;
  --light-color-glass: #f2f2f2ab;
}

/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Wix Madefor Display", sans-serif;
}

#modal-content{
  white-space: pre-line; /* Mantiene los saltos de línea y los espacios en blanco */
}

.apl-img-white{
  filter: invert(1) brightness(2);
}

main > :nth-child(1){
  padding-top: 100px;
}

.label_form{
  background: #FFEDD4;
  color: var(--primary-color-70);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: inline-block; /* o block si ya lo es */
}

/* Height responsive */
.apl-h-responsives{
  height: 100vh;
  }
  
  @media (min-width: 576px) {
    .apl-h-responsives{
      height: auto;
      }
  }

/* Mapa de colores en SCSS */
/* Generar colores de fondo y colores de texto */
.apl-bg-primary-50 {
  background-color: var(--primary-color-50);
  color: var(--black-color);
}
.apl-text-primary-50 {
  color: var(--primary-color-50) !important;
}

.apl-bg-primary-60 {
  background-color: var(--primary-color-60);
  color: var(--white-color);
}

.apl-text-primary-60 {
  color: var(--primary-color-60) !important;
}

.apl-bg-primary-70 {
  background-color: var(--primary-color-70);
  color: var(--white-color);
}

.apl-text-primary-70 {
  color: var(--primary-color-70) !important;
}

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

.apl-text-secondary {
  color: var(--secondary-color) !important;
}

.apl-bg-tertiary {
  background-color: var(--tertiary-color);
  color: var(--white-color);
}

.apl-text-tertiary {
  color: var(--tertiary-color) !important;
}

.apl-bg-success {
  background-color: var(--success-color);
  color: var(--white-color);
}

.apl-text-success {
  color: var(--success-color) !important;
}

.apl-bg-danger {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.apl-text-danger {
  color: var(--danger-color) !important;
}

.apl-bg-warning {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.apl-text-warning {
  color: var(--warning-color) !important;
}

.apl-bg-light {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.apl-text-light {
  color: var(--light-color) !important;
}

.apl-bg-dark {
  background-color: var(--dark-color) !important;
  color: var(--white-color);
}

.apl-text-dark {
  color: var(--dark-color) !important;
}

.apl-bg-black {
  background-color: var(--black-color);
  color: var(--white-color);
}

.apl-text-black {
  color: var(--black-color) !important;
}

.apl-bg-white {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.apl-text-white {
  color: var(--white-color) !important;
}

.apl-text-muted {
  color: #6c757d !important; /* Color gris específico */
}

/* Generar clases de fondo sutil */
.apl-bg-primary-subtle {
  background-color: var(--primary-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-primary-subtle {
  color: var(--primary-color-subtle) !important;
}

.apl-bg-secondary-subtle {
  background-color: var(--secondary-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-secondary-subtle {
  color: var(--secondary-color-subtle) !important;
}

.apl-bg-tertiary-subtle {
  background-color: var(--tertiary-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-tertiary-subtle {
  color: var(--tertiary-color-subtle) !important;
}

.apl-bg-success-subtle {
  background-color: var(--success-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-success-subtle {
  color: var(--success-color-subtle) !important;
}

.apl-bg-danger-subtle {
  background-color: var(--danger-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-danger-subtle {
  color: var(--danger-color-subtle) !important;
}

.apl-bg-warning-subtle {
  background-color: var(--warning-color-subtle);
  color: var(--tertiary-color);
}

.apl-text-warning-subtle {
  color: var(--warning-color-subtle) !important;
}

/* Generar clases para fondos tipo "glass" */
.apl-bg-dark-glass {
  background-color: var(--dark-color-glass);
  backdrop-filter: blur(10px);
  color: var(--white-color);
}

.apl-bg-light-glass {
  background-color: var(--light-color-glass);
  backdrop-filter: blur(10px);
  color: var(--white-color);
}

/*Estilos para links */
.apl-link, a {
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-weight: 300 !important;
  font-size: 14px;
  color: var(--primary-color-70);
}

.apl-bg-black.apl-link, .apl-bg-black a, .apl-bg-dark.apl-link, .apl-bg-dark a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300 !important;
  font-size: 14px !important;
  color: var(--primary-color-50) !important;
}

.apl-link:hover, a:hover{
  opacity: 0.8;
}

.apl-link i, a i{
  margin-left: 0px;
  transition: 1s;
}

ul{
  margin-bottom: 0 !important;
}

li {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.apl-link:hover i, a:hover i{
  margin-left: 10px;
  transition: 1s;
}

/* Estilos base de los botones */
.apl-btn,
button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.apl-btn-scroll{
margin-bottom: 20px;
}

.apl-btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}
.apl-btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--primary-color) 85%, black 15%);
}
.apl-btn-primary:active {
  background-color: color-mix(in srgb, var(--primary-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--primary-color) 80%, black 20%);
}

.apl-btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}
.apl-btn-secondary:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
}
.apl-btn-secondary:active {
  background-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--secondary-color) 80%, black 20%);
}

.apl-btn-tertiary {
  background-color: var(--tertiary-color);
  color: var(--white-color);
  border-color: var(--tertiary-color);
}
.apl-btn-tertiary:hover {
  background-color: color-mix(in srgb, var(--tertiary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
}
.apl-btn-tertiary:active {
  background-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--tertiary-color) 80%, black 20%);
}

.apl-btn-success {
  background-color: var(--success-color);
  color: var(--white-color);
  border-color: var(--success-color);
}
.apl-btn-success:hover {
  background-color: color-mix(in srgb, var(--success-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
}
.apl-btn-success:active {
  background-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--success-color) 80%, black 20%);
}

.apl-btn-danger {
  background-color: var(--danger-color);
  color: var(--white-color);
  border-color: var(--danger-color);
}
.apl-btn-danger:hover {
  background-color: color-mix(in srgb, var(--danger-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
}
.apl-btn-danger:active {
  background-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--danger-color) 80%, black 20%);
}

.apl-btn-warning {
  background-color: var(--warning-color);
  color: var(--white-color);
  border-color: var(--warning-color);
}
.apl-btn-warning:hover {
  background-color: color-mix(in srgb, var(--warning-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
}
.apl-btn-warning:active {
  background-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--warning-color) 80%, black 20%);
}

.apl-btn-light {
  background-color: var(--light-color);
  color: var(--white-color);
  border-color: var(--light-color);
}
.apl-btn-light:hover {
  background-color: color-mix(in srgb, var(--light-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
}
.apl-btn-light:active {
  background-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--light-color) 80%, black 20%);
}

.apl-btn-dark {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
.apl-btn-dark:hover {
  background-color: color-mix(in srgb, var(--dark-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
}
.apl-btn-dark:active {
  background-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--dark-color) 80%, black 20%);
}

.apl-btn-white {
  background-color: var(--white-color);
  color: var(--white-color);
  border-color: var(--white-color);
}
.apl-btn-white:hover {
  background-color: color-mix(in srgb, var(--white-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
}
.apl-btn-white:active {
  background-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
  border-color: color-mix(in srgb, var(--white-color) 80%, black 20%);
}

/* Generar botones con borde (outline) */
.apl-btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.apl-btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.apl-btn-outline-primary:active {
  background-color: color-mix(in srgb, var(--primary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--primary-color) 85%, black 15%);
}

.apl-btn-outline-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.apl-btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.apl-btn-outline-secondary:active {
  background-color: color-mix(in srgb, var(--secondary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
}

.apl-btn-outline-tertiary {
  background-color: transparent;
  color: var(--tertiary-color);
  border: 2px solid var(--tertiary-color);
}
.apl-btn-outline-tertiary:hover {
  background-color: var(--tertiary-color);
  color: var(--white-color);
}
.apl-btn-outline-tertiary:active {
  background-color: color-mix(in srgb, var(--tertiary-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
}

.apl-btn-outline-success {
  background-color: transparent;
  color: var(--success-color);
  border: 2px solid var(--success-color);
}
.apl-btn-outline-success:hover {
  background-color: var(--success-color);
  color: var(--white-color);
}
.apl-btn-outline-success:active {
  background-color: color-mix(in srgb, var(--success-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
}

.apl-btn-outline-danger {
  background-color: transparent;
  color: var(--danger-color);
  border: 2px solid var(--danger-color);
}
.apl-btn-outline-danger:hover {
  background-color: var(--danger-color);
  color: var(--white-color);
}
.apl-btn-outline-danger:active {
  background-color: color-mix(in srgb, var(--danger-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
}

.apl-btn-outline-warning {
  background-color: transparent;
  color: var(--warning-color);
  border: 2px solid var(--warning-color);
}
.apl-btn-outline-warning:hover {
  background-color: var(--warning-color);
  color: var(--white-color);
}
.apl-btn-outline-warning:active {
  background-color: color-mix(in srgb, var(--warning-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
}

.apl-btn-outline-light {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
}
.apl-btn-outline-light:hover {
  background-color: var(--light-color);
  color: var(--white-color);
}
.apl-btn-outline-light:active {
  background-color: color-mix(in srgb, var(--light-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
}

.apl-btn-outline-dark {
  background-color: transparent;
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
}
.apl-btn-outline-dark:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.apl-btn-outline-dark:active {
  background-color: color-mix(in srgb, var(--dark-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
}

.apl-btn-outline-white {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}
.apl-btn-outline-white:hover {
  background-color: var(--white-color);
  color: var(--white-color);
}
.apl-btn-outline-white:active {
  background-color: color-mix(in srgb, var(--white-color) 90%, black 10%);
  border-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
}

.apl-img-flex{
    width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

img{
  vertical-align: middle !important;
}

.apl-jc-between{
  display: flex;
  justify-content: space-between;
}

.apl-rounded-circle {
  width: 100px;         /* o cualquier tamaño fijo que necesites */
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* Tarjetas de información */
.apl-card-manual {
  flex: 0 0 auto;
  width: 350px; /* o el ancho que quieras */
  scroll-snap-align: start; /* para alinearse en scroll */
}

.apl-content-br-white{
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 20px;
}

.apl-scroll-x {
  display: flex;
  overflow-x: auto;
  gap: 1rem; /* opcional: separa las tarjetas */
  scroll-snap-type: x mandatory; /* opcional: para que se "ajuste" al deslizar */
  -webkit-overflow-scrolling: touch; /* para scroll más suave en iOS */
  scroll-behavior: smooth;
}

.apl-scroll-x::-webkit-scrollbar {
  display: none; /* oculta la barra de scroll si quieres un diseño más limpio */
}

.apl-card {
  position: relative;
  min-width: 0;
  word-wrap: break-word;
  border-radius: 0.375rem;
  padding: 1.25rem;
  height: 100%;
}

.apl-card img{
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.apl-card a {
  bottom: 20px;
}

.apl-card-body {
  padding: 1.25rem;
  flex: 1 1 auto;
  min-height: 1px;
}
.apl-card-header, .apl-card-footer {
  padding: 0.75rem;
  background: #f7f7f7;
  border-top: 1px solid #ddd;
}
.apl-card-header {
  border-bottom: 1px solid #ddd;
}
.apl-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.apl-card-img-top, .apl-card-img-bottom {
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
}
.apl-card-img-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.apl-card-img-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.apl-card-link {
  color: #007bff;
  text-decoration: none;
}
.apl-card-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Tamaños de Textos Títulos */
.apl-h1,
.apl-h2,
.apl-h3,
.apl-h4,
.apl-h5,
.apl-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.1;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
  color: #6c757d; 
}

.apl-mini-txt{
  font-size: 10px;
}

.apl-fw-bold{
  font-weight: 600;
}

.apl-h1,
h1 {
  font-size: 3.5rem;
}

.apl-h2,
h2 {
  font-size: 2.5rem;
}

.apl-h3,
h3 {
  font-size: 2.25rem;
}

.apl-h4,
h4 {
  font-size: 2rem;
}

.apl-h5,
h5 {
  font-size: 1.75rem;
}

.apl-h6,
h6 {
  font-size: 1.5rem;
}

@media (max-width: 576px) {
  .apl-h1,
h1 {
  font-size: 2.5rem !important;
}

.apl-h2,
h2 {
  font-size: 2.5rem;
}

.apl-h3,
h3 {
  font-size: 2.25rem;
}

.apl-h4,
h4 {
  font-size: 2rem;
}

.apl-h5,
h5 {
  font-size: 1.75rem;
}

.apl-h6,
h6 {
  font-size: 1.5rem;
}
}

/* Alineación de textos */
.apl-text-left {
  text-align: left;
}

.apl-text-center {
  text-align: center;
}

.apl-text-right {
  text-align: right;
}

.apl-text-justify {
  text-align: justify;
}

/* Definimos los valores de margen y padding */
/* Generamos clases para márgenes y paddings */
/* Margen */
.apl-m-0 {
  margin: 0 !important;
}

.apl-mt-0 {
  margin-top: 0 !important;
}

.apl-mb-0 {
  margin-bottom: 0 !important;
}

.apl-ms-0 {
  margin-inline-start: 0 !important;
}

.apl-me-0 {
  margin-inline-end: 0 !important;
}

.apl-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.apl-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Padding */
.apl-p-0 {
  padding: 0 !important;
}

.apl-pt-0 {
  padding-top: 0 !important;
}

.apl-pb-0 {
  padding-bottom: 0 !important;
}

.apl-ps-0 {
  padding-inline-start: 0 !important;
}

.apl-pe-0 {
  padding-inline-end: 0 !important;
}

.apl-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.apl-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Margen */
.apl-m-1 {
  margin: 0.25rem !important;
}

.apl-mt-1 {
  margin-top: 0.25rem !important;
}

.apl-mb-1 {
  margin-bottom: 0.25rem !important;
}

.apl-ms-1 {
  margin-inline-start: 0.25rem !important;
}

.apl-me-1 {
  margin-inline-end: 0.25rem !important;
}

.apl-mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.apl-my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

/* Padding */
.apl-p-1 {
  padding: 0.25rem !important;
}

.apl-pt-1 {
  padding-top: 0.25rem !important;
}

.apl-pb-1 {
  padding-bottom: 0.25rem !important;
}

.apl-ps-1 {
  padding-inline-start: 0.25rem !important;
}

.apl-pe-1 {
  padding-inline-end: 0.25rem !important;
}

.apl-px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.apl-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

/* Margen */
.apl-m-2 {
  margin: 0.5rem !important;
}

.apl-mt-2 {
  margin-top: 0.5rem !important;
}

.apl-mb-2 {
  margin-bottom: 0.5rem !important;
}

.apl-ms-2 {
  margin-inline-start: 0.5rem !important;
}

.apl-me-2 {
  margin-inline-end: 0.5rem !important;
}

.apl-mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.apl-my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* Padding */
.apl-p-2 {
  padding: 0.5rem !important;
}

.apl-pt-2 {
  padding-top: 0.5rem !important;
}

.apl-pb-2 {
  padding-bottom: 0.5rem !important;
}

.apl-ps-2 {
  padding-inline-start: 0.5rem !important;
}

.apl-pe-2 {
  padding-inline-end: 0.5rem !important;
}

.apl-px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.apl-py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Margen */
.apl-m-3 {
  margin: 1rem !important;
}

.apl-mt-3 {
  margin-top: 1rem !important;
}

.apl-mb-3 {
  margin-bottom: 1rem !important;
}

.apl-ms-3 {
  margin-inline-start: 1rem !important;
}

.apl-me-3 {
  margin-inline-end: 1rem !important;
}

.apl-mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.apl-my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

/* Padding */
.apl-p-3 {
  padding: 1rem !important;
}

.apl-pt-3 {
  padding-top: 1rem !important;
}

.apl-pb-3 {
  padding-bottom: 1rem !important;
}

.apl-ps-3 {
  padding-inline-start: 1rem !important;
}

.apl-pe-3 {
  padding-inline-end: 1rem !important;
}

.apl-px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.apl-py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Margen */
.apl-m-4 {
  margin: 1.5rem !important;
}

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

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

.apl-ms-4 {
  margin-inline-start: 1.5rem !important;
}

.apl-me-4 {
  margin-inline-end: 1.5rem !important;
}

.apl-mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.apl-my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Padding */
.apl-p-4 {
  padding: 1.5rem !important;
}

.apl-pt-4 {
  padding-top: 1.5rem !important;
}

.apl-pb-4 {
  padding-bottom: 1.5rem !important;
}

.apl-ps-4 {
  padding-inline-start: 1.5rem !important;
}

.apl-pe-4 {
  padding-inline-end: 1.5rem !important;
}

.apl-px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.apl-py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* Margen */
.apl-m-5 {
  margin: 3rem !important;
}

.apl-mt-5 {
  margin-top: 3rem !important;
}

.apl-mb-5 {
  margin-bottom: 3rem !important;
}

.apl-ms-5 {
  margin-inline-start: 3rem !important;
}

.apl-me-5 {
  margin-inline-end: 3rem !important;
}

.apl-mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.apl-my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* Padding */
.apl-p-5 {
  padding: 3rem !important;
}

.apl-pt-5 {
  padding-top: 3rem !important;
}

.apl-pb-5 {
  padding-bottom: 3rem !important;
}

.apl-ps-5 {
  padding-inline-start: 3rem !important;
}

.apl-pe-5 {
  padding-inline-end: 3rem !important;
}

.apl-px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.apl-py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Margen */
.apl-m-auto {
  margin: auto !important;
}

.apl-mt-auto {
  margin-top: auto !important;
}

.apl-mb-auto {
  margin-bottom: auto !important;
}

.apl-ms-auto {
  margin-inline-start: auto !important;
}

.apl-me-auto {
  margin-inline-end: auto !important;
}

.apl-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.apl-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* Padding */
.apl-p-auto {
  padding: auto !important;
}

.apl-pt-auto {
  padding-top: auto !important;
}

.apl-pb-auto {
  padding-bottom: auto !important;
}

.apl-ps-auto {
  padding-inline-start: auto !important;
}

.apl-pe-auto {
  padding-inline-end: auto !important;
}

.apl-px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.apl-py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

/* Variables */
/* Contenedor principal (ajustado según breakpoint) */
.apl-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 576px) {
  .apl-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .apl-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .apl-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .apl-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .apl-container {
    max-width: 1320px;
  }
}

/* Contenedor de ancho completo */
.apl-container-wide {
  width: 100vw;
}

/* Fila */
.apl-row {
  display: flex;
  flex-wrap: wrap;
}
.apl-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

/* Mixin para generar columnas */
/* Generar columnas globales */
.apl-col-1 {
  width: calc(8.3333333333% * 1);
}

.apl-col-2 {
  width: calc(8.3333333333% * 2);
}

.apl-col-3 {
  width: calc(8.3333333333% * 3);
}

.apl-col-4 {
  width: calc(8.3333333333% * 4);
}

.apl-col-5 {
  width: calc(8.3333333333% * 5);
}

.apl-col-6 {
  width: calc(8.3333333333% * 6);
}

.apl-col-7 {
  width: calc(8.3333333333% * 7);
}

.apl-col-8 {
  width: calc(8.3333333333% * 8);
}

.apl-col-9 {
  width: calc(8.3333333333% * 9);
}

.apl-col-10 {
  width: calc(8.3333333333% * 10);
}

.apl-col-11 {
  width: calc(8.3333333333% * 11);
}

.apl-col-12 {
  width: calc(8.3333333333% * 12);
}

/* Generar columnas para cada breakpoint */
@media (min-width: 576px) {
  .apl-col-sm-1 {
    width: calc(8.3333333333% * 1);
  }
  .apl-col-sm-2 {
    width: calc(8.3333333333% * 2);
  }
  .apl-col-sm-3 {
    width: calc(8.3333333333% * 3);
  }
  .apl-col-sm-4 {
    width: calc(8.3333333333% * 4);
  }
  .apl-col-sm-5 {
    width: calc(8.3333333333% * 5);
  }
  .apl-col-sm-6 {
    width: calc(8.3333333333% * 6);
  }
  .apl-col-sm-7 {
    width: calc(8.3333333333% * 7);
  }
  .apl-col-sm-8 {
    width: calc(8.3333333333% * 8);
  }
  .apl-col-sm-9 {
    width: calc(8.3333333333% * 9);
  }
  .apl-col-sm-10 {
    width: calc(8.3333333333% * 10);
  }
  .apl-col-sm-11 {
    width: calc(8.3333333333% * 11);
  }
  .apl-col-sm-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 768px) {
  .apl-col-md-1 {
    width: calc(8.3333333333% * 1);
  }
  .apl-col-md-2 {
    width: calc(8.3333333333% * 2);
  }
  .apl-col-md-3 {
    width: calc(8.3333333333% * 3);
  }
  .apl-col-md-4 {
    width: calc(8.3333333333% * 4);
  }
  .apl-col-md-5 {
    width: calc(8.3333333333% * 5);
  }
  .apl-col-md-6 {
    width: calc(8.3333333333% * 6);
  }
  .apl-col-md-7 {
    width: calc(8.3333333333% * 7);
  }
  .apl-col-md-8 {
    width: calc(8.3333333333% * 8);
  }
  .apl-col-md-9 {
    width: calc(8.3333333333% * 9);
  }
  .apl-col-md-10 {
    width: calc(8.3333333333% * 10);
  }
  .apl-col-md-11 {
    width: calc(8.3333333333% * 11);
  }
  .apl-col-md-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 992px) {
  .apl-col-lg-1 {
    width: calc(8.3333333333% * 1);
  }
  .apl-col-lg-2 {
    width: calc(8.3333333333% * 2);
  }
  .apl-col-lg-3 {
    width: calc(8.3333333333% * 3);
  }
  .apl-col-lg-4 {
    width: calc(8.3333333333% * 4);
  }
  .apl-col-lg-5 {
    width: calc(8.3333333333% * 5);
  }
  .apl-col-lg-6 {
    width: calc(8.3333333333% * 6);
  }
  .apl-col-lg-7 {
    width: calc(8.3333333333% * 7);
  }
  .apl-col-lg-8 {
    width: calc(8.3333333333% * 8);
  }
  .apl-col-lg-9 {
    width: calc(8.3333333333% * 9);
  }
  .apl-col-lg-10 {
    width: calc(8.3333333333% * 10);
  }
  .apl-col-lg-11 {
    width: calc(8.3333333333% * 11);
  }
  .apl-col-lg-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 1200px) {
  .apl-col-xl-1 {
    width: calc(8.3333333333% * 1);
  }
  .apl-col-xl-2 {
    width: calc(8.3333333333% * 2);
  }
  .apl-col-xl-3 {
    width: calc(8.3333333333% * 3);
  }
  .apl-col-xl-4 {
    width: calc(8.3333333333% * 4);
  }
  .apl-col-xl-5 {
    width: calc(8.3333333333% * 5);
  }
  .apl-col-xl-6 {
    width: calc(8.3333333333% * 6);
  }
  .apl-col-xl-7 {
    width: calc(8.3333333333% * 7);
  }
  .apl-col-xl-8 {
    width: calc(8.3333333333% * 8);
  }
  .apl-col-xl-9 {
    width: calc(8.3333333333% * 9);
  }
  .apl-col-xl-10 {
    width: calc(8.3333333333% * 10);
  }
  .apl-col-xl-11 {
    width: calc(8.3333333333% * 11);
  }
  .apl-col-xl-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 1400px) {
  .apl-col-xxl-1 {
    width: calc(8.3333333333% * 1);
  }
  .apl-col-xxl-2 {
    width: calc(8.3333333333% * 2);
  }
  .apl-col-xxl-3 {
    width: calc(8.3333333333% * 3);
  }
  .apl-col-xxl-4 {
    width: calc(8.3333333333% * 4);
  }
  .apl-col-xxl-5 {
    width: calc(8.3333333333% * 5);
  }
  .apl-col-xxl-6 {
    width: calc(8.3333333333% * 6);
  }
  .apl-col-xxl-7 {
    width: calc(8.3333333333% * 7);
  }
  .apl-col-xxl-8 {
    width: calc(8.3333333333% * 8);
  }
  .apl-col-xxl-9 {
    width: calc(8.3333333333% * 9);
  }
  .apl-col-xxl-10 {
    width: calc(8.3333333333% * 10);
  }
  .apl-col-xxl-11 {
    width: calc(8.3333333333% * 11);
  }
  .apl-col-xxl-12 {
    width: calc(8.3333333333% * 12);
  }
}
/* Clase para columnas autoajustables */
.apl-col-auto {
  width: auto;
}

/* Estilos del navbar */
.apl-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  padding: 1rem;
}

.apl-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.apl-navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.apl-navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.apl-navbar-nav {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.apl-nav-item {
  position: relative;
}

.apl-nav-link {
  text-decoration: none;
  color: #000;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.apl-nav-link:hover {
  background-color: #e2e6ea;
  border-radius: 5px;
}

.apl-dropdown {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.apl-nav-item:hover .apl-dropdown {
  display: block;
}

.apl-dropdown-item {
  padding: 0.5rem 1rem;
}

.apl-dropdown-item:hover {
  background-color: #e2e6ea;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .apl-navbar-header {
    flex-direction: row;
  }
  .apl-navbar-toggler {
    display: block;
  }
  .apl-navbar-collapse {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
  }
  .apl-navbar-collapse.show {
    height: auto;
    opacity: 1;
  }
  .apl-dropdown {
    position: static;
    display: none;
    width: 100%;
  }
  .apl-nav-item:hover .apl-dropdown {
    display: block;
  }
}
@media (min-width: 769px) {
  .apl-navbar-collapse {
    display: flex !important;
    height: auto !important;
    opacity: 1 !important;
  }
}
.apl-nav-dark {
  color: var(--white-color);
}

.apl-nav-light {
  color: var(--dark-color);
}

.apl-content-center {
  display: flex;
  align-items: center;
  position: relative;
}

/* Clases para opacidad */

.apl-opacity-10 {
  opacity: 0.1;
}
.apl-opacity-20 {
  opacity: 0.2;
}
.apl-opacity-30 {
  opacity: 0.3;
}
.apl-opacity-40 {
  opacity: 0.4;
}
.apl-opacity-50 {
  opacity: 0.5;
}
.apl-opacity-60 {
  opacity: 0.6;
}
.apl-opacity-70 {
  opacity: 0.7;
}
.apl-opacity-80 {
  opacity: 0.8;
}
.apl-opacity-90 {
  opacity: 0.9;
}
.apl-opacity-100 {
  opacity: 1;
}

/* Clases de altura en vh */
.apl-h-vh-10 {
  height: 10vh;
}

.apl-h-vh-20 {
  height: 20vh;
}

.apl-h-vh-30 {
  height: 30vh;
}

.apl-h-vh-40 {
  height: 40vh;
}

.apl-h-vh-50 {
  height: 50vh;
}

.apl-h-vh-60 {
  height: 60vh;
}

.apl-h-vh-70 {
  height: 70vh;
}

.apl-h-vh-80 {
  height: 80vh;
}

.apl-h-vh-90 {
  height: 90vh;
}

.apl-h-vh-100 {
  height: 100vh;
}

/* Clases de altura en porcentaje */
.apl-h-porc-10 {
  height: 10%;
}

.apl-h-porc-20 {
  height: 20%;
}

.apl-h-porc-30 {
  height: 30%;
}

.apl-h-porc-40 {
  height: 40%;
}

.apl-h-porc-50 {
  height: 50%;
}

.apl-h-porc-60 {
  height: 60%;
}

.apl-h-porc-70 {
  height: 70%;
}

.apl-h-porc-80 {
  height: 80%;
}

.apl-h-porc-90 {
  height: 90%;
}

.apl-h-porc-100 {
  height: 100%;
}

/* Clases de ancho en vh */
.apl-w-vh-10 {
  width: 10vh;
}

.apl-w-vh-20 {
  width: 20vh;
}

.apl-w-vh-30 {
  width: 30vh;
}

.apl-w-vh-40 {
  width: 40vh;
}

.apl-w-vh-50 {
  width: 50vh;
}

.apl-w-vh-60 {
  width: 60vh;
}

.apl-w-vh-70 {
  width: 70vh;
}

.apl-w-vh-80 {
  width: 80vh;
}

.apl-w-vh-90 {
  width: 90vh;
}

.apl-w-vh-100 {
  width: 100vh;
}

/* Clases de ancho en porcentaje */
.apl-w-porc-10 {
  width: 10%;
}

.apl-w-porc-20 {
  width: 20%;
}

.apl-w-porc-30 {
  width: 30%;
}

.apl-w-porc-40 {
  width: 40%;
}

.apl-w-porc-50 {
  width: 50%;
}

.apl-w-porc-60 {
  width: 60%;
}

.apl-w-porc-70 {
  width: 70%;
}

.apl-w-porc-80 {
  width: 80%;
}

.apl-w-porc-90 {
  width: 90%;
}

.apl-w-porc-100 {
  width: 100%;
}

/*
****************************
POSICIONES
****************************
*/
.apl-pos-static {
  position: static;
}

.apl-pos-relative {
  position: relative;
}

.apl-pos-absolute {
  position: absolute;
}

.apl-pos-fixed {
  position: fixed;
}

.apl-pos-sticky {
  position: sticky;
}

/*
****************************
OBJECT FIT
****************************
*/
.apl-object-fit-cover {
  object-fit: cover;
}

.apl-object-fit-contain {
  object-fit: contain;
}

.apl-object-fit-fill {
  object-fit: fill;
}

.apl-object-fit-none {
  object-fit: none;
}

.apl-object-fit-scale-down {
  object-fit: scale-down;
}

/*
****************************
FLEX
****************************
*/
.apl-d-flex {
  display: flex;
}

.apl-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.apl-flex-column {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.apl-flex-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.apl-flex-nowrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.apl-flex-justify-start {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.apl-flex-justify-center {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}

.apl-flex-justify-end {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
}

.apl-flex-align-center {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.apl-flex-item {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}

.apl-flex-item-grow {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}

.apl-flex-item-shrink {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}

.apl-flex-item-basis {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 200px;
  order: 0;
  align-self: auto;
}

.apl-flex-item-order {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 2;
  align-self: auto;
}

.apl-flex-item-align-self {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: center;
}

section {
  padding: 50px 0px;
}

.apl-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.apl-bg-hero {
  background-image: url("../img/fotografias/bg-hero.jpg");
  background-size: cover;
  color: var(--white-color);
}

.apl-flex-center-xy{
  display: flex;
  justify-content: center;
  align-items: center;
}

.apl-center-text-xy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/*# sourceMappingURL=main.css.map */


/* Admin compatibility alias */
.apl-h-responsive{height:100vh;}
@media (min-width:576px){.apl-h-responsive{height:auto;}}
