/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222; }

html {
  font-size: 1em;
  line-height: 1.4; }

:root {
  --brand-primary: #991e79;
  --brand-secondary: #3f9db9;
  --brand-accent: #f7af0f;
  --brand-success: #92c03a;
  --brand-ink: #000000;
  --brand-surface: #ffffff;
  --font-base: "Inter", "Hind", "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Inter", "Hind", "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-base: 1rem;
  --font-line-height: 1.6;
  --font-color: #1f2a36;
  --theme-palette-color-1: #3498ae;
  --theme-palette-color-2: #80bf6d;
  --theme-palette-color-3: #f36b24;
  --theme-palette-color-4: #ec405a;
  --theme-palette-color-5: #7a2a8c;
  --theme-palette-color-6: #f2f5f7;
  --theme-palette-color-7: #fafbfc;
  --theme-palette-color-8: #ffffff;
}

  a:link {color:inherit ; text-decoration:none;}      /* unvisited link */
a:visited {color:inherit ; text-decoration:none;}  /* visited link */
a:hover {color:inherit ; text-decoration:none ;}  /* mouse over link */
a:active {color:inherit ; text-decoration:none;}  /* selected link */

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0;
  background: #3f9db9;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  padding: 0.5em; }

.browsehappy a {
  color: #ffe282;
  text-decoration: underline; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
a {
  color: inherit;
  text-decoration: none; }

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--font-line-height);
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #0b3a60;
  margin-top: 0;
}

p, li, a, span, small {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: var(--font-line-height);
  color: var(--font-color);
}

section#nosotros,
section#oaz,
section#transparencia,
section#sol,
section#pens,
section#ft1,
section#conta {
  font-family: var(--font-base);
  color: var(--font-color);
}

/* Objetivos y Valores */
.oaz-section {
  /*background: linear-gradient(135deg, rgba(52, 152, 174, 0.12), rgba(128, 191, 109, 0.1));*/
  background-color: #2e96a9;
  padding: 70px 0;
}

.oaz-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.oaz-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.oaz-header .sublead {
  color: #fff;
  max-width: 640px;
  margin: 0;
}

.oaz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.oaz-card {
  background: var(--theme-palette-color-8);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6ecf2;
}

.oaz-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
}

.pill.primary {
  background: var(--theme-palette-color-6);
  /* color: var(--theme-palette-color-1); */
}

.pill.success {
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-2);
}

.oaz-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.oaz-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f5;
  color: #1f2a36;
  line-height: 1.55;
}

.oaz-list li:last-child {
  border-bottom: none;
}

.oaz-list i {
  color: var(--theme-palette-color-2);
  margin-top: 2px;
}

.values-card {
  background: var(--theme-palette-color-5);
  color: #f7edf9;
}

.values-card .pill {
  background: rgba(255, 255, 255, 0.12);
  color: #f7edf9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.value-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

.value-item h4 {
  color: #fff;
  margin: 0 0 6px;
}

.value-item p {
  color: #f7f0fb;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .oaz-section {
    padding: 50px 0;
  }
  .oaz-grid {
    grid-template-columns: 1fr;
  }
}


.ley-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.ley-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ley-header .sublead {
  color: #fff;
  max-width: 640px;
  margin: 0;
}


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

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }
@media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
#arr {
  border-bottom: 1px solid #EFEFEF;
  font-size: 0.6em;
  text-align: right; }
  #arr a {
    color: dodgerblue; }
  #arr span {
    padding: 4px 0;
    display: block;
    margin-right: 2%; }

#div {
  position: relative;
  display: block;
  width: 100%;
  padding: 3px 0;
  margin: 0 auto; }
  #div #logo {
    display: inline-block;
    width: 150px; }
    #div #logo img {
      width: 100%; }

#menu {
  display: inline-block;
  /*width: 70%;*/
  font-size: 12px;
  /*font-family: "Roboto", sans-serif;*/
      
	  font-family: 'amelia_basic_regularregular' !important;
	  font-weight: 800;
    
    letter-spacing: 2px;
	  
  /*margin-left: 34%;*/
  /*font-weight: 600; */
  float: right;
  margin-top:25px;
  }
  #menu li {
    display: inline-block; }
    #menu li a {
      padding: 4px 8px;
      /*color: #991e79; */
	  color: var(--brand-primary); 
	  text-decoration:none;
	  }
      #menu li a:hover {
        color: var(--brand-accent); 
		}

#sombra {
  width: 100%;
  display: block;
  height: 16px;
  position: absolute;
  bottom: -22px;
  /*opacity: 0.4;*/
  background: var(--theme-palette-color-5); }

#azul {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 0.7em;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f9db9+0,06589c+100 */
  background-color: #85c25a;
}
  #azul h2 {
    width: 52%;
    text-align: center;
    margin: 0 auto;
    padding: 55px 0; }

#nosotros {
  width: 80%;
  display: block;
  margin: 30px auto 90px; }
  #nosotros h3 {
    margin: 10px 0 50px;
    text-align: center; }

.seg li a {
  background: var(--brand-accent) !important;
  color: #000; }

#tex {
  width: 42%;
  margin-top: 25px;
  display: inline-block; }
  #tex h4 {
    font-family: "Roboto", sans-serif;
    font-size: 1.2em; }
  #tex p {
    font-size: 0.8em;
    font-family: "Hind", sans-serif; }

#pima {
  width: 40%;
  margin: 0 4% 0 3%;
  display: inline-block;
  vertical-align: top;
  /*background: #efefef; */
  }
  #pima img {
    /*width: 100%;*/
    }

#griss {
  background: #efefef;
  padding: 10px; }

#oaz {
  color: #fff;
  margin: 60px auto;
  padding: 70px 0 90px; }
  #oaz #obj {
    width: 80%;
    margin: 0 auto; }
    #oaz #obj #esc {
      width: 19%;
      margin: 45px 5% 0 0;
      display: inline-block;
      box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
      vertical-align: top;
      background: #fff; }
      #oaz #obj #esc img {
        width: 100%; }

#val {
  display: inline-block;
  /*width: 75%;*/
  width:100%;
  vertical-align: top; }
  #val h4 {
  /*
    margin: 10px 0;
    font-family: "Roboto", sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    font-size: 0.9em; 
	*/
	}
  #val p {
    line-height: 15px;
    font-weight: 800;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    width: 19%;
    margin: 0 1.5% 0 0;
    display: inline-block;
    font-family: "Hind", sans-serif;
    vertical-align: top;
    text-align: center;
    background: var(--brand-accent);
    color: #000;
    height: 120px;
    font-size: 0.8em;
    padding: 16px 8px 2px; }

#mart {
  width: 80%;
  margin: 0 auto; }
  #mart h3 {
    text-align: center; }

footer {
    background-color: var(--theme-palette-color-5);
    color: #fff;
    padding: 32px 0;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

footer .footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  justify-content: center;
  justify-items: start;
}

footer h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #fff;
}

footer p, footer a, footer li, footer span {
  color: rgba(255,255,255,0.85);
}

footer a:hover {
  color: #fff;
}

footer .footer-block {
  padding: 6px 0;
  max-width: 320px;
  margin: 0 auto;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
footer .footer-links a {
  text-decoration: none;
  font-weight: 600;
}
.derechos{
  background: var(--theme-palette-color-5);
  color: rgba(255,255,255,0.85);
  padding: 10px 0 14px;
  font-size: 12px;
}
.rosa{
    color: #fff !important;
}

  .item1{
  padding:4px 10px;
  }
  
  
  
 #contt li > ul{
 background-color:#f7af0f !important;
 /* border-top: 1px solid rgba(255, 255, 255, 0.3);*/

 }
.branch{

}

#contt:hover li:hover > ul{
 background-color:#000;
/* border-top: 1px solid rgba(255, 255, 255, 0.3); */
 }
  
  
#contt {
  font-family: "Hind", sans-serif; }
  #contt ul:first-child {
    width: 30%;
    display: inline-block;
    vertical-align: top; }
    #contt ul:first-child li {
	
	/*background: #f7af0f;*/
	color: var(--brand-primary); 
	padding:4px 0px;
	cursor:pointer;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
	  -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
	}
	#contt ul:first-child li:hover{
	background: var(--brand-accent);
	color:#000; 
	}
	  
    #contt ul:first-child a {
      width: 100%;
      background: var(--brand-accent);
      font-size: 0.8em;
      color: #000;
      display: inline-block;
      padding: 4px 10px;
      transition: all ease-out 0.3s; }
      #contt ul:first-child a:hover {
        background: var(--brand-accent);
        color: #000; }

#infott {
  width: 60%;
  display: inline-block;
  vertical-align: top;
  margin: -17px 0 0 5%; }
#infott table{
    font-size: 0.9em;
	width:100%;
}
#elpng{
    width: 29px !important;
    display: block;
    margin: 0 auto;
}
#cabe td{
    background: #991e79;
    /*width: 40%;*/
    color: #fff;
    padding: 6px 10px;
}
  #infott h1 {
      color: #f7af0f;
    font-size: 1.3em;
    margin: 10px 0 0 10px; }
  #infott p {
    font-size: 1em;
    margin: 0px 0 0 10px; }
  #infott p {
    font-size: 0.8em; }
  #infott img {
    width: 80%; }

h3 {
  font-size: 1.4em;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: 000000;
  }

#pens {

  padding: 40px 0 50px;
  }

#contp {
  margin: 0 auto;
  width: 80%; }
  #contp h3 {
    color: #fff;
    margin: 0;
    text-align: center; }

#ft {
width:100%;
  text-align: center;
  padding: 30px 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f9db9+0,32b2e6+100 */
  background: #3f9db9;
  
  background: url(../img/fotoPensiones2.jpg) center;
  background-repeat: no-repeat;
  background-size: cover;
  /*
  background: -moz-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3f9db9), color-stop(100%, #3f9db9));
  background: -webkit-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  background: -o-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  background: -ms-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  background: linear-gradient(to bottom, #3f9db9 0%, #3f9db9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f9db9', endColorstr='#3f9db9',GradientType=0 );
*/
  }
#ft h3 {
    color: #fff;
    text-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.3);
    font-weight: 800; }

#hoja {
  width: 37%;
  margin: 10px auto -18px;
  padding: 4px; }
  #hoja img {
    width: 100%; }

.boton {
	/*
  background: #f7af0f;
  
  border: none;
  display: inline-block;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.2), 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #fff;
  */
  display: inline-block;
  padding-left: 16px;
  font-size: 0.7em;
  font-weight: 800; 
    transition: all ease-out 0.3s;
	
	
		color: #fff;
		/*
    border-color: #991e79;
    background-color: #991e79;
	*/
	border-color: #991e79;
	background-color: #991e79;
	
    margin-bottom: 0.25em;
    /*text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);*/
    box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
    border-radius: 0.25em;
	
	
}
.boton:hover{
    color: #fff;
    border-color: #991e79;
    background-color: #991e79;
    margin-bottom: 0.25em;
    text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
    box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
	
}
  .boton a {
    padding: 7px 26px 7px 0;
    display: inline-block; }

#azl {
  padding: 10px 0 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f9db9+0,06589c+100 */
  background: #3f9db9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3f9db9), color-stop(100%, #3f9db9));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #3f9db9 0%, #3f9db9 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #3f9db9 0%, #3f9db9 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f9db9', endColorstr='#3f9db9',GradientType=0 );
  /* IE6-9 */ }

#conf {
  margin: 10px auto 0;
  /*background: #29272a; */
  }
  #conf ul {
    color: #fff; }

#cop {
  text-align: center;
  color: #fff;
  font-size: 0.6em;
  background: #000;
  padding: 6px 0; }

#escr {
  vertical-align: top;
  display: inline-block;
  margin: 0 0 0 1%;
  /*background: #fff;*/
  padding: 3px;
  width: 140px; }
  #escr img {
    width: 100%; }

#contff {
  padding: 55px 0;
  margin: 0 auto;
  width: 80%; }

.ed {
  vertical-align: top;
  width: 20%;
  margin-right: 10%;
  display: inline-block; }
  .ed h4 {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #FFF;
}
.ed li {
    color: #FFF;
}
.ed p {
    color: #FFF;
}
  
#fg {
  margin-left: 5%;
  width: 80%;
  display: inline-block; }

#slider {
  width: 100%; }
  #slider li {
    position: relative; }

#header {
  z-index: 999;
  width: 100%;
  padding: 6px 0;
  background: #fff; }

#impo {
  width: 470px !important;
  left: 8%;
  top: 14%;
  position: absolute; }

#impo2 {
  width: 360px !important;
  left: 4%;
  top: 16%;
  position: absolute; }

#impo3 {
  width: 360px !important;
  right: 6%;
  bottom: 6%;
  position: absolute; }
.saltSiConf {
  width: 360px !important;
  left: 4%;
  top: 16%;
  position: absolute; }

  
#dido {
  width: 80%;
  margin: 0 auto; }

#mis {
  color: #bbb;
  margin: 0;
  padding-top: 6px;
  width: 50%;
  border-top: 3px solid #BBB;
  }

#vis {
  color: #991e79;
  margin: 0;
  padding-top: 6px;
  width: 50%;
  border-top: 3px solid #991e79; }

#tras {
  /*margin: 0 auto 70px;*/
  display: block;
  margin-top: 40px;
  background: #991e79;
  padding: 30px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  }
  #tras h3 {
    /* margin-bottom: 45px; */
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); */
    }

#pam {
  padding: 20px 0;
  /* background: url(../img/footer.png) center center; */
  /* background-color: #EEE; */
  background: #991e79;
  }
  #pam h3 {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    text-align: center; }

#forma {
  display: block;
  width: 100%;
}
#forma form {
  margin: 0 auto;
}
#forma form textarea {
  margin-bottom: 16px;
}
#forma input[type="text"], #forma input[type="tel"], #forma input[type="email"], #forma input[type="password"], #forma textarea {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  display: block;
  margin: 0 0 10px 0;
  font-family: var(--font-base);
  padding: 12px 12px;
  font-size: 1rem;
  color: #333;
  border-radius: 10px;
  width: 100%;
}

.seg {
  width: 100% !important;
  display: none; }
  .seg a {
    background: var(--brand-accent) !important;
    color: #000;
    display: block;
    padding-left: 20px; }
  .seg span {
    padding-left: 20px;
    display: block; }

#desc {
  width: 26px;
  margin-right: 6px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/down.png); }

.carp {
  width: 23px;
  height: 21px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: url(../img/foldbla.png); }

#fotocont {
  width: 50%;
  margin: 0px 7% 0 0;
  height: 570px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top; }
  #fotocont img {
    height: 100%; }

#mapa {
  margin-bottom: -10px; }

#categs {
  width: 40%;
  display: inline-block;
  vertical-align: top; }
  #categs span {
    width: 200px;
    display: inline-block; }
  #categs li {
    background: #efefef;
    padding: 6px 0 6px 20px;
    border-bottom: 1px solid #e6e6e6; }
    #categs li a {
      font-size: 0.9em;
      padding: 4px 8px;
      background: var(--brand-accent);
      color: #000;
      margin: 0 0 0 5px; }

#registro_cat {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  margin: 70px 0 0 5%; }
  #registro_cat label {
    display: block;
    margin-bottom: 10px; }

#brcat {
  border: none;
  padding: 6px 12px !important;
  text-transform: uppercase; }

.cont {
  width: 80%;
  margin: 0 auto; }

#reg_sub {
  padding: 8px 16px;
  display: block;
  margin: 10px 0 0; }

#but {
  padding: 8px 16px;
  display: block;
  margin-top: 20px; }

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

#fac {
    width: 31px;
    display: inline-block;
    vertical-align: top;
    height: 31px;
    background: url(../img/fac.png);
    background-position: -4px -3px;
}

#twi {
    width: 38px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    height: 32px;
    background: url(../img/twi.png);
    background-position: -4px -1px;
}

#contenedor {
    width: 80%;
    margin: 20px auto;
}
#contenedor a{
    display: block;
    width: 220px;
    padding: 8px 16px;
    background: var(--brand-accent);
    color: #000;
    margin-bottom: 3px;
}

.brillo{
    transition: all ease-out 0.3s;
}
.brillo:hover{
    background: #f7af0f !important;
}


#sol {
  margin-top: 0;
  background: #FFF;
  padding: 60px 0;
  color: var(--font-color);
}
  #sol h3 {
    color: var(--theme-palette-color-5);
    margin: 0;
    text-align: left;
  }

.sol-header {
  margin: 0 auto 28px;
  text-align: left;
}
.sol-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #4f5b66;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.sol-header .sublead {
  color: #4f5b66;
  margin: 6px 0 0;
  max-width: 640px;
}
.sol-header h3 {
  font-size: 2rem;
  margin: 4px 0 6px;
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.sol-card {
  background: var(--theme-palette-color-8);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  border: 1px solid #e3e8ee;
}
.sol-card.accent {
  background-color: #f3f5f7;
  border: 1px solid #d9d9d9;
}
.sol-card-top {
  margin-bottom: 12px;
}
.sol-card-top p {
  margin: 6px 0 0;
  color: #4f5b66;
}
.sol-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-linkbox, .sol-download {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--theme-palette-color-7);
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  padding: 12px;
}
.sol-link-graphic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-1);
  font-size: 1.4rem;
}
.sol-action {
  color: var(--theme-palette-color-1);
  font-weight: 700;
  text-decoration: none;
}
.sol-action:hover {
  text-decoration: underline;
}
.sol-download img {
  width: 38px;
  height: 38px;
}
.sol-details {
  margin: 4px 0 0;
  padding-left: 18px;
  color: #4f5b66;
}
.sol-details li {
  margin-bottom: 8px;
}
.sol-notes {
  margin-top: 26px;
  background: var(--theme-palette-color-6);
  border: 1px solid #e3e8ee;
  border-radius: 14px;
  padding: 16px;
}
.sol-notes h4 {
  margin: 0 0 10px;
  color: var(--theme-palette-color-5);
}
.sol-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.sol-note {
  background: var(--theme-palette-color-5);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e3e8ee;
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.sol-note i {
  color: var(--theme-palette-color-3);
  font-size: 1.5rem;
  margin-top: 2px;
}

/* Prestamos */
.prestamos-section {
  color: #fff;
  background-color: var(--theme-palette-color-1);
}
.prestamos-section .container {
  width: 90%;
  max-width: 1200px;
}
.prestamos-header {
  margin: 0 auto 24px;
  color: #FFF;
}
.prestamos-header h3 {
  margin: 0;
    text-align: left;
    font-size: 2rem;
}
.prestamos-header .sublead {
  color: #FFF;
  margin: 0;
}
.prestamos-header .eyebrow {
  color: #FFF;
  margin: 0;
}
.prestamos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.prestamos-grid.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 14px;
}
.prestamo-card {
  background: var(--theme-palette-color-8);
  color: var(--font-color);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.3);
}
.prestamo-card.highlight {
  background: linear-gradient(135deg, rgba(52, 152, 174, 0.18), rgba(128, 191, 109, 0.18));
  border: 1px solid rgba(255,255,255,0.35);
}
.prestamo-card.inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prestamo-card .pill {
  margin-bottom: 10px;
}
.prestamos-section .pill.alert{
  background-color: #feb81b;
}

.prestamo-steps {
  margin: 0;
  padding-left: 16px;
  color: var(--font-color);
  line-height: 1.55;
}
.prestamo-steps li {
  margin-bottom: 8px;
}
.prestamo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--theme-palette-color-6);
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--font-color);
  font-weight: 700;
  text-decoration: none;
}
.prestamo-cta img {
  width: 32px;
  height: 32px;
}
.prestamo-cta:hover {
  text-decoration: underline;
}
.prestamo-list {
  margin: 0;
  padding-left: 18px;
  color: var(--font-color);
}
.prestamo-list li {
  margin-bottom: 8px;
}
.prestamos-notes {
  margin-top: 14px;
}
.note-small {
  font-size: 0.9rem;
  color: #5b6572;
  margin-top: 6px;
}
.contact-header {
  text-align: left;
  margin: 0 0 20px;
}
.contact-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #4f5b66;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.contact-header h3 {
  font-size: 2rem;
  margin: 2px 0 6px;
  color: var(--theme-palette-color-5)
}
.contact-header .sublead {
  margin: 0;
  color: #4f5b66;
}
.contact-section {
  background: linear-gradient(180deg, var(--theme-palette-color-7) 0%, var(--theme-palette-color-6) 100%);
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.contact-map .map-wrapper {
  background: var(--theme-palette-color-8);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  border: 1px solid #e3e8ee;
}
.contact-map iframe {
  width: 100%;
  min-height: 320px;
  display: block;
}
.contact-form-card {
  background: var(--theme-palette-color-8);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  border: 1px solid #e3e8ee;
}
.btn-contact {
  padding: 10px 20px;
  border: none;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-contact:hover {
  filter: brightness(1.05);
}
@media (max-width: 767px) {
  .contact-section {
    padding: 40px 0;
  }
}
.prestamos-section .pill.primary {
  background: rgba(52, 152, 174, 0.12);
  color: var(--theme-palette-color-1);
}
.prestamos-section .pill.secondary {
  background: rgba(122, 42, 140, 0.12);
  color: var(--theme-palette-color-5);
}
.prestamos-section .pill.success {
  background: rgba(128, 191, 109, 0.12);
  color: var(--theme-palette-color-2);
}
.prestamos-section .pill.accent {
  background: rgba(243, 107, 36, 0.12);
  color: var(--theme-palette-color-3);
}

@media (max-width: 767px) {
  #pens {
    padding: 32px 0 38px;
  }
  .prestamos-section .container {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .sol-section {
    padding: 40px 0;
  }
  .sol-header {
    text-align: left;
  }
}
	
	
	
.descarga{
font-weight:bold;
font-style:italic;
    color: #333;
}

.fondoInfomex{
background: transparent url('../img/infomex.jpg') no-repeat top left;
background-size: 100% 100%;
width:250px;
    height:113px;
	border:1px solid #CCCCCC;
	opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
	webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

}
.fondoInfomex:hover{
	opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}


.grid-icon{
display: inline-block;
}
.grid-icons li .grid-icon {
    margin: 10px;
    text-align: center;
	max-width:150px;
}
.grid-icon-white{
background-color: rgba(255, 255, 255, 0.20);
border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
cursor: pointer;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;


	
}

.grid-icon-white:hover {
background-color: rgba(255, 255, 255, 0.5);

}


.grid-icon-img {
    margin: 5px 5px 5px;
	
}

.grid-icon-img img {
    width: 48px;
}
.grid-icon-img-big {
	color:#FFF !important;	
}

.grid-icon-img-big img {
    width: 64px;
}

.container{
width:100%;
}

.btn {
    padding: 12px !important;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    justify-content: center !important;
    color: #ffffff !important;
    background: linear-gradient(to top, #cc208e 0%, #6713d2 100%) !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-color: transparent !important;
    border-top-width: 0px !important;
    border-right-width: 0px !important;
    border-bottom-width: 2px !important;
    border-left-width: 0px !important;
}
.btn-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-round.btn-lg {
    width: 48px;
    height: 48px;
}

.btn-round.btn-sm {
    width: 34px;
    height: 34px;
}

.btn-round.btn-xs {
    width: 24px;
    height: 24px;
}

.panel-title{
	line-height:60px;
}
.panel-title2{
	color: #FFF;
	line-height:30px;
	font-size:0.9em;
	/* text-shadow: 1px 1px 1.5px rgba(255, 255, 255, 0.3); */
}
.panel-title2Sol{
	line-height:15px;
	font-size:0.9em;
	text-shadow: 1px 1px 1.5px rgba(255, 255, 255, 0.3);
	
}
.derechaPlus{
float:right;
margin-top:17px;
}
.colorBlanco{
	color:#FFF!important;
}
.transparente{
	background-color: transparent !important;
}
.panel{
	border-color: transparent !important;
}
.panel-default{
	border-color: transparent !important;
}
.panel-heading {
    color: rgb(255,255,255) !important;
    background-color: transparent !important;
    /*background-color: #991e79 !important;*/
    /*border-color: #f7af0f !important;*/
	/*border-color: #f7af0f !important;*/
	border:none !important;
	height:78px !important;
	
	/*box-shadow: 0 0.125em 0.275em 0 rgba(0,0,0,0.075);*/
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	
	
	
}
.panel-headingSol {
text-align: left;
padding-left:10px;
}

.panel-heading :hover {	
}

.panel-group .list-group {
	margin-bottom: 0;
}

.panel-group .list-group .list-group-item {
	border-radius: 0;
	border-left: none;
	border-right: none;
}

.panel-group .list-group .list-group-item:last-child {
	border-bottom: none;
}

.panel-body{color:#FFF;background-color: rgba(0,0,0,0.3);}


.fotoContacto{
background: transparent url('../img/TRO_4519.jpg') no-repeat top left;
    background-size:   cover;                      /* <------ */
    background-repeat: no-repeat;
    background-position: center center;            /* optionally, center the image */
/*width:100%;*/
height:100%;
}

.mapaContenedor{
width:100%;
height:100%;

}
.height100{
height:100%;
min-height:100%;
}
.height80{
height:80%;
min-height:80%;
}


.overlay {
   background:transparent; 
   position:relative; 
   width:100%;
   height:100%; /* your iframe height */
   top:100%;  /* your iframe height */
   margin-top:100%;  /* your iframe height */
}


.maps iframe{
    pointer-events: none;
}


#tree1{
display: inline-block;
}
.tree{
cursor:pointer;
}
.tree, .tree ul {
    margin:0;
    padding:0;
    list-style:none
}
.tree ul {
    margin-left:1em;
    position:relative
}
.tree ul ul {
    margin-left:.5em
}
.tree ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid
}
.tree li {
    margin:0;
    padding:0 1em;
    line-height:2em;
    color:#991e79;
    font-weight:700;
    position:relative;
}
.tree ul li:hover {
    color:#991e79 !important;
}
.tree li:hover {
    color:#991e79 !important;
}

.tree ul li:before {
    content:"";
    display:block;
    width:10px;
    height:0;
    border-top:1px solid;
    margin-top:-1px;
    position:absolute;
    top:1em;
    left:0
}
.tree ul li:last-child:before {
    background:#fff;
    height:auto;
    top:1em;
    bottom:0
}
.indicator {
    margin-right:5px;
}
.tree li a {
    text-decoration: none;
    color:#991e79;
}
.tree li button, .tree li button:active, .tree li button:focus {
    text-decoration: none;
    color:#991e79;
    border:none;
    background:transparent;
    margin:0px 0px 0px 0px;
    padding:0px 0px 0px 0px;
    outline: 0;
}
.encabezadoTree{
background:#991e79;

padding:10px;
font-size:20px;
color:#FFF;
text-align:left;
height:40px;
}

.trOdd{
background:#eee;

}
.nivel0{
color:#333;
}
.nivel0:hover{
	color:#991e79;
	
}
.alinea{
display:inline-block !important;
}

.btn-naranja {
    color: #fff;
    background-color: #991e79;
    border-color: #991e79;
}
.hola{
/*
display:inline-block;
text-indent:30px;
border:1px solid #000;
*/
/*margin-left:20px;*/
 /*
    text-indent:30px;
    
	*/
	/*
	
	*/
}

.glyphicon-folder-close{
/*display:table-cell;
width:30px;
*/
/*height:30px;*/
}

.hola1{
/*display:inline-block;
border:1px solid #000;*/
}

#tree1 li{
-webkit-transition: all 0.2s ease;                  
    -moz-transition: all 0.2s ease;                 
    -o-transition: all 0.2s ease;   
    -ms-transition: all 0.2s ease;          
    transition: all 0.2s ease;

}


	
	
#tree1 li:hover{
color:#f7af0f;
/*background-color:#eee;*/
/*font-weight:900;*/
/*font-style:italic;*/
}

.derechos{
	font-size: 10px;
	color:#7a7a7a;
    background-color: #FFF;
}
.rosa{
	    color: #991e79 !important;
}
.panel-aqua{
	background: #991e79;
	color:#FFF;
}
.btn-100{
	width:100%;
	margin:5px;
}
.btn-primary{
width:100%;
margin:5px;
transition: all ease-out 0.3s;
color: #fff !important;
border: none !important;
background: linear-gradient(90deg, #2af598 0%, #009efd 100%) !important;
}


.btn-secondary{
width:100%;
margin:5px;
transition: all ease-out 0.3s;
color: #fff !important;
background: linear-gradient(to top, #cc208e 0%, #6713d2 100%) !important;
}

.cinta{
	cursor:pointer;
	font-size:1.3em;
	line-height:2em;
	border-radius: 0.25em;
	background-color: #DDD;
	color:#333;
	box-shadow: 0 0.15em 0 0 #DDD, 0 4px 9px rgba(0,0,0,0.75);
	padding-left:9px;
}
.cinta h3{
	color:#333;
	font-weight:normal !important;
	
}
.oculto{
	 display:none !important; 
}
.nivel{
	margin-top:0px;
	border-top:5px solid transparent;
	line-height:28px;
	padding-left:15px;
	margin-left:10px;
	margin-right: 10px;
	cursor:pointer;
	transition: all ease-out 1.3s;
	display:inline-block;
	width:100%;
	font-size:0.9vw;
	vertical-align:top !important;
	height:auto;
}

.png {
    width: 16px !important;
    display: inline-block;
    margin: 0 auto;
}

.nivel0{
  width:100%;
  margin:5px;
  /*  font-size: 0.9em;
  font-weight: 700; 
  */
  transition: all ease-out 0.3s;
  color: #fff !important;
  border-color: #991e79;
  background-color: #991e79  !important;
  /*
    text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
    box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
    border-radius: 0.25em;
	*/
  /* border-color: #991e79; */
  text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
  box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
  border-radius: 0.25em;
  }

.nivel1{
	background-color:#3f9db9;
	color:#FFF;
	padding-left:15px;
}
.nivel2{
	background-color:#92c03a;
	color:#FFF;
	padding-left:30px;
}
.nivel3{
	background-color:#f7af0f;
	color:#000;
	padding-left:45px;
}
.nivelN{
	background-color:#EEE;
	color:#333;
	border-bottom:1px solid #DDD;
	transition: all ease-out 0.3s;
}
.nivelN:hover{
	color:#333;
	transition: all ease-out 0.3s;
}


.collapsing {
opacity: 0;
transition:opacity 0.3s linear; 
-webkit-transition:opacity 0.2s linear; 
-moz-transition:opacity 0.2s linear; 
-o-transition:opacity 0.2s linear;
}
.border{
	border-width:1px;
	border-style:solid;
}
.border-3-verde{
	/*border:3px solid #000000;**/
}
.back-rosa{
	/* background-color:#991e79; */
	background-color: #991e79 !important;
	color:#FFF;
}

.border-3-rosa{
	/*border:3px solid #991e79;*/
}
.back-verde{
	/* background-color: #92c03a; */
	color:#000;
	/* background-color: #991e79 !important; */
	background-color: var(--brand-success) !important;
}

.vh-15{
	height:15vh;
	
	display: inline-block;
    vertical-align: middle;
    float: none;
	width:100%;
	
	display: flex;
  align-items: center;
  text-align:center;
}
.w-100{
	width:100%;
}
.contenedor80{
	    width: 80%;
    margin: 0 auto;
}
.m-2{
	margin-bottom:25px;
}




/* entire container, keeps perspective */
.flip-container {
	perspective: 1000px;
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 100%;
/*	
	height: 100%;
	display:block;
	*/
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
	height: 100%;
	cursor:pointer;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
	/* position: absolute; */
	/* top: 0; */
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	
	transform: rotateY(0deg);
	
	background-color: #991e79  !important;
	border-color: #991e79;
	
    text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
    box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
    border-radius: 0.25em;
	color:#FFF!important;
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
	margin-top: -15vh;
	FONT-SIZE: 0.8em;
	
	color: #fff !important;

	border-color: #000000;
	background-color: #000000 !important;
	
    text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
    box-shadow: 0 0.25em 0 0 #000000, 0 4px 9px rgba(0,0,0,0.75);
    border-radius: 0.25em;
	
}
#contenedorArchivos{
	    right: 5px;
}
#extra{
	font-style:italic;
	text-align:center;
}
.descripcionArticulo{
	width:100%;
	background-color: rgba(153,30,121,0.9)  !important;
	border-radius: 0.25em;
	margin-bottom:10px;
	margin-top: 10px;
	color:#FFF;
	text-align:center;
	font-size:0.9em;
	padding:10px;
	margin-left: 5px;
}

.vh45 {
    height: 45vh;
}

.accordion-button::after {
  background-image: none !important;
  font-family: 'Glyphicons Halflings';
  content: "\002b"; /* plus symbol */
  font-size: 1.2rem;
  color: #fff;
  transform: rotate(0deg);
  transition: transform .3s;
}
.accordion-button:not(.collapsed)::after {
  content: "\2212"; /* minus symbol */
  transform: rotate(180deg);
}

.w80p {
    width: 80%;
    margin: 0 auto;
}

.green_section {
    display: block;
    margin-top: 40px;
    background: var(--brand-success);
    color: #000;
    padding: 30px 0;
    text-shadow: none!important;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border: none !important;
    background: linear-gradient(90deg, #2af598 0%, #009efd 100%) !important;
}

.tree-label {
    color:#FFF;
}
.dark_green {
    color: #000000!important;
}

/*change things after this*/
.right-box{
    background-color: #fafafa !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    box-shadow: 0px 5px 30px -10px #0000009c !important;
    color: #000;
}
.nuevaley-buttons .btn {
    text-align: left;
}
.nuevaley-card .accordion-button {
    background-color: #ffffff;
}
.nuevaley-accordion-title {
    font-size: 1.5rem;
}
.nuevaley-file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nuevaley-file-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}
.nuevaley-file-item img {
    width: 32px;
    height: 32px;
}
.nuevaley-file-item:hover {
    text-decoration: underline;
}
.doc_link {
    color: #0693e3 !important;
}
.doc_link:hover {
    color: red !important;
}
.accordion-header {
    margin:0!important;
}

#nosotros {
            background: linear-gradient(135deg, var(--theme-palette-color-7), var(--theme-palette-color-6));
            padding: 60px 0 50px;
        }
        #nosotros .about-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            align-items: center;
        }
        #nosotros .about-portrait {
            position: relative;
            background: var(--theme-palette-color-8);
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #e3e8ee;
        }
        #nosotros .about-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: saturate(1.05);
        }
        #nosotros .about-portrait .badge-top {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(52, 152, 174, 0.9);
            color: #fff;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        #nosotros .about-card {
            background: var(--theme-palette-color-8);
            border-radius: 18px;
            padding: 26px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid #e3e8ee;
        }
        #nosotros .about-card h3 {
            font-size: 1.9rem;
            margin-bottom: 0.75rem;
            color: var(--theme-palette-color-5);
        }
        #nosotros .about-card p.lead {
            color: #4f5b66;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        #nosotros .about-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin: 16px 0 8px;
        }
        #nosotros .about-actions .btn-link-doc {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 12px;
            background: var(--theme-palette-color-6);
            color: var(--theme-palette-color-5);
            font-weight: 600;
            text-decoration: none;
            border: 1px solid #e0e6ed;
        }
        #nosotros .about-actions .btn-link-doc img {
            height: 26px;
            width: 26px;
        }
        #nosotros .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 14px;
            margin-top: 12px;
        }
        #nosotros .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--theme-palette-color-6);
            color: var(--theme-palette-color-2);
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        #nosotros .pill i {
            color: var(--theme-palette-color-2);
        }
        #nosotros .info-block {
            background: var(--theme-palette-color-7);
            border: 1px solid #e3e8ee;
            border-radius: 14px;
            padding: 14px 16px;
            color: #3c4957;
            line-height: 1.55;
        }
