@charset "UTF-8";

html { box-sizing: border-box; font-size: var(--font-size-base); overflow-x: hidden; }
*, *::before, *::after { box-sizing: inherit; }

/* ------------------------------------- constants  styles--------------------------------- */
/*please do not modify this section, it is used for the constants styles*/

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.whatsapp-button {
  position: fixed;
  bottom: 100px; /* Adjust this value to set the distance from the bottom of the page */
  right: 100px; /* Adjust this value to set the distance from the right side of the page */
  padding: 10px 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
  z-index: 1000;
}


.clNavbarBrand{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}


#dvHeaderLogo{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  min-width: 200px;
  max-width: 300px;
}


.clPost1 {
  max-width: 49%;
  margin: 5px auto;
  padding: 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  flex:1;
  min-width: 40%;
  
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: var(--radius-md);

}

.clPost1 .clPostTitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.clPost1.clPostBody {
  display: block;
}

/* Imagen con shape-outside para que el texto fluya alrededor */
.clPost1 .clPostImage {
  max-width: 400px;
  width: 400px;
  height: auto;
  aspect-ratio: 1 / 0.666;
  object-fit: cover;
  border-radius: 8px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  shape-outside: margin-box;
  shape-margin: 20px;
}

/* Texto que fluye alrededor de la imagen - display: contents hace que el contenedor "desaparezca" */
.clPost1.clPostContent {
  line-height: 1.6;
  color: var(--color-neutral-dark);
  text-align: justify;
  display: contents;
}



/*****************************************************************post2 styles ************************************************* */
.clPost2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  
}

.clPost2 .clPostTitle{
  width: 100%;
  text-align: center;
  margin-bottom: 20px;

  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  
}

.clPost2 .clPostImage{
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 1 / 0.666;
  border-radius: var(--radius-md);
  overflow: hidden;
  
  margin:5px 5px 10px 5px;

  
  
  
}


.clNavbarBrand{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}



.clPost2 .clPostBody{
  width: 100%;
  display: flex;
  flex-direction: column;
  
  
}


.clPost2 .clPostContent{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: justify;
  
}

/*****************************************post3 styles ************************************************* */
/* Card */
.clPost3 {
  display: flex;
  gap: 20px;
  background-color: var(--color-primary);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
}

/* Photo */
.clPost3 .clPostImage {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto;
  
  overflow: hidden;
  box-shadow: var(--shadow);
}

.clPost3 .clPostImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.clPost3 .clPostContent {
  flex: 1;
}

.clPost3 .clPostTitle {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #a6aaac;
  margin-bottom: 4px;
  
}


.clPost3 .clPostContent {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}


.clBigCardsBox{width: 100%;  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; align-items:flex-start; }
  
  
.clBigCardsBox .clTeamCard{display:flex; flex:1; max-width: 32%; min-width: 26%; flex-direction: column; align-items: center; justify-content: center;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; margin: 10px;padding: 10px;  border-radius: 10px; border: 1px rgba(0, 0, 0, 0.3) solid;
}


 .clTeamHeader{width: 100%; display: flex; flex-direction: row; flex-wrap: nowrap;}
.clTeamHeader img{width: 100px; height: 100px; object-fit: cover; border-radius: 50%; max-width: 100px; max-height: 100px;}

.clTeamHeader h3{font-size: 1.5rem; font-weight: bold;  margin-left: 10px;}




/* Responsive */
@media (max-width: 600px) {
  .team-card {
      flex-direction: column;
      text-align: center;
  }
}



/***********************************************************************************/

.clSelectItem{background:rgba(6, 9, 14, 0.318); color: #f88527; display: flex; flex-direction: row; align-items: center;      justify-content: center;
   text-decoration: underline; font-weight: bold; font-size: 1.4em !important; line-height: 32px; padding: 2px 5px; border-radius: 7px;}


/*****************************************end of post3 styles ************************************************* */





.clSectionHeader{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
}

.clBadge{
  background: linear-gradient(135deg, var(--color-neutral-dark) 0%, #1a2e3a 100%);
  color: var(--color-white);
  padding: 10px;
  font-variant: small-caps;
  border-radius: 10px;
  margin: 20px;

}


.whatsapp-button:hover {
  background-color: #128C7E;  
  
}

.clSectionBox{ width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;  }

.clSectionHeader{width: 100%; text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 20px; }

.clSectionHeader .clBadge {
  font-weight: 700;
  color: var(--color-accent);
}



.clSectionHeader .clHeaderH2{font-size: 1.5rem; font-weight: bold; margin-bottom: 20px; color: var(--color-text-muted)  }

.clSectionHeader p{font-size: 1rem; font-variant: small-caps;  margin-bottom: 20px; color: var(--color-text); max-width: 800px; margin: 0 auto;}


.clContentSection_old { background: var(--color-surface); border: 1px solid var(--color-border); padding: var(--space-6); 
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);  width: 100%; }

  



  .clContentSection {
    background: var(--color-surface);  padding: var(--space-6); 
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm); display: flex; flex-direction: row; flex-wrap: wrap;
    
  
    
  
  
  }
  
  



.clSctionFooter{text-align: center; font-size: 1.5rem; font-weight: bold; margin-top: 20px;}


.clCardsBox{width:100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around;}
.clVideoBox{width:100%; display: flex; flex-direction: column; align-items: center; justify-content: center;}


.clCardsBox >article {
  
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display:flex; flex:1;max-width: 43%; min-width: 24%;
  margin: 3px;
}


.cl2Kbox{width:100%;  flex-direction: column;}
.clFhdBox{width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;align-items:flex-start; }






.clFhdarticle{ min-width: 40%;  flex:1; margin: 3px;   max-width: 1000px; padding: 10px;  }
.cl2Karicle{ width: 100%; max-width: 100%;}


.clHdarticle{ max-width:700px; min-width: 25%;  flex:1; margin: 3px;  padding: 10px; }











.clFullPage { display: flex; min-height: 100vh; flex-direction: column; width: 100%; overflow-x: hidden; }
.clFullHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.clFullHeader.is-condensed {
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.clHeaderBox {
  max-width: 1700px;
  margin: 0 auto;
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: padding 0.25s ease;
}
.clFullHeader.is-condensed .clHeaderBox {
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}
.clheaderLogo {
  width: 128px;
  display: flex;
  align-items: center;
  transition: width 0.25s ease;
}
.clFullHeader.is-condensed .clheaderLogo {
  width: 96px;
}
.clFullHeader .headerBrand__title {
  font-size: 0.95rem;
}
.clFullHeader .headerBrand__tagline {
  font-size: 0.8rem;
}
.clFullHeader.is-condensed .headerBrand__title {
  font-size: 0.85rem;
}
.clFullHeader.is-condensed .headerBrand__tagline {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* ------------------------------------- end of constants  styles--------------------------------- */
/* ------------------------------------- end of constants  styles--------------------------------- */




img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Layout de plantilla */

.clNavbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); width: 100%; }
.clNavbar__brand { display: inline-flex; align-items: center; gap: .75rem; }
.clNavbar__logo { width: 36px; height: 36px; }
.clNavbar__menu { display: none; gap: var(--space-4); flex-wrap: wrap; }
.clNavbar__link { font-size: 1.3rem; color: var(--color-secondary); padding: .5rem .25rem; }
.clNavbar__link.is-active {
  color: var(--color-primary);
  font-weight: 700;
}


.clNavbar__link:hover { color: var(--color-primary); }
.clNavbar__toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--color-border); background: #fff; }
.clPageTitle { font-size: 1.375rem; margin: 0; color: var(--color-secondary); }
.clBreadcrumb { font-size: .875rem; color: var(--color-text-muted); }
.clBreadcrumb a { color: var(--color-primary); }
.clBreadcrumb a:hover { color: var(--color-primary-600); }

.clFullBody {
  flex: 1 1 auto;
  padding-top: var(--header-offset, 120px);
}
.clBodyBox { max-width: 1700px; margin: 0 auto; padding: var(--space-8) var(--space-4); }

.clMainContent { display: grid; gap: var(--space-6); }
.clContentSection { background: var(--color-surface); border: 1px solid var(--color-border); padding: var(--space-6); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

.clFullFooter { background: #0f172a; color: #e2e8f0; margin-top: auto; }

.clFooterBox { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; align-items:flex-start;
  
  max-width: var(--container-max); margin: 0 auto; padding: var(--space-6) var(--space-4); font-size: .875rem;  }


.clFooterGrid { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; align-items:flex-start;  }
.clFooter__brand { display: grid; gap: .5rem; }
.clFooter__logo { width: 120px; height: auto; filter: brightness(0) invert(1); }
.clFooter__desc { color: #cbd5e1; max-width: 52ch; }

.clFooter__col { display: grid; gap: .5rem; flex:1; max-width: 33%; min-width: 26%; }

.clFooter__title { margin: 0; font-size: .95rem; color: #e2e8f0; }
.clFooter__nav { display: grid; gap: .35rem; }
.clFooter__link { color: #cbd5e1; }
.clFooter__link:hover { color: #fff; }
.clFooter__list { display: grid; gap: .25rem; color: #cbd5e1; }
.clFooter__social { display: flex; gap: .5rem; margin-top: .5rem; }
.clFooter__socialLink { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #334155; border-radius: 999px; color: #e2e8f0; }
.clFooter__socialLink:hover { background: #1e293b; }
.clFooter__legal { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid #334155; color: #94a3b8; }
.clFooter__legalLinks { display: inline-flex; gap: .5rem; }

/* Utilidades */
.u-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); }
.u-flex { display: flex; }
.u-grid { display: grid; }
.u-center { display: grid; place-items: center; }
.u-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1rem; gap: .5rem; border-radius: var(--radius-sm);
  background: var(--color-primary); color: #fff; border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}
.u-btn:hover { background: var(--color-primary-600); }
.u-btn--ghost { background: transparent; border-color: var(--color-border); color: var(--color-secondary); }
.u-tag { display: inline-block; padding: .25rem .5rem; background: #eef2ff; color: #3730a3; border-radius: 999px; font-size: .75rem; }








/* Responsivo base */
@media (min-width: 768px) {
  .clPageTitle { font-size: 1.75rem; }
  .clMainContent { grid-template-columns: 1fr; }
  .clNavbar__menu { display: flex; }
  .clNavbar__toggle { display: none; }
}

@media (min-width: 1024px) {
  .clMainContent { grid-template-columns: 1fr; }
}






@media screen and (max-width: 800px) {
	
	

  #dvModalBody{height: auto!important; min-height: 1200px; overflow-y: scroll;}

  .whatsapp-button {
    position: fixed;
    bottom: 10px; /* Adjust this value to set the distance from the bottom of the page */
    right: 10px; /* Adjust this value to set the distance from the right side of the page */
    padding: 10px 20px;
    
  }


}

/* Modal reutilizable */
.clFullModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 9999;
  padding: 24px;
  box-sizing: border-box;
}

.clFullModal.is-open {
  display: flex;
}

#dvModalContainer {
  width: min(1200px, 94vw);
  max-height: 95vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

#dvModalTopbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

#dvModalTopbar .clModalHeading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

#dvModalTitle {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.clModalKey {
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#dvModalRecordId {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #0f172a;
  background: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 2px 10px;
  border-radius: 999px;
}

#dvModalClose {
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: #475569;
  padding: 6px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

#dvModalClose:hover {
  background: #e2e8f0;
  color: #0f172a;
}

#dvModalBody {
  padding: 18px 20px;
  overflow-y: auto;
  background: #fff;
}

#dvModalStatus {
  padding: 12px 20px;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
  font-size: 0.9rem;
  min-height: 40px;
}

@media (max-width: 768px) {
  .clFullModal {
    padding: 12px;
  }
  #dvModalContainer {
    width: 100%;
    max-height: 92vh;
  }
  #dvModalTopbar {
    padding: 14px 16px;
  }
}

/* -------------------- responsive improvements -------------------- */
@media (max-width: 1024px) {
  #dvHeaderLogo {
    min-width: 140px;
    max-width: 220px;
    width: 100%;
  }

  .clHeaderBox {
    padding-inline: 12px;
  }

  .clBodyBox {
    padding: var(--space-6) 12px;
  }

  .clPost1,
  .clCardsBox > article,
  .clBigCardsBox .clTeamCard,
  .clFhdarticle,
  .clHdarticle {
    min-width: 100%;
    max-width: 100%;
  }

  .clPost1 .clPostImage {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
    shape-outside: none;
  }

  .clPost3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .clFhdBox,
  .clBigCardsBox,
  .clCardsBox,
  .clFooterBox,
  .clFooterGrid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .clFooter__col {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .clNavbar {
    gap: var(--space-2);
  }

  .clNavbar__menu.is-open {
    right: 0;
    width: min(92vw, 340px);
  }

  .clNavbar__link {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .clSectionHeader {
    margin: 12px;
  }

  .clSectionHeader .clHeaderH2 {
    font-size: 1.25rem;
  }

  .clSectionHeader p {
    font-size: 0.95rem;
    padding-inline: 8px;
  }

  .clFullBody {
    padding-top: var(--header-offset, 96px);
  }

  .whatsapp-button {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .clPost1,
  .clContentSection {
    padding: 14px;
  }

  .clTeamHeader {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .clTeamHeader h3 {
    margin-left: 0;
    font-size: 1.2rem;
  }

  .clPost3 .clPostImage {
    width: 140px;
    height: 140px;
  }

  .clPost3 .clPostTitle {
    font-size: 1.1rem;
  }
}

