@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap');


:root {
    --body-font-family: 'Inter', sans-serif;
    --title-font-family: 'Azeret Mono', sans-serif;
    --gray-200: #f5f7f7;
    --gray-300: #595959;
    --color-principal: #BCFFF3;
    --color-principal-brillo: #46d7df;
    --color-principal-light: #eaf8f9;
    --color-principal-dark: #0897a2;
    --color-textos: #111;
    --color-textos-secundarios: #555;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-24: 24px;
    --font-size-28: 28px;
    --font-size-32: 32px;

}

@media (min-width:576px) {}
@media (min-width:768px) {}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}

/***HEADER FIXED****/
header {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 500;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

header,
div.ancla {
    height: 90px;
}

main {
    display: block;
    margin-top: 90px;
}

@media (min-width:576px) {

    header,
    div.ancla {
        height: 100px;
    }

    main {
        margin-top: 100px;
    }
}

@media (min-width:768px) {

    header,
    div.ancla {
        height: 120px;
    }

    main {
        margin-top: 120px;
    }
}

@media (min-width:1200px) {

    header,
    div.ancla {
        height: 140px;
    }

    main {
        margin-top: 140px;
    }
}

@media (min-width: 1400px) {}

body {
    font-family: var(--body-font-family);
    color: var(--color-textos);
    word-break: break-word;
}

details a {
    text-decoration: underline;
}

body .row {

    
    margin: 0 auto;
}

body .row > * {
    padding-right: 0;
    padding-left: 0;
}

body .region-content {
    padding: 0;
}

body .container {
    /* padding: 0; */
}

body .container.row {
    margin: 0 auto;
}

.container {
    margin: auto;
    width: 100%;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
.max-width-xs {
    max-width: 520px;
}


.d-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.pr-5 {
    padding-right: 30px !important;
}

/**header **/
.logos .view-content {
    display: flex;
    gap: 12px;
}

@media (min-width:576px) {
    .logos .view-content {
        gap: 24px;
    }
}

footer .logos .view-content {
    margin-bottom: 2rem;
}

header .view-logo img {
    height: 80px;
}

footer .view-logo img {
    height: 30px;
}

footer .block-views-blocklogo-block-2 img {
    height: 120px;
    /* max-width: 80%; */
}

@media (min-width:576px) {
    header .view-logo img {
        height: 80px;
    }

    footer .view-logo img {
        height: 40px;
    }

    footer .block-views-blocklogo-block-2 img {
        height: 140px;
    }
}

@media (min-width:768px) {
    header .view-logo img {
        height: 100px;
    }

    footer .view-logo img {
        height: 40px;
    }

    footer .block-views-blocklogo-block-2 img {
        height: 160px;
    }
}

@media (min-width:1200px) {
    header .view-logo img {
        height: 110px;
    }

    footer .view-logo img {
        height: 42px;
    }

    footer .block-views-blocklogo-block-2 img {
        height: 169px;
    }
}

@media (min-width:1400px) {
    header .view-logo img {
        height: 120px;
    }

    footer .view-logo img {
        height: 50px;
    }

    footer .block-views-blocklogo-block-2 img {
        height: 200px;
    }
}

/*navegacion**/
nav.navbar.navbar-expand-lg.container {
    background: white;
}

/**header toggler**/
.navbar-toggler {
    border: 1px solid var(--color-textos);
    border-radius: 0;
}

.navbar-toggler-icon {
    background-image: url(/themes/custom/b5subtheme/images/bars-solid.svg);
    width: 1em;
    height: 1em;
}

button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    background-image: url(/themes/custom/b5subtheme/images/xmark.svg);
}

@media (min-width:576px) {
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
}

li.nav-item.dropdown > ul {
    /* display: flex !important; */
    flex-direction: column;
    width: 100%;
}

/* =========================================
   ENLACES
========================================= */
a{
    color: var(--color-principal-dark); 
    text-decoration:none;
    word-break: break-word;
}
footer a{
    color: white;
}
.link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: .5rem;

  padding-bottom: .3rem;

  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  

  transition:
    color .3s ease;
}
.link.white {
  color: rgba(255,255,255,.82);
}
.link.dark {
  color: var(--color-principal-dark);
}
.link::after {
  content: "→";

  transition:
    transform .3s ease;
}

.link::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background:
    rgba(255,255,255,.22);

  transition:
    background .3s ease;
}


.link.white:hover {
  color: #fff;
}

.link.dark:hover {
  color: var(--color-principal-dark);
}

.link:hover::after {
  transform: translateX(3px);
}

.link:hover::before {
  background: rgba(188,255,243,.75);
}
/* =========================================
   PRIMARY BUTTON
========================================= */

.btn-primary {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: .75rem;

  padding: 1rem 1.6rem;

  border: 1px solid transparent;
  border-radius: 999px;

  background: var(--color-textos);

  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #fff;
  text-decoration: none;

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

/* Flecha */

.btn-primary::after {
  content: "→";

  font-size: .9rem;

  opacity: .75;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

/* Hover */

.btn-primary:hover {
  background: #1c1c1c;

  box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.btn-primary:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* =========================================
   TEXT BUTTON
========================================= */

.btn-text {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: .6rem;

  padding-bottom: .3rem;

  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(0,0,0,.72);
  text-decoration: none;

  transition:
    color .3s ease;
}

/* Línea */

.btn-text::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background:
    rgba(0,0,0,.15);

  transition:
    background .3s ease;
}

/* Flecha */

.btn-text::after {
  content: "→";

  font-size: .9rem;

  opacity: .7;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

/* Hover */

.btn-text:hover {
  color: var(--color-textos);
}

.btn-text:hover::before {
  background: #11c5c6;
}

.btn-text:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* =========================================
   HERO GHOST BUTTON
========================================= */

.hero-ghost-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: .75rem;

  margin-top: 1.5rem;
  padding: .95rem 1.4rem;

  border: 2px solid var(--color-principal-dark);
  border-radius: 999px;

  background:
    var(--color-principal-dark);

  backdrop-filter: blur(8px);

  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: white;
  text-decoration: none;

  transition:
    border-color .3s ease,
    background .3s ease,
    color .3s ease;
}
.hero-ghost-btn:hover {
   background:
    rgb(254 253 254);
  color: var(--color-principal-dark);

}


/* Flecha */

.hero-ghost-btn::after {
  content: "→";

  font-size: .9rem;
  line-height: 1;

  opacity: .65;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

/* Hover */

.hero-ghost-btn:hover {
  background:
    rgba(255,255,255,.42);

  border-color:
    rgba(17,197,198,.32);

  color: var(--color-textos);
}

/* Movimiento sutil */

.hero-ghost-btn:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* Focus */

.hero-ghost-btn:focus-visible {
  outline: none;

  border-color:
    rgba(17,197,198,.55);

  box-shadow:
    0 0 0 4px rgba(17,197,198,.12);
}


@media (min-width:576px) {}
@media (min-width:768px) {
    .hero-ghost-btn{margin-top:3rem;}
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}



.form-control {
    padding: 0.675rem 0.75rem;
}
.views-exposed-form .form--inline.clearfix {
    display: flex;
}
/**textos**/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
}

h1,
.h1 {
    font-size: 2rem;
}

@media (min-width: 768px) {

    h1,
    .h1 {
        font-size: 2.8rem;
    }
}

@media (min-width: 1400px) {

    h1,
    .h1 {
        font-size: 3.3rem;
    }
}

h2,
.h2 {
    font-size: 2rem;
}

@media (min-width: 768px) {

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

@media (min-width: 1200px) {

    h2,
    .h2 {


        
        font-size: 3rem;
    }
}

.font-family-title {
    font-family: var(--title-font-family);
}

.font-size-18 {
    font-size: var(--font-size-18);
}

.font-size-24 {
    font-size: var(--font-size-20);
}

@media (min-width: 768px) {
    .font-size-24 {
        font-size: var(--font-size-24);
    }
}

.font-size-28 {
    font-size: var(--font-size-28);
}

.font-size-32 {
    font-size: var(--font-size-32);
}

.color-texto-ppal a {
    color: var(--color-textos);
    text-decoration: none;
}

.color-texto-ppal a:hover {
    color: var(--color-textos);
    text-decoration: none;
}

.color-texto-secundario {
    color: var(--color-textos-secundarios);
}
.hero-banner {
 position: relative;
 padding:
      clamp(2.5rem, 5vw, 4rem);
 background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.52) 0%,
        rgba(201,243,236,.72) 100%
      );
 backdrop-filter: blur(14px);
 border:
      1px solid rgba(255,255,255,.45);
 border-radius: 2rem;
 box-shadow:
      0 20px 60px rgba(0,0,0,.08);
 overflow: hidden;
 margin: 0 20px;
}
@media (min-width:576px) {}
@media (min-width:768px) {
    .hero-banner {margin: 0}
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}


.hero-title h1 {
    font-size: 30px;
    /* letter-spacing: -.06em; */
}
@media (min-width:576px) {}
@media (min-width:768px) {
    .hero-title h1 {
        font-size: 40px;
    }
}
@media (min-width:1200px) {
    .hero-title h1 {
        font-size: 60px;
    }
}
@media (min-width: 1400px) {}

.hero-title h1 span {
    display:block;
}

.hero-meta {
    margin-top: 2rem;
    max-width: 620px;
}

.hero-meta-institution {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    color:
      rgba(0,0,0,.58);
    position: relative;
}

.hero-meta-description {
    max-width: 42ch;

    font-size:
        clamp(1.15rem, 1.5vw, 1.35rem);

    line-height: 1.8;
}

.hero-actions{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    
}
@media (min-width:576px) {}
@media (min-width:768px) {
    .hero-actions{margin-top:3rem;}
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}


img.logo-brand {
    max-width: 340px;

    opacity: .55;

    filter:
        grayscale(100%)
        contrast(120%);

    mix-blend-mode: multiply;

    transform: translateY(15px);
}

@media (min-width: 768px) {
    img.logo-brand {
        padding: 0 50% 50px 0;
    }
}

@media (min-width: 992px) {
    img.logo-brand {
        padding: 0 0 0 20%;
    }
}

.font-weight-600 {
    font-weight: 600;
}

/**separadores**/
.hr-bottom-60::after {
    content: "";
    display: block;
    width: 48px;
    height: 6px;
    margin-top: 1rem;
    background:
        var(--color-principal-dark);
}


.hr-bottom-30::after {
    content: "";
    display: block;
    height: 8px;
    /* Ajusta el grosor de la línea */
    background-color: #0897a2;
    /* Color de la línea */
    width: 30px;
    /* Ajusta la longitud de la línea */
}

.hr-bottom-30-light::after {
    content: "";
    display: block;
    height: 1px;
    /* Ajusta el grosor de la línea */
    background-color: var(--color-textos);
    /* Color de la línea */
    width: 30px;
    /* Ajusta la longitud de la línea */
    margin: 1rem 0;
}

.hr-top::before {
    content: "";
    display: block;
    width: 100%;
    /* Ajusta la longitud de la línea */
    height: 1px;
    /* Ajusta el grosor de la línea */
    background-color: var(--color-textos);
    /* Color de la línea */
}

.container-c9 h2::after {
    content: "";
    display: block;
    width: 100%;
    /* Ajusta la longitud de la línea */
    height: 2px;
    /* Ajusta el grosor de la línea */
    background-color: var(--color-textos);
    /* Color de la línea */
    margin-bottom: 30px;
}

.width-fit-content {
    width: fit-content;
}

.margin-auto {
    margin: 0 auto;
}

/**borders**/
.border-dashed {
    border: 1px dashed var(--color-textos);
    border-radius: 0 30px 0 0;
    width: fit-content;
}

.border-dashed-sm {
    border: 1px dashed var(--color-textos);
    border-radius: 0 16px 0 0;
    width: fit-content;
    font-family: var(--title-font-family);
}

.border-dashed .field--name-field-media-image {
    height: 120px;
    width: 120px;
}

.border-dashed .field--name-field-media-image .field__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.border-radius-30 {
    border-radius: 30px;
}

.img-border-radius-30 img {
    border-radius: 30px;
}

.img-fluid img {
    max-width: 100%;
    height: auto;
}
.card-image-full img {
    aspect-ratio: 3 / 2;
    border-radius: 30px 30px 0 0;
}


/**fondos**/
.parallax {
    background-image: url();
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.banner1 {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.05) 45%,
      rgba(0,0,0,.15) 100%
    ),
    url(/themes/custom/b5subtheme/images/home.jpg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 760px;
   display: flex;
    align-items: center;
}

@media (min-width:576px) {}
@media (min-width:768px) {}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}

.banner1 .view-content > .views-row > .row {
    align-items: top;
}

.banner-header {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 450px;
}
.banner-proyectos {
    background-image: url(/themes/custom/b5subtheme/images/home-proyectos.jpg);
}
.banner-estancias {
    background-image: url(/themes/custom/b5subtheme/images/home-estancias.jpg);
}
.banner-comunidad {
    background-image: url(/themes/custom/b5subtheme/images/home-comunidades.jpg);
}
.banner-fondo-1 {
    background-image: url(/themes/custom/b5subtheme/images/fondo-1.png);
}
.banner-fondo-2 {
    background-image: url(/themes/custom/b5subtheme/images/fondo-2.png);
}
.bck-gray-200 {
background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0) 25%
  ),
  linear-gradient(
    135deg,
    #f4f5f7 0%,
    var(--gray-200) 50%,
    #e8eaed 100%
  );
}

.imagen-3 {
    background-image: url(/themes/custom/b5subtheme/images/trama-1.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 33%;
    background-attachment: scroll;
}

.img-rounded-right {
    padding-right: 0;
}

.img-rounded-right img {
    border-radius: 0;
    height: 300px;
    width: 100%;
}

.img-full img {
    width: 100%;
    height: 250px;
}

.bck-dark {
    background: var(--color-principal-dark);
}
span.label {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 1.5rem;
    background: var( --color-principal-dark);
    padding: 0 5px;
}
.bck-dark span.label {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 1.5rem;
}

@media (min-width:768px) {}

@media (min-width:992px) {
    .img-full img {
        max-width: 100%;
        height: 100vh;
    }

    .img-rounded-right {
        padding-right: 30px !important;
    }

    .img-rounded-right img {
        height: 100vh;
        border-radius: 0 30px 30px 0;
    }
}

@media (min-width:1200px) {
    .img-rounded-right img {}
}

@media (min-width: 1400px) {
    .img-full img {
        max-width: 100%;
        height: 80vh;
    }

    .img-rounded-right img {
        height: 70vh;
    }
}



.fondo-negro {
    background: var(--color-textos);
}

.fondo-ppal {
    padding: 40px;
    background: rgba(201, 243, 236, 0.78);
    backdrop-filter: blur(12px);
}

.fondo-gris {
    background: var(--gray-200);
}

.rounded-left,
.rounded-right {
    border-radius: 0;
}

.rounded-xl {
    border-radius: 0;
}

@media (min-width:992px) {
    .rounded-left {
        border-radius: 30px 0 0 30px;
    }

    .rounded-right {
        border-radius: 0 30px 30px 0;
    }

    .rounded-xl {
        border-radius: 30px;
    }
}

@media (min-width:992px) {}

@media (min-width:1200px) {}

@media (min-width: 1400px) {}

/**imagenes**/
.zoom-img {
    overflow: hidden;
}

.zoom-img img:hover,
.zoom:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transition: all, 0.8s;
    -moz-transition: all, 0.8s;
    -o-transition: all, 0.8s;
    transition: all, 0.3s;
}

.img-w-100 img {
    width: 100%;
    height: 450px;
}

/**navegacion**/
.region.region-nav-branding {
    display: flex;
}

.nav-link {
    color: var(--color-textos);
}

ul.nav.navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

footer ul.nav.navbar-nav {
    margin: 1rem;
}

a.nav-item.nav-link.active.is-active {
    text-decoration: none;
}

.navbar-default .navbar-nav > li > a {
    color: var(--color-textos);
}

footer .navbar-default .navbar-nav > li > a {
    color: white;
}

@media (max-width:992px) {
    .navbar-expand-lg .navbar-nav {
        padding: 20px 0;
    }

    body.path-frontpage .navbar-expand-lg .navbar-nav {
        /* border-bottom: 1px solid var(--color-textos); */
    }

}

@media (min-width:992px) {
    .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }
}

@media (min-width:1200px) {
    .navbar-expand-lg .navbar-nav {
        font-size: 1.1em;
    }
}

@media (min-width:1400px) {
    .navbar-expand-lg .navbar-nav {
        font-size: 1.2em;
    }
}

li.nav-item {
    width: fit-content;
}

li.nav-item a {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: var(--color-textos);

    font-weight: 600;
}
header li.nav-item a{
    word-spacing: -6px;
}   

footer li.nav-item a {
    color: white;
    text-transform: none;
    font-weight: 400;
}

li.nav-item a:hover {
    color: var(--color-principal-dark) !important;
}

footer li.nav-item a:hover {
    color: white;
    text-decoration: underline;
}

li.nav-item a {
    font-family: var(--title-font-family);
}
.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:hover,
li.nav-item a.active
{
    color: var(--color-principal-dark) !important;
    background-color: transparent;
}
footer li.nav-item a {
    font-family: var(--body-font-family);
}

li.nav-item a.nav-link {
    color: var(--color-textos);
    /* font-weight: 400; */
    /* border-bottom: 2px solid var(--color-textos); */
}

footer li.nav-item a.nav-link {
    color: white;
    border-bottom: 0;
}

ul.nav.nav-tabs.flex-column.flex-md-row.primary li.nav-item a {
    color: var(--color-textos);
}

@media (max-widht:992px) {
    div#navbarSupportedContent.show {
        margin: 10px 0;
        background: white;
        padding: 40px 10px;
        border-bottom: 2px solid var(--color-principal);
    }
}

footer {
    padding: 3rem 0rem 1rem 0rem;
    background: var(--color-textos);
}

.border-top-white {
    border-top: 1px solid white;
}

.region.region-footer {
    padding: 0;
    font-size: 0.8em;
}

.b5_center_container {
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
}

.region-footer-center .view-content {
    display: flex;
}

.logo-rss img {
    width: 30px;
}

@media (min-width:576px) {
    .logo-rss img {
        width: 36px;
    }
}

/**otros**/
ul,
ol {
    /* padding-left: 0rem; */
}

ul li,
ol li {
    /* margin-left: 0; */
}
ol li::marker, ul li::marker {
    color: var(--color-principal-dark);
    font-weight: bold;
}

ul.hr-bottom-30-light,
ol.hr-bottom-30-light {
    padding-left: 0rem;
}

ul.hr-bottom-30-light li,
ol.hr-bottom-30-light li {
    margin-left: 1.5rem;
}

ul.hr-bottom-30-light {
    list-style-type: lower-alpha;
}

#block-progressbar {
    z-index: 5000;
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: .25rem;
    background: var(--color-principal);
    transform-origin: 0 50%;
    animation: grow-progress auto linear;
    animation-timeline: scroll();
}

figcaption {
    /*position: absolute;*/
    bottom: 15px;
    width: auto;
    background-color: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
    padding: 10px;
    font-size: 0.3em;
}

/*accordion*/
details {
    border: 0px solid var(--gray-200);
}

details[open] summary {
    color: var(--color-textos);
}

summary {
    border: 1px solid var(--color-textos);
    border-radius: 15px;
    /* min-height: 60px; */
    display: flex;
    align-items: center;
    padding: 8px 16px;
    /* font-size: 1.2rem; */
    width: 100%;
    justify-content: space-between;
}

summary:after {
    content: "";
    background: url("/themes/custom/b5subtheme/images/chevron-down-solid.svg");
    background-repeat: no-repeat;
    width: 30px;
    height: 22px;
    right: 0 !important;
    margin-left: 0;
    margin-top: 0px;
}

details[open] summary:after {
    transform: rotate(180deg);
    animation-name: spin;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

#backtotop {
    border: 1px solid white;
    border-radius: 50%;
}

a.btn.faq {
    width: 100%;
}

.accordion-button:not(.collapsed),
a.accordion-button.faq.collapsed {
    background-color: white;
    border: 1px solid var(--color-textos);
    border-radius: 15px;
    /* min-height: 60px; */
    display: flex;
    align-items: center;
    padding: 8px 16px;
    /* font-size: 1.2rem; */
    width: 100%;
    justify-content: space-between;
}

a.accordion-button {
    text-decoration: none;
    color: var(--color-textos);
}

.accordion-button:focus {
    box-shadow: 0;
}

.accordion .card.card-body {
    border: 0px;
}

/****/
.hover-line {
    /* display: inline-block; */
    position: relative;
    padding: 0;
    cursor: pointer;
    color: var(--color-textos);
}

.hover-line::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--color-textos);
    transform: scaleX(0.05);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hover-line::after {
    bottom: -8px;
    height: 8px;
    transform: scaleX(0.05);
}

header li.nav-item a:after {
    /* bottom: -6px; */
    /* height: 8px; */
    /* transform: scaleX(0); */
}

.hover-line:hover::after,
header li.nav-item a:hover:after {
    transform: scaleX(1);
}


/*
header li.nav-item a:after{
    content: '';
    color:var(--color-textos);
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--color-textos);
    transition: left .3s;
}

header li.nav-item a:hover:after{
    left: 0;
}
*/
img.icon {
    height: 20px !important;
    width: 20px !important;
    margin-bottom: 4px;
    margin-right: 4px;
}




.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Ajusta la altura según tus necesidades */
    background-image: url('/themes/custom/b5subtheme/images/trama-1.svg');
    /* Imagen de fondo */
    background-size: cover;
    /* Ajusta el tamaño de la imagen de fondo */
    background-position: center;
    /* Centra la imagen de fondo */
    background-attachment: fixed;
    /* Efecto parallax */
}

.image-container::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Ajusta la posición según tus necesidades */
    left: 50px;
    /* Ajusta la posición según tus necesidades */
    width: 200px;
    /* Ajusta el tamaño según tus necesidades */
    height: 200px;
    /* Ajusta el tamaño según tus necesidades */
    background-image: url('/themes/custom/b5subtheme/images/trama-2.svg');
    /* Imagen superpuesta */
    background-size: contain;
    /* Ajusta el tamaño de la imagen superpuesta */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    z-index: 1;
    /* Asegura que la imagen superpuesta esté por encima */
}

/*preguntas-frecuentes*/
article[data-history-node-id="35"] h2 {
    font-size: 2em;
    margin-bottom: 4rem;
}

article[data-history-node-id="35"] h3 {
    font-size: 2em;
    margin: 40px 0;
    text-transform: uppercase;
    border-bottom: 1px solid;
}

article[data-history-node-id="35"] .form--inline.clearfix {
    display: flex;
}

.no-results {
    border: 1px solid;
    border-radius: 5px;
    padding: 2rem;
    margin: 10px;
}

/* Card Styles */
.proyectos a {
    text-decoration: none;
    color: var(--color-textos);
}

.card-sl {
    border-radius: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-image img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 30px;
}

.card-heading h2 {
    font-size: 1em;
}

.card-action {
    position: relative;
    float: right;
    margin-top: -25px;
    margin-right: 20px;
    z-index: 2;
    color: var(--color-principal);
    background: #fff;
    border-radius: 100%;
    padding: 15px;
    font-size: 15px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
}

.card-action:hover {
    color: #fff;
    background: var(--color-principal);
    -webkit-animation: pulse 1.5s infinite;
}

.card-heading {
    font-size: 18px;
    /* background: #fff; */
    padding: 10px 15px;
}

.card-text {
    padding: 10px 15px;
    /* background: #fff; */
    /* font-size: 14px; */
    /* color: var(--color-textos-secundarios); */
}

.card-text.small {
    /* background: #BCFFF3; */
}

.card-button {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    background-color: #212529;
    color: #fff;
    border-radius: 0 0 30px 30px;
}

.card-button:hover {
    text-decoration: none;
    background-color: #212529;
    color: #fff;
}

.card-text.close {
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.tematica {
    background: #0c1b1b;
    padding: 2px;
    font-size: 14px;
    color: white;
}

.tematica span {
    position: relative;
}


/*** FIX CARDS GRID + ALTURAS ***/
.card-sl {
    height: 100%;
    display: flex;
}

/* El enlace ocupa toda la card */
.card-sl > a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Contenedor interno */
.card-sl .d-flex {
    height: 100%;
    align-items: stretch;
}

/* CONTENIDO */
.card-sl .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.card-sl .card-text:last-child {
    margin-top: auto;
}

/* IMAGEN */
.card-sl .card-image {
    width: 33%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Imagen consistente */
.card-sl .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* respeta estética pero menos agresivo que 30 */
}

/* Si no hay imagen, no rompe layout */
.card-sl .card-image:empty {
    display: none;
}

/* TRANSICION CARDS SUAVE */
.card-sl:hover {
    transform: translateY(-3px);
    transition: all 0.2s ease;
}

.card-heading h2 {
    margin: 0;
    line-height: 1.2;
}

.card-sl .label {
    display: inline-block;
    margin-bottom: 5px;
}

/* TEMÁTICA*/
.card-sl .tematica {
    position: relative;
    left: 10px;
    /* top: -16px; */
    width: fit-content;
    margin-bottom: 30px;
}


/**detalle*/
/* CABECERA PROYECTO */
.proyecto-hero {
  background: #fff;
  border-radius: 16px;
  /* padding: 2rem; */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.badge-ip {
  background: var(--color-principal-dark);
  color: var(--color-principal);
  padding: 6px 12px;
  font-weight: 600;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 20px 0 0 0;
  height: 30px;
}
.proyecto-hero .hero-content{
    padding: 2rem;
}
.proyecto-hero .hero-content h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.proyecto-hero .hero-media img {
  max-width: 550px;
  border-radius: 0px 0 0 20px;
  width: 100%;
  height: calc(100% - 30px);
  object-fit: cover;
}

/* COLUMNA TEXTO */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.meta-card {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 12px;
}

.meta-card h4 {
  font-size: 0.9rem;
  color: #595959;
  margin-bottom: 0.5rem;
}

.meta-card p {
  margin: 0;
  font-weight: 500;
}


.content-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  line-height: 1.7;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.content-box h2 {
  margin-bottom: 1rem;
  font-size: 1.5em;  
}

/** VIDEO**/
.block-field-blockblock-contentbloque-videobody {
    max-width: 500px;
}

.video-responsive .field--name-info {
    font-size: 1.5rem;
}

/**** ITEMS **/
@media (min-width:576px) {

    .item{
        max-width:500px;
    }
}


/* ======================================================
   SECTION
====================================================== */

.ipy-comparison {
  position: relative;
    background:
        linear-gradient(
            180deg,
            #f6f8f8 0%,
            #eef2f2 100%
        );

    padding-top: 7rem;
    padding-bottom: 7rem;
  overflow: hidden;
}

/* ======================================================
   WATERMARK
====================================================== */

.ipy-watermark {
  position: absolute;

  top: 40px;
  right: 60px;

  font-family: monospace;
  font-size: 22rem;
  font-weight: 700;
  line-height: .8;

  color: rgba(0,0,0,.03);

  pointer-events: none;
  user-select: none;
}

/* ======================================================
   RED DECORATIVA
====================================================== */

.ipy-network {
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.03) 2px, transparent 2px),
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);

  background-size:
    120px 120px,
    80px 80px,
    80px 80px;

  opacity: .15;
}

/* ======================================================
   HEADER
====================================================== */

.ipy-eyebrow {
  display: inline-block;

  margin-bottom: 1.5rem;
  padding-bottom: .5rem;

  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-principal-dark);
  border-bottom:  2px solid var(--color-principal-dark);
}

.ipy-main-title {
  margin-bottom: 2rem;

  font-family: monospace;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;

  color: #000;
}

.ipy-intro {
  max-width: 680px;

  font-size: 1.2rem;
  line-height: 1.8;

  color: #595959;
}

/* ======================================================
   COMPARISON BOX
====================================================== */

.ipy-comparison-box {
    background: transparent;
    box-shadow: none;
    border: 0;
}

/* ======================================================
   VS
====================================================== */

.ipy-vs {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background: #dffaf5;

  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 700;

  color: var(--color-principal-dark);

  z-index: 10;
}

/* ======================================================
   COLUMNAS
====================================================== */

.ipy-column {
    background: rgba(255,255,255,.92);

    border-radius: 2rem;

    padding: 3rem !important;

    border: 1px solid rgba(0,0,0,.04);

    box-shadow:
        0 12px 40px rgba(0,0,0,.04);

    height: 100%;
}
#views-bootstrap-bloque-convocatoria-block-1 > .row {
    gap: 2rem;
}

#views-bootstrap-bloque-convocatoria-block-1 > .row > div {
    width: calc(50% - 1rem);
}
.ipy-column-right {
  border-left:
    1px solid rgba(0,0,0,.08);
}
@media (max-width:991px){

    #views-bootstrap-bloque-convocatoria-block-1 > .row > div{
        width:100%;
    }

}
/* ======================================================
   ITEMS
====================================================== */

.ipy-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  /* margin-bottom: 2rem; */
  /* border-bottom:
        1px solid rgba(0,0,0,.06); */
}



/* ======================================================
   TITULOS
====================================================== */

.ipy-card-title,
.ipy-subtitle {
  margin-bottom: .4rem;
  font-weight: 700;
}

.ipy-card-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: .75rem;
}

.ipy-subtitle {
  font-size: 1.15rem;
}

/* ======================================================
   MINI LINE
====================================================== */

.ipy-mini-line {
  width: 36px;
  height: 3px;

  margin-bottom: 1.5rem;

  background: var(--color-principal-dark);
}

/* ======================================================
   TEXTO
====================================================== */

.ipy-description {

  max-width: 42ch;
 font-size: .95rem;
  line-height: 1.7;
  color: var(--color-textos)
}

/* ======================================================
   LINK
====================================================== */

.ipy-link {
  display: inline-block;

  margin-top: 2rem;

  font-size: 1rem;
  font-weight: 700;

  color: var(--color-principal-dark);

  text-decoration: none;

  transition:
    transform .3s ease,
    letter-spacing .3s ease;
}

.ipy-link:hover {
  transform: translateX(5px);

  letter-spacing: .02em;

  color: var(--color-principal-dark);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

  .ipy-watermark {
    font-size: 12rem;
  }

  .ipy-column-right {
    border-left: none;
    border-top:
      1px solid rgba(0,0,0,.08);
  }

  .ipy-vs {
    display: none;
  }

}

@media (max-width: 768px) {

  .ipy-main-title {
    font-size: 2.5rem;
  }

  .ipy-column {
    padding: 2rem;
  }

  .ipy-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ipy-card-title {
    font-size: 1.8rem;
  }

  .ipy-description {
    max-width: 100%;
  }

}




/* ======================================================
   SECCIÓN
====================================================== */

.ipy-panels {
  background: #f5f7f7;
  padding-bottom: 7rem;
}

/* ======================================================
   CARD
====================================================== */

.ipy-panel-card {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  border-radius: 1.5rem;
  text-decoration: none;
  background: #000;
    box-shadow:
      0 10px 30px rgba(0,0,0,.08);

    transition:
      transform .35s ease,
      box-shadow .35s ease;
}

.ipy-panel-card:hover {


  box-shadow:
      0 20px 50px rgba(0,0,0,.12);
}

/* ======================================================
   IMAGEN
====================================================== */

.ipy-panel-image {
  position: absolute;
  inset: 0;
}

.ipy-panel-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s ease,
    filter .6s ease;

  filter:
    grayscale(10%)
    saturate(85%);
}

.ipy-panel-card:hover .ipy-panel-image img {
  transform: scale(1.015);

  filter:
    grayscale(4%)
    saturate(92%);
}
/* ======================================================
   OVERLAY
====================================================== */

.ipy-panel-overlay {
  position: absolute;
  inset: 0;

    background:
      linear-gradient(
        to top,
        rgba(6,18,25,.90) 0%,
        rgba(6,18,25,.55) 40%,
        rgba(6,18,25,.10) 100%
      );

  z-index: 1;
}



/* ======================================================
   CONTENIDO
====================================================== */

.ipy-panel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3rem 2.5rem;
  /* height: 100%; */
}



/* ======================================================
   TITULO
====================================================== */

.ipy-panel-title {
  margin-bottom: 1rem;
  font-family: var(--title-font-family);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fff;
  height: 90px;
}



/* ======================================================
   RESPONSIVE
====================================================== */


@media (min-width:576px) {}
@media (min-width:768px) {
    .ip-metrics.grid-3 .view-content
{  grid-template-columns: repeat(3, 1fr);}
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}


@media (max-width: 991px) {

  .ipy-panel-card {
    height: 520px;
  }

}
@media (max-width: 576px) {

  .ipy-panel-card {
    height: 380px;
    margin-bottom: 2rem;
  }

  .ipy-panel-content {
    padding: 2rem;
  }

  .ipy-panel-title {
    font-size: 2rem;
  }

  .ipy-panel-text {
    max-width: 100%;
  }

}






/* =========================================================
   SECCIÓN ¿QUÉ ES LA I+P?
========================================================= */

.ip-about {
  position: relative;
  padding: 8rem 0;
  background:
    radial-gradient(circle at top left,
      rgba(255,255,255,0.7),
      transparent 30%),
    linear-gradient(
      180deg,
      #f7f7f7 0%,
      #ffffff 100%
    );
  overflow: hidden;
}

/* Watermark */

.ip-about::before {
  content: "I+P";
  position: absolute;
  right: 5%;
  top: 12%;
  font-size: clamp(10rem, 20vw, 24rem);
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.03;
  pointer-events: none;
}

/* Container */

.ip-about .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   HEADER
========================================================= */

.ip-about__header {
  max-width: 760px;
  margin-bottom: 5rem;
}

.ip-about__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #11c5c6;
  text-transform: uppercase;
}

.ip-about h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ip-about__intro {
  max-width: 640px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}

/* =========================================================
   CONTENT GRID
========================================================= */

.ip-about__content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

/* =========================================================
   SIDEBAR
========================================================= */

.ip-about__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ip-feature {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 1.25rem;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.ip-feature__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17,197,198,.12);
  color: #11c5c6;
  font-size: 1.2rem;
}

.ip-feature h3 {
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 700;
}

.ip-feature p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: #666;
}

/* =========================================================
   TEXT
========================================================= */

.ip-about__text {
  max-width: 860px;
}

.ip-about__text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 2;
  color: #444;
}

.ip-about__text blockquote {
  margin: 3rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 4px solid #11c5c6;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-textos);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .ip-about {
    padding: 6rem 0;
  }

  .ip-about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ip-about__sidebar {
    order: 2;
  }


  .ip-about::before {
    font-size: 10rem;
    top: 5%;
  }

}

@media (max-width: 768px) {

  .ip-about h2 {
    font-size: 2.5rem;
  }

  .ip-about__text blockquote {
    font-size: 1.15rem;
  }

}



/* =========================================================
   MÉTRICAS HERO
========================================================= */

.ip-metrics {
  position: relative;
  top: -3rem;
  z-index: 10;
}

/* Card principal */

.ip-metrics .view-content {
  position: relative;

  display: grid;

  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.92) 100%
    );

  border: 1px solid rgba(255,255,255,.95);

  border-radius: 2rem;

  backdrop-filter: blur(14px);

  box-shadow:
    0 10px 30px rgba(0,0,0,.04);

  isolation: isolate;
}
.ip-metrics.grid-3 .view-content
{  grid-template-columns: repeat(1, 1fr);}

@media (min-width:576px) {}
@media (min-width:768px) {
    .ip-metrics.grid-3 .view-content
{  grid-template-columns: repeat(3, 1fr);}
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}

.ip-metrics.grid-1 .view-content
{  grid-template-columns: repeat(1, 1fr);}
/* Trama decorativa */

.ip-metrics .view-content::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    url("/themes/custom/b5subtheme/images/trama-ip.svg");

  background-repeat: no-repeat;
  background-position:
    left center,
    right center;

  background-size:
    260px,
    260px;

  opacity: .18;

  pointer-events: none;

  z-index: -1;
}

/* =========================================================
   ITEM
========================================================= */

.dato-destacado {
  position: relative;
  padding: 2rem;
  text-align: center;
}

/* Separadores */

.dato-destacado:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 120px;

  transform: translateY(-50%);

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0,0,0,.08),
      transparent
    );
}

/* =========================================================
   NÚMERO
========================================================= */

.numero {
  display: block;

  margin-bottom: 1.2rem;

  font-size: clamp(4rem, 7vw, 6rem);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.06em;

  color: var(--color-textos);
}

/* =========================================================
   ETIQUETA
========================================================= */

.etiqueta {
  position: relative;

  display: inline-block;

  padding-bottom: 1rem;

  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: #222;
}

/* Línea turquesa */

.etiqueta::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 44px;
  height: 3px;

  transform: translateX(-50%);

  background: #11c5c6;

  border-radius: 999px;
}
.context {
    display: block;
    margin-top: 1rem;
    color:
        rgba(0,0,0,.55);
}
/* =========================================================
   HOVER
========================================================= */

.dato-destacado {
  transition:
    transform .35s ease,
    background .35s ease;
}

.dato-destacado:hover {
  background:
    rgba(17,197,198,.025);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .ip-metrics {
    margin-top: -3rem;
  }

  .ip-metrics .view-content {
    grid-template-columns: 1fr;
  }

  .dato-destacado:not(:last-child)::after {
    display: none;
  }

  .dato-destacado {
    border-bottom:
      1px solid rgba(0,0,0,.06);
  }

}

@media (max-width: 768px) {

  .ip-metrics {
    margin-bottom: 4rem;
  }

  .dato-destacado {
    padding:
      3rem 1.5rem;
  }

  .numero {
    font-size: 4rem;
  }

}

/* =========================================================
   MANIFIESTO
========================================================= */
.manifiesto {
    border-left: 3px solid #11c5c6;
    padding-left: 2rem;
}


/* =========================================================
   KPIS
========================================================= */
.convocatoria-kpis .view-content{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:2rem;

    margin:4rem 0;
}

.kpi-card{
        background:#fff;
        border-radius:24px;
        padding:2rem;
        box-shadow:
        0 10px 35px rgba(0,0,0,.05);
        height:100%;
        }

.kpi-card:hover{
    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}




.kpi-number{font-size: clamp(1.5rem,2vw,3rem);font-weight:800;line-height:1.1;color:var(--color-textos);letter-spacing:-1px;margin-bottom:1rem;}

.kpi-line{

    width:48px;
    height:4px;

    border-radius:50px;

    background:var(--color-principal-dark);

    margin-bottom:1rem;
}

.kpi-label{

    font-size:1rem;

    line-height:1.6;

    color:var(--color-textos-secundarios);

    font-weight:500;
}
@media (max-width:1200px){

    .convocatoria-kpis .view-content{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){

    .convocatoria-kpis .view-content{
        grid-template-columns:1fr;
    }

    .kpi-card{
        padding:1.75rem;
    }

    .kpi-number{
        font-size:2.4rem;
    }
}






/* ======================================================
   ICONOS
====================================================== */

.ipy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
    width: 60px;
    height: 60px;
    background:var(--color-principal-dark);
    border-radius: 50%;
    flex-shrink: 0;
}
.ipy-icon i{
    font-size: 2rem;
    color: #fff;
}

.ipy-card-icon {
    position: absolute;
    top: 0;
    left: 2rem;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    z-index: 3;
}

.kpi-icon{
    margin-bottom:1.75rem;
}





.ip-section{
        background:
        linear-gradient(
            135deg,
            rgba(0,31,45,.96),
            rgba(0,58,78,.92)
        ),
        url("/themes/custom/b5subtheme/images/que-es-ip.png");
        background-size:cover;
        background-position:center;
        padding-top: 3rem;
}

/* BLOQUE IZQUIERDO */

.ip-content{
        height:100%;
        /* padding: 3rem 0; */
        color:#fff;
        }

.ip-kicker{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--color-principal-brillo);

    font-size:.85rem;
    font-weight:700;

    letter-spacing:.08em;
}

.ip-content h2{

    font-size:
        clamp(2.5rem,4vw,4rem);

    margin-bottom:1.5rem;

    font-weight:700;
}

.ip-content h2::after{

    content:"";

    display:block;

    width:70px;
    height:4px;

    margin-top:1rem;

    background:var(--color-principal-brillo);
}

.ip-intro{

    max-width:650px;

    margin-bottom:3rem;

    font-size:1.1rem;
    line-height:1.8;

    opacity:.95;
}

/* ITEMS */
@media (min-width:576px) {}
@media (min-width:768px) {
    .ip-section div.view.view-block-item.view-id-block_item.view-display-id-block_1 {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}
@media (min-width:1200px) {}
@media (min-width: 1400px) {}




.ip-item{
    display:flex;
    gap:1.5rem;
    align-items:flex-start;
}
.ip-item:not(:last-child){
    margin-bottom: 3rem;
}

.ip-item h3{
    font-size:1.15rem;
    margin-bottom:.5rem;
    font-weight:600;
    /* color: white; */
}

.ip-item p, .ip-item li{
    margin:0;
    line-height:1.7;
    margin-bottom: 1rem;
    /* color:    rgba(255,255,255,.85); */
}
