/*
    Theme Name: Bi lerro
    Theme URI: 
    Author: CBT Comunicación y multimedia
    Author URI: https://cbt.es
    Description: Theme Diseñado para la plataforma de Bi Lerro
    Version: 1.4
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: BiLerro
*/

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

/* =========================
   TIPOGRAFÍA GLOBAL · BILERRO
   ========================= */

:root {
    --font-base: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

}


/* Texto base */
html, body {
    font-family: var(--font-base);
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.75em;
}

/* Ajustes finos */
h1 { font-size: 62px;
    font-weight: 600; }
h2 { font-size: 40px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p{font-size: 18px;}



/* Texto corriente */
p, li, a, span, blockquote {
    font-family: var(--font-base);
}
/* Activo (cubre WordPress + accesibilidad) */
.header-menu a[aria-current="page"],
.header-menu li.current-menu-item > a,
.header-menu li.current-menu-parent > a,
.header-menu li.current_page_item > a,
.header-menu li.current_page_parent > a {
  color: #4fc3b3 !important; /* si no, te lo pisan */
}

.header-bilerro {
    width: 100%;
    background: #fff;
    font-size: 14px;
  margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== TOP BAR ===== */
.header-top {
    background: #5fc7c1;
    font-size: 13px;
}

.header-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top a {
    color: #fff;
    text-decoration: none;
}

.header-top a:hover {
    text-decoration: underline;
}

/* ===== NAV PRINCIPAL ===== */
.header-main {
    border-bottom: 1px solid #eaeaea;
}

.header-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    width: 185px;
    height: auto;
  
  padding: 4px 8px;
}


/* Menú */
.header-menu {
    display: flex;
    align-items: center;
}

.header-menu ul {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.header-menu a:hover {
    color: #5fc7c1;
}

/* Flecha dropdown */
.header-menu .has-submenu > a::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
}

/* ===== MOBILE ===== */
.header-mobile {
    display: none;
}

.header-mobile i {
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
/* ===== MOBILE MENU (Bootstrap Offcanvas) ===== */
.header-mobile{
  display:none;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}

.header-mobile i{
  font-size: 28px;
  color:#333;
}

/* En móvil: oculto menú desktop + muestro botón */
@media (max-width: 992px){
  .header-menu{ display:none; }
  .header-mobile{ display:block; }

    .header-top-inner {
        display: none;
    }
}

/* Offcanvas look & feel */
.mobile-menu{
  width: 320px;
}

.mobile-menu .offcanvas-header{
  border-bottom: 1px solid #eaeaea;
}

.mobile-menu .offcanvas-title{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.mobile-menu-nav{
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.mobile-menu-nav a{
  color:#333;
  text-decoration:none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-nav a:hover{
  color:#5fc7c1;
}

.mobile-menu-extra{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eaeaea;

  display:flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-extra a{
  color:#333;
  text-decoration:none;
  font-size: 14px;
}

.mobile-menu-extra a:hover{
  color:#5fc7c1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-menu {
        display: none;
    }
    .proyecto-img
    .header-mobile {
        display: block;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #2bb3a3;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999; /* MUY IMPORTANTE */
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn:hover {
    background: #249c8e;
}


/* ===== TOP BAR ===== */
.topbar {
    background: #5fc7c1;
    font-size: 13px;
}

.topbar-inner {
    max-width: 1400px;
    margin: auto;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

.topbar a:hover {
    text-decoration: underline;
}

.new-bg-img {
    z-index: 0;
    top: -100px;
    right: -220px;
}

/* ===== NAV PRINCIPAL ===== */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-inner {
    max-width: 1400px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 38px;
}

/* Menú */
.nav-menu ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.nav-menu a:hover {
    color: #5fc7c1;
}

/* Flecha */
.has-submenu > a::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
}

/* Mobile */
.nav-mobile i {
    color: #333;
}

/* ===== TOP BAR ===== */
.topbar {
    background: #5fc7c1;
    font-size: 13px;
}

.topbar-inner {
    max-width: 1400px;
    margin: auto;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 18px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== MAIN NAV ===== */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-inner {
    max-width: 1400px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
}

/* Menu */
.nav-menu ul {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.nav-menu a:hover {
    color: #5fc7c1;
}

/* Mobile */
.nav-mobile i {
    color: #333;
}


/* ===== WRAPPER ===== */
.soluciones-wrapper{
  width: 100%;
}
/* =========================================
   SOLUCIONES / SERVICIOS — CSS ÚNICO
   (Intro + Fullwidth + Bloques + Lista + CTA)
========================================= */

/* Intro (bloque superior con título + párrafos centrados) */
.soluciones-wrapper .intro,
.soluciones-wrapper .soluciones-intro,
.soluciones-wrapper .wp-block-group.intro{
  padding: 4.5rem 0; /* 72px */
}

.soluciones-wrapper .intro h1,
.soluciones-wrapper .soluciones-intro h1,
.soluciones-wrapper .wp-block-group.intro h1{
  font-size: 3rem;   /* 48px */
  line-height: 1.1;
  margin: 0 0 1rem;  /* 16px */
}

.soluciones-wrapper .intro p,
.soluciones-wrapper .soluciones-intro p,
.soluciones-wrapper .wp-block-group.intro p{
  font-size: 1rem;         /* 16px */
  line-height: 1.7;
  max-width: 51.25rem;     /* 820px */
  margin: 0 auto 0.875rem; /* 14px */
}

/* Fullwidth “Descubre cómo transformamos…” */
.soluciones-wrapper .fullwidth,
.soluciones-wrapper .soluciones-fullwidth,
.soluciones-wrapper .wp-block-group.fullwidth{
  padding: 4rem 0; /* 64px */
}

.soluciones-wrapper .fullwidth h2,
.soluciones-wrapper .soluciones-fullwidth h2,
.soluciones-wrapper .wp-block-group.fullwidth h2{
  font-size: 2.5rem;     /* 40px */
  line-height: 1.2;
  max-width: 61.25rem;   /* 980px */
  margin: 0 auto;
  text-wrap: balance;
}

/* =========================================
   BLOQUES DE SOLUCIÓN
========================================= */

.solucion-bloque{
  padding: 5rem 0; /* 80px */
}

.solucion-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* mismo aire lateral que la home */
}

/* Match XD */
.solucion-texto h2{
  font-size: 2.5rem;   /* 40px */
  line-height: 1.15;
}

.linea-verde{
  width: 8rem;       /* 160px */
  height: 6px;
  margin: 0 0 1.5rem;
}

/* Párrafo */
.solucion-texto p{
  font-size: 1rem;      /* 16px */
  line-height: 1.6;
  max-width: 32.5rem;   /* 520px */
  margin: 0 0 1rem;     /* 16px */
}

/* Imagen */
.solucion-imagen{
  flex: 1.05;
}

.solucion-imagen img{
   width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* =========================================
   LISTA (viñetas) — marker color + tamaño
   (Asegura que haya marcador visible)
========================================= */

ul.solucion-lista{
  font-size: 1rem;
  list-style: disc;      /* clave si algún reset lo desactiva */
  padding-left: 1.4em;   /* para que el marker tenga aire */
  margin: 0;             /* opcional: evita saltos raros */
}

ul.solucion-lista li::marker{
  color: #5BC4BF;
  font-size: 1.35em;     /* más grande solo el círculo */
}

/* =========================================
   CTA
========================================= */
.cta-title{
  max-width: 1200px;
}

/* Flores soluciones */
.intro-soluciones{
  background-color: rgba(177, 222, 211, 0.16);
  position: relative;
  background-image: var(--decor-bg);
  background-repeat: no-repeat;
  background-position: right -215px center;
  background-size: contain;
  opacity: 1;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 62rem){ /* 992px */
  .solucion-bloque{ padding: 3.5rem 0; } /* 56px */

  .solucion-inner,
  .solucion-inner.reverse{
    gap: 2rem;          /* 32px */
    padding: 0 1.5rem;  /* 24px */
  }

  .solucion-texto h2{ font-size: 1.75rem; } /* 28px */
  .linea-verde{ width: 72px; }
}


/* viñetas Bilerro*/


.solucion-lista, .lista-checks {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.solucion-lista li, .lista-checks li {
    /* Esto es lo que elimina el punto negro de tus capturas */
    display: block !important; 
    position: relative !important;
    padding-left: 35px !important; 
    margin-bottom: 12px !important;
    
    /* Estética de texto */
    font: normal normal normal 16px/22px Montserrat;
}

.solucion-lista li::before, 
.lista-checks li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    width: 14px !important;
    height: 14px !important;
    
    /* Imagen del icono */
    background-image: url('/wp-content/uploads/2026/01/cropped-icono-bilerro@2x.png') !important;
    background-size: contain !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
}


/* ====== SOLO LO FUNDAMENTAL A CONSERVAR (no repetido) ====== */

/* Fondo suave alterno */
.solucion-bloque.fondo-suave{
  background: #f3faf8;
}

/* Layout flex (si no está en tu nuevo CSS, esto es CRÍTICO) */
.solucion-inner{
  display: flex;
  align-items: center;
}

.solucion-inner.reverse{
  flex-direction: row-reverse;
}

/* Contenedor de texto (flex) */
.solucion-texto{
  flex: 1;
}

/* Línea verde: sin esto no se verá la barra */
.linea-verde{
  display: block;
  background: #4fc3b3;
}

/* Botones en fila */
.solucion-texto .featured-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.solucion-texto .featured-btn + .featured-btn{
  margin-left: 16px;
}

/* Imagen: alineación (evita cosas raras) */
.solucion-imagen{
  display: flex;
  justify-content: flex-start;
}

/* Responsive “columna” (si no existe en el nuevo, esto es CRÍTICO) */
@media (max-width: 1100px){
  .solucion-texto p{
    max-width: none;
  }

  .solucion-texto .featured-btn{
    align-self: center;
  }

  .solucion-imagen{
    justify-content: center;
  }
}


/* Tablet */
@media (max-width: 1024px){
  .solucion-imagen img{
    max-width: 100%;
    border-radius: 6px;
  }
}

/* Móvil */
@media (max-width: 768px){
  .solucion-imagen img{
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
  }
}
.hero-section {
    padding-top: 90px; 
}


.hero-section {
    position: relative;
  margin-top: 0 !important;
    padding-top: 0 !important;
  
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .bg-dark {
    z-index: 1;
}

.hero-section {
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* oscurece la imagen */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    max-width: 900px;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;      
    justify-content: center;  
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif; 
    font-size: 52px;        
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
  .featured-content, 
#carouselExampleCaptions .carousel-indicators{
    max-width:100% !important;
  }
}


@media (max-width: 768px){

    .hero-section {
       height: 200px !important;
    }


 .new-info-back {
    padding: 0 30px 30px 0;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }
  
  }


.intro-soluciones {
    position: relative;
    background-color: #f3faf8; /* fondo suave */
    padding: 100px 0;
    overflow: hidden;
}

/* FLOR DECORATIVA */


/* CONTENIDO */
.intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.intro-inner h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #000;
}

.intro-inner p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 18px;
}




.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 80, 0.55);
    z-index: 1;
}

.cta-ferroviaria .container {
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
}

.btn-cta, .cf7-submit input[type="submit"] {
    background-color: #5ccbc6;
    color: #000;
    padding: 14px 30px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 24px;
    position: relative;
    /*width: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;*/
}

.cf7-submit input[type="submit"] {
    margin-top: 0;
}

.btn-cta:hover, .cf7-submit input[type="submit"]:hover {
    background-color: #48b7b2;
    color: #003c50;
}

.btn-cta i {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    right: 5px;
}

@media (max-width: 992px) {
    .btn-cta i {
        right: 10px;
    }
}

.btn-cta .flecha {
    margin-left: 10px;
    font-size: 1.2em;
    /*position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    height: 36px;*/
}

.cta-ferroviaria {
    position: relative;
    min-height: 420px;
}


.btn-bilerro-cta {
    background-color: #5ccbc6;
    color: #003c50;
    padding: 5px 50px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-bilerro-cta:hover {
    background-color: #4fb8b3;
    transform: translateY(-1px);
}

.btn-bilerro-cta::after {
    content: "›";
    font-size: 16px;
    line-height: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 80, 0.55);
    z-index: 1;
}

/* MUY IMPORTANTE */
.cta-ferroviaria .container {
    position: relative;
    z-index: 2;
}

/*.btn-cta {
    position: relative;
    z-index: 3;
}*/

.cta-ferroviaria {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 80, 0.55);
    z-index: 1;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* 👇 ESTO ES LO QUE FALTABA */
    width: 100%;
}

.cta-title {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    max-width: 1200px;   /* evita líneas demasiado largas */
    margin: 0 auto;
}

.proyectos-destacados .proyectos-wrapper{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* GRID (Bootstrap row + cols) */
.proyectos-destacados .grid-proyectos.row{
  margin-left: -12px;
  margin-right: -12px;
  row-gap: 48px;          
}

/* CARD (tu <a>) */
.proyectos-destacados a.proyecto-card{
  display: block;
  text-decoration: none;
  color: inherit;
  padding-left: 12px;
  padding-right: 12px;
}

/* Imagen */
.proyectos-destacados .proyecto-img{
  border-radius: 6px;
  overflow: hidden;
}
.proyectos-destacados .proyecto-img img{
  width: 100%;
  height: 260px;         
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}

/* Info */
.proyectos-destacados .proyecto-info{
  padding-top: 18px;
  gap: 14px !important;   
}
.proyectos-destacados .proyecto-info strong{
  font-weight: 800;
  letter-spacing: .01em;
  margin-right: 10px;
  display: inline-block;
}
.proyectos-destacados .proyecto-info span{
  color: #6fbfb3;         /* verde/teal del XD */
  font-weight: 500;
  letter-spacing: .06em;

}
	/* FLOR DECORATIVA */

.proyectos-destacados{
  background-image: var(--decor-bg);
  background-repeat: no-repeat;
 background-position: right -217px top -111px;

}
	
.proyecto-info strong {
    font-size: 18px;
}
.proyecto-info span {
    font-size: 18px;

}
/* “Servicio” (2º bloque dentro de .proyecto-info) */
.proyectos-destacados .proyecto-info > div:last-child{
  font-size: 16px;        /* look XD (texto grande) */
  line-height: 1.15;
  font-weight: 500;
  color: #000;

}

/* Hover tipo “Actualidad” */
.proyectos-destacados a.proyecto-card{
  transition: transform .25s ease, filter .25s ease;
}
.proyectos-destacados a.proyecto-card:hover{
  transform: translateY(-6px);
}
.proyectos-destacados a.proyecto-card:hover .proyecto-img img{
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px){
  .proyectos-destacados .proyectos-wrapper{ padding: 0 24px; }
  .proyectos-destacados .proyecto-img img{ height: 240px; }
  .proyectos-destacados .proyecto-info > div:last-child{ font-size: 24px; max-width: 20ch; }
}
@media (max-width: 576px){
  .proyectos-destacados .proyectos-wrapper{ padding: 24px; }
  .proyectos-destacados .proyecto-img img{ height: 220px; }
  .proyectos-destacados .proyecto-info > div:last-child{ font-size: 22px; }

}

.titulo-seccion {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;      /* Medium */
    font-size: 40px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 60px;
}

.proyecto-info {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;      /* Medium */
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 60px;
}


.partners-section{
  padding:90px 0 100px;
  background:#fff;
  text-align:center;
}
.partners-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.partners-container2{
  max-width:700px;
  margin:0 auto;
  padding:0 20px;
}

.solucion-inner{
  max-width:1350px;
  margin:0 auto;
  padding:0 20px;
}

.solucion-inner > div {
    width: 50%;
    padding: 0 20px;
}

.solucion-inner .solucion-imagen {
    height: 430px;
}

@media (max-width: 960px) {
    .solucion-inner:not(.reverse) {
        flex-direction: column;
    }

    .solucion-inner.reverse {
        flex-direction: column;
    }

    .solucion-inner > div {
        width: 100%;
    }
}

.partners-title{
 font-family: Montserrat;
  font-size:40px;
  margin-bottom:12px;
}
.partners-subtitle{
  font-size:15px;
  color:#666;
  margin-bottom:50px;
}

.partners-subtitle2{
  font-size:20px;
  color:#2B7672;
  margin-bottom:50px;
}


.partners-logos{
  display:flex;
  justify-content:center; 
  align-items:center;
  gap:40px;
}
.partners-logos img{
  max-height:42px;
  width:auto;
  object-fit:contain;
  filter:none;
  opacity:1;
}

.partners-logos2 img{
  max-height:60px;
  width:auto;
  object-fit:contain;
  filter:none;
  opacity:1;
}
/* Carrusel logos: scroll horizontal con snap */
.partners-logos{
    display: flex;
    gap: 28px;
    align-items: center;
    flex-flow: wrap;
    padding: 10px 6px 14px;
}

.partners-logos > *{
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Logos */
.partners-logos img{
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  opacity: .95;
}

/* Quita scrollbar fea (sin cargarte accesibilidad) */
.partners-logos::-webkit-scrollbar{
  height: 8px;
}
.partners-logos::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 999px;
}
.partners-logos::-webkit-scrollbar-track{
  background: transparent;
}

/* En desktop, si caben, que no parezca “scroll obligado” */
@media (min-width: 992px){
  .partners-logos{
    overflow-x: hidden;
    flex-wrap: wrap;        /* si prefieres que NO haga scroll en desktop */
    /*justify-content: flex-start;*/
  }
}

@media(max-width:1024px){
  .partners-logos{
    justify-content:center;

  }
}
/*SOBRE BILERRO*/

.fondo-verde-certificaciones{
  background:#f3fbf9 !important;
}

.certificaciones-inner{
  display:flex;
  gap:60px;
}

/* SOBRE BILERRO */

/*flores*/
.decor-flor{
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.decor-flor--soluciones{
  top: 468px;
  left: -270px;
}
.decor-flor--partners{
  top: -169px;
  left: 0;
  transform: translateX(-268px);
}
/* Flor partners (ya rotada en la imagen) */
.decor-flor-container{
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
    top: -220px;
    right: 0;
    width: 440px;
    height: 440px;
}


	
/* Móvil: 1 tarjeta por pantalla, swipe */
@media (max-width: 768px){
  .decor-flor{
    display: none;
  }
}

/* fin flores soluciones*/

.solucion-bloque.fondo-suave > .solucion-imagen img{
		height: 298px !important;
	}

/* Botón con icono descarga */
.btn-cta.btn-download{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: #55c7c1;
  color: #0b1b1b;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn-download__icon{ display: inline-flex; }
/*Certificaciones*/
.certificaciones-lista{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

/* Línea continua inferior (como XD) */
.certificaciones-lista{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.certificacion-item{
  display: flex;
  flex-direction: column;
}

/* Línea por item, mismo ancho y misma altura visual */
.certificacion-item::after{
  content: "";
  margin-top: auto;        /* CLAVE: alinea todas */
  height: 2px;
  background: #6fbfb3;
  width: 100%;
}

.btn-cert {
   color:#000;
    border-bottom: none;
}

/* =========================
   TIMELINE 
========================= */


/* Botones (separados del timeline) */
.slider-nav{
  position: absolute;
  left: 0;
  top: -20px;             /* separación respecto al timeline */
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-btn{
  width: 33px;
  height: 35px;
  background: #5BC4BF;
  border: none;
  border-radius: 3px;
  cursor: pointer;

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

  color: #000;
  font-size: 20px;
  line-height: 1;
}

.slider-btn:hover{ opacity: .85; }

.slider-btn:disabled{
  opacity: .35;
  cursor: default;
}
/* Wrapper full width */
.timeline-section{
  position: relative;
}

/* Contenido centrado */
.timeline-container{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}


/* Track scrollable */
.timeline-track{
  position: relative;
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 18px;
}
.timeline-track::-webkit-scrollbar{ display:none; }

/* --- LA LÍNEA: FULL WIDTH --- */
/* Oculta la línea del track si la tenías */
.timeline-track .timeline-line{ display: none; }

/* Crea la línea en el wrapper, no en el contenedor */
.timeline-section::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(91,196,191,.7);

  /* AJUSTA esta altura para que coincida con los iconos */
  top: calc(10px + 62px - 27px/2); /* aproximación */
  /* Si no te gusta, usa un número fijo: top: 155px; */
	z-index:-9;
}

/* Items por encima */
.timeline-items{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 70px;
  width: max-content;
  animation: timelineLoop 40s linear infinite;
}
.timeline-items-clone{
  display: flex;
  gap: 70px;
  width: max-content;
  animation: timelineLoop 40s linear infinite;
}
@keyframes timelineLoop{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
/*
.timeline-items{ scroll-snap-type: none; }
.timeline-item{ scroll-snap-align: none; }

*/
/* el wrapper que se mueve */
.timeline-rail{
  display: flex;
  width: max-content;
  will-change: transform;
}


.timeline-item{
  flex: 0 0 190px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Icono cortando la línea */
.timeline-icon{
    width: 46px;
    height: 46px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    transform: translateY(-26px);
    background: #fff;
    padding: 7px;
    margin: 0;
}

.timeline-year{
  color: #5BC4BF;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 10px;
}

.timeline-text{
  margin: 0;
  max-width: 220px;
  font-size: 13px;
  line-height: 1.35;
}


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

/* Tablet */
@media (max-width: 1024px){
  .timeline-items{ gap: 48px; }
  .timeline-item{ flex-basis: 170px; }
}

/* Móvil: 1 tarjeta por pantalla, swipe */
@media (max-width: 768px){
  .timeline-track{
    padding-top: 54px;
    padding-bottom: 16px;
  }

  .timeline-line{
    top: 30px;
  }

  .timeline-items{ gap: 24px; }
  .timeline-item{ flex: 0 0 78vw; }

  /* Opcional: en móvil es más natural swipe que flechas */
  .slider-nav{ display: none; }

  .timeline-text{
    max-width: none;
    font-size: 14px;
  }

  .timeline-track::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:40px;
    height:100%;
    pointer-events:none;
    background: linear-gradient(to right, rgba(255,255,255,0), #fff);
  }
}



/* Móvil */
@media (max-width: 768px){

.certificaciones-lista {
	text-align: center;
    grid-template-columns: repeat(1, 1fr);
}
.certificacion-item {
 align-items: center;
}
}


/* fin sobre bilerro */

.btn-cert{
  color:#59c6c4;
  text-decoration:none;
  border-bottom:2px solid #59c6c4;
}

.separacion {
  margin: 40px 0;
}



.linea-verde3 {
    display: block;
    width: 250px;
    height: 6px;
    background: #2bb3a3;

}


.linea-verde2 {
  margin-top: 10px;
  display: block;
}

.certificacion-item {
  display: flex;
  flex-direction: column;
}

.certificacion-item .descripcion {
  min-height: 40px; /* ajustá según el diseño */
  margin: 8px 0;
}

.certificacion-item h4{
  font-size:15px;
  font-weight:700;
}

.certificacion-item p{
  font-size:14px;
  max-width: 200px
}


.proyectos {
  padding: 60px 0;

}

.proyectos-grid {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  
}


.proyecto {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  display: block;
box-shadow: 0 3px 3px 3px rgba(0,0,0,0.15);
}


.proyecto img {
  width: 100%;
  height: 267px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.proyecto .titulo {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  z-index: 2;
  padding-right: 16px;
}


.proyecto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
  z-index: 1;
}

.proyecto:hover img {
  transform: scale(1.05);
}


@media (max-width: 900px) {
  .proyectos-grid {
    grid-template-columns: repeat(2, 1fr);
  } 
}
@media (max-width: 1400px) {
    .fondo-verde-certificaciones .solucion-texto{
      flex: none;
    }
    .proyecto .titulo {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
  .proyectos-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECCIÓN ===== */
.tech-offer {
  padding: 80px 0;
}

/* ===== CABECERA ===== */
.tech-offer__header {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 60px;
}

.tech-offer__header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tech-offer__header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3aa6a1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== GRID ===== */
.tech-offer__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* TECH OFFER: responsive grid */
@media (max-width: 992px){
  .tech-offer__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 24px; /* opcional, reduce el 60px */
  }
}

@media (max-width: 576px){
  .tech-offer__grid{
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
}

/* =========================
   HERO HOME · BILERRO
   ========================= */

.home-header{
  position: relative;
  width: 100%;
  height: calc(100vh - 120px); /* ajusta si tu header fijo mide otra cosa */
  min-height: 620px;
  overflow: hidden;
}

/* SLIDE BASE */
.header-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;

  background-size: cover;
  background-position: center;
}

.header-slide.active{
  display: block;
}

/* VIDEO */
.header-slide video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (para leer textos, como en XD) */
.header-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  z-index: 0;
}

/* CONTENIDO CENTRADO */
.header-slide .content{
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;

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

  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.header-slide .content h1{
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15%;
}

@media (max-width: 992px) {
    .header-slide .content h1 {
        margin-bottom: 40vh;
    }
}

.header-slide .featured-bars{
    display:flex;
    justify-content:center;
    gap: 14px;
    margin: 0 0 1.8rem;
}

.header-slide .featured-bar{
    width: 34px;
    height: 3px;
    background: rgba(255,255,255,.35);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .25s ease, opacity .25s ease;
}

.header-slide .featured-bar.active{
  background: #5ccbc6;
}

.header-slide .featured-bar:hover{
  opacity: .85;
}
.featured-bars{
  position:absolute;
  left: 64px;          /* mismo padding que el texto */
  bottom: 36px;        /* debajo del botón */

  display:flex;
  gap:12px;
  z-index:3;
}
:root{
  --site-container: 1200px;  /* AJUSTA a tu grid real */
  --site-gutter: 24px;
}

.featured-header .featured-content{
  left: max(
    var(--site-gutter),
    calc((100% - var(--site-container)) / 2)
  );
}
/* Ajuste de ancho y respiración (clave) */
.featured-header .featured-content{
  width: 720px;          /* más fiel visualmente que 838 */
  max-width: 60%;
  padding: 64px 64px;
}
#carouselExampleCaptions .carousel-indicators{
  width: 720px;          /* más fiel visualmente que 838 */
  max-width: 60%;
}
.featured-header .featured-content p{
  max-width: 520px;
}

/* Limitar ancho del texto (sensación XD) */
.featured-header .featured-content p{
    max-width: 520px;
}

.featured-header .featured-content h2{
    max-width: 560px;
}
.featured-header{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-slide{
  position: relative;
}

.featured-slide .featured-content{
  left: 0;
}

/* CTA */
.btn-bilerro-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 2.2rem;
  background: #5ccbc6;
  color: #003c50;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

/* =========================
   FLECHAS (como XD: cuadradas, borde turquesa)
   ========================= */

.header-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index: 20;

  width: 44px;
  height: 44px;

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

  border:2px solid #5ccbc6;
  background: transparent;
  color:#5ccbc6;

  font-size: 26px;
  line-height: 1;
  cursor:pointer;

  transition: background .25s ease, color .25s ease, transform .2s ease, opacity .2s ease;
}

.header-arrow--prev{ left: 40px; }
.header-arrow--next{ right: 40px; }

.header-arrow:hover{
  background:#5ccbc6;
  color:#003c50;
  transform:translateY(-50%) scale(1.05);
}

/* Responsive: ajusta alturas y flechas */
@media (max-width: 768px){
  .home-header{
    height: calc(100vh - 80px);
    min-height: 520px;
  }
  .header-arrow--prev{ left: 16px; }
  .header-arrow--next{ right: 16px; }
  .header-slide .content h1{
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
}


/* OVERLAY (para que el texto se lea) */
.header-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* CONTENIDO */
.header-slide .content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;

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

    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.header-slide h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; /* BOLD aquí */
    margin-bottom: 2rem;
}


.btn-bilerro-cta {
    padding: 0.9rem 2.2rem;
}
/* FLECHAS */
.header-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;

  width:44px;
  height:44px;

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

  border:2px solid #5ccbc6;
  background:transparent;
  color:#5ccbc6;

  font-size:26px;
  line-height:1;
  cursor:pointer;

  transition: background .25s ease, color .25s ease, transform .2s ease, opacity .2s ease;
  opacity:.95;
}

/* Izquierda / derecha */
.header-arrow--prev{ left:40px; }
.header-arrow--next{ right:40px; }

/* Hover como XD (rellena y cambia color texto) */
.header-arrow:hover{
  background:#5ccbc6;
  color:#003c50;
  transform:translateY(-50%) scale(1.05);
}



/* ===============================
   FEATURED HEADER  (CORREGIDO)
================================ */

.featured-header{
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* SLIDES */
.featured-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;

  background-size: cover;
  background-position: center;
}

.featured-slide.active{
  display: block;
}

/* OVERLAY tipo Talgo (degradado) */
.featured-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1;
}

/* CAJA OSCURA (XD) — UNA SOLA DEFINICIÓN, coherente */
.featured-content{
  position: absolute;
  top: 0;
  bottom: 0;

  /* alineada al margen del container, como pedías */
  left: max(var(--site-gutter), calc((100% - var(--site-container)) / 2));

  width: 720px;
  max-width: 60%;
  padding: 64px;

  background: rgba(0,0,0,0.46);
  color: #fff;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.featured-eyebrow{
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.featured-content h2{
  font-size: 3rem;
  margin: 0;
  max-width: 560px;
}

.featured-content p{
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

/* BOTÓN */
.featured-btn{
  margin-top: 1rem;
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: #5ccbc6;
  color: #003c50;
  text-decoration: none;
  width: fit-content;
}

/* BARRITAS (featured) */
.featured-header .featured-bars{
  position: absolute;
  left: max(var(--site-gutter), calc((100% - var(--site-container)) / 2));
  bottom: 36px;

  display: flex;
  gap: 12px;
  z-index: 10;
}

.featured-header .featured-bar{
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, opacity .25s ease;
}

.featured-header .featured-bar.active{ background:#5ccbc6; }
.featured-header .featured-bar:hover{ opacity:.85; }

/* RESPONSIVE: caja oscura a todo el ancho */
@media (max-width: 992px){
 .featured-header .featured-content{
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    padding: 28px 22px;
   text-align: center;
  }
.featured-content{
align-items: center;
  }

  .featured-header .featured-bars{
    left: 16px;
    bottom: 18px;
 left: 50% !important;
  transform: translateX(-50%) !important; /* Ajuste fino */
  }

}

@media (max-width: 576px){
  .featured-content h2{
    font-size: 40px;
    line-height: 1.05;
  }
}

/* ===============================
   (FIN FEATURED CORREGIDO)
================================ */



/* BARritAS */
.home-header .hero-bars{
  display:flex;
  gap:14px;
  justify-content:center;
}

.home-header .hero-bar{
  width:34px;
  height:3px;
  background:rgba(255,255,255,.35);
  border:0;
  padding:0;
  cursor:pointer;
}

.home-header .hero-bar.active{ background:#5ccbc6; }


.home-header .hero-bar:hover{ opacity:.85; }

.home-header .hero-bars{
  display:flex;
  justify-content:center;
  gap:14px;
}

.home-header .hero-bar{
  width:34px;
  height:3px;
  background: rgba(255,255,255,.35);
  border:0;
  padding:0;
  cursor:pointer;
  transition: background .25s ease, opacity .25s ease;
}

.home-header .hero-bar.active{ background:#5ccbc6; }
.home-header .hero-bar:hover{ opacity:.85; }
.featured-header .featured-bars{
    position: absolute;
    left: 4rem;      /* mismo margen que el bloque */
    bottom: 36px;    /* debajo del botón */

    display: flex;
    gap: 12px;
    z-index: 10;
}


.featured-header .featured-bar{
  width:28px;
  height:4px;
  background: rgba(255,255,255,.4);
  border:0;
  padding:0;
  cursor:pointer;
  transition: background .25s ease, opacity .25s ease;
}

.featured-header .featured-bar.active{ background:#5ccbc6; }
.featured-header .featured-bar:hover{ opacity:.85; }


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

.stats-section {
    padding: 6rem 0;
    background: #fff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* INTRO */
.stats-intro h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.stats-line {
    display: block;
    width: 50px;
    height: 4px;
    background: #5ccbc6;
}

/* GRID DERECHA */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
}
/* ===== STAT ITEM (alineación fina) ===== */
.stat-item{
  display: flex;
  flex-direction: column;
  align-items: center;          /* centra todo respecto al icono */
  text-align: center;
  gap: 0.6rem;                  /* separación equilibrada */
}

/* ICONO */
.stat-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.stat-icon img{
  width: 44px;
  height: auto;
}

/* NÚMERO */
.stat-number{
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;                    /* elimina empujes raros */
  line-height: 1.1;
}

/* TEXTO */
.stat-label{
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}
/* ===============================
   STATS - RESPONSIVE FIX
================================ */
/* ===== GRID RESPONSIVE ===== */
@media (max-width: 992px){
  .stats-container{
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px){
  .stats-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number{
    font-size: 2.2rem;
  }
}

.project-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.project-info-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.project-info-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #5ccbc6;
  margin-bottom: 50px;
}

/* GRID PRINCIPAL */
.project-info-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
}

/* IZQUIERDA */
.project-info-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-block h4,
.info-cta h4 {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 18px;
  font-family: Montserrat;
}

.info-block p {
  line-height: 1.7;
  font-size: 16px;
  font-family: Montserrat;
}

/* CTA */
.info-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-btn {
  background: #5ccbc6;
  color: #003c50;
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.project-btn span {
  font-size: 18px;
}

/* DERECHA */
.project-info-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.side-item {
  display: flex;
  gap: 15px;
}

.side-icon {
  width: 40px;
  height: 40px;
  background: #5ccbc6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.side-item strong {
  display: block;
  margin-bottom: 4px;
}

.side-item p {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project-info-grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
  }
  .project-info {
  
    padding: 0px 30px;
}
}

/* DERECHA */
.project-info-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.side-item {
  display: flex;
 flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

.side-image {
  width: 40px;
  height: 40px;
  background: #5ccbc6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.side-text strong {
  display: block;
  margin-bottom: 4px;
}

.side-text p {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project-info-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .deslizamiento {
    overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* suavidad en iOS */
}

.deslizamiento.active {
    cursor: grabbing;
}
}


/* =========================
   PROYECTOS DESTACADOS
========================= */

.proyectos-destacados {
  padding: 80px 0;
  background: #ffffff;
}

.proyectos-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.titulo-seccion {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #111;
}

/* GRID */
.grid-proyectos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD */
.proyecto-card {
  text-decoration: none;
  color: inherit;
}

.proyecto-img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.proyecto-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Hover imagen */
.proyecto-card:hover .proyecto-img img {
  transform: scale(1.06);
}

/* INFO */
.proyecto-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.proyecto-info strong {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.proyecto-info span {
  font-size: 15px;
  color: #5fa3a1;
}

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

@media (max-width: 991px) {
  .grid-proyectos {
    grid-template-columns: 1fr;
  }

  .proyecto-img img {
    height: 260px;
  }

  .titulo-seccion {
    font-size: 26px;
  }
}

/* =========================
   ACTUALIDAD / NOTICIAS
========================= */

.noticias {
  padding: 80px 0;
  background: #fff;
}

.noticias-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.volver {
  display: inline-block;
  margin-bottom: 40px;
  color: #6aa9a6;
  text-decoration: none;
  font-size: 14px;
}

.grid-noticias {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.noticia-card {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 24px;
}

.noticia-img {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.noticia-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}

.noticia-card:hover img {
  transform: scale(1.05);
}

.noticia-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.noticia-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.leer-mas {
  font-size: 14px;
  color: #6aa9a6;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-noticias {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .header-top-inner,
  .header-main-inner{
    padding: 10px 16px;
    max-width: 100%;
  }

  .header-top-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .header-top-left,
  .header-top-right{
    gap: 12px;
    flex-wrap: wrap;
  }

  .header-logo img{
    height: auto;
  }
}

@media (max-width: 992px){
  .header-menu{
    display: none;
  }

  .header-menu.is-open{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 16px;
    z-index: 9999;
  }

  .header-main{
    position: relative;
  }

  .header-menu.is-open ul{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .header-menu.is-open a{
    font-size: 16px;
    padding: 8px 0;
  }
}
/* ACTUALIDAD (listado) */
.actu{
  position: relative;
  overflow-x: hidden;
  padding: 56px 0 200px; /* 56 top / 0 sides / 200 bottom */
  background-image: var(--decor-bg);
  background-repeat: no-repeat;
  background-position: right -217px top -111px;
}

.actu__wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.actu__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

/* Card + hover + alineación del HR */
.actu-card{
  background: transparent;
  display: flex;
  flex-direction: column;

  transform: translateY(0);
  transition: transform .22s ease;
}
.actu-card:hover{
  transform: translateY(-10px); /* si lo quieres hacia abajo: 10px */
}

.actu-card__media{ display:block; }

.actu-card__img{
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f2f4f7;
}
.actu-card__imgEl{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.actu-card__img--placeholder{
  background: linear-gradient(135deg, #eef2f6, #f7f9fb);
}

/* IMPORTANTE: body flexible para empujar el footer abajo y alinear la línea */
.actu-card__body{
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.actu-card__title{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 8px;
}
.actu-card__title a{ color: inherit; text-decoration: none; }
.actu-card__title a:hover{ text-decoration: underline; }

.actu-card__date{
  font-size: 13px;
  opacity: .75;
  margin-bottom: 10px;
}

.actu-card__text{
  margin: 0;                 /* evita alturas raras */
  padding-bottom: 14px;      /* separa del footer */
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  max-width: 58ch;
}

/* “Leer más” + línea inferior tipo XD, SIEMPRE alineada */
.actu-card__footer{
  margin-top: auto;                /* sigue alineando todas */
  padding-top: 14px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(25, 56, 74, 0.22); /* línea ARRIBA */
}


.actu-card__more{
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #1b5f73;
}
.actu-card__more:hover{ text-decoration: underline; }

/* Icono cuadrado con flecha NE (como en XD) */
.actu-card__icon{
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}
.actu-card__icon::before{
  content:"";
  position:absolute;
  inset: 3px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 5l7 7-7 7-1.41-1.41L16.17 13H4v-2h12.17l-4.58-4.59L13 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 5l7 7-7 7-1.41-1.41L16.17 13H4v-2h12.17l-4.58-4.59L13 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}


/* Responsive */
@media (max-width: 1024px){
  .actu__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .actu { padding: 36px 0 54px; }
  .actu__wrap{ padding: 0 16px; }
  .actu__grid{ grid-template-columns: 1fr; gap: 26px; }
}


/* DETALLE (single) */
.news {
    padding: 56px 0 80px;
}

.news__wrap,
.new-info {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.new-info {
    max-width: 1300px;
    padding: 80px 30px;
}

.news__kicker {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.news__back,
.new-info-back a {
    text-decoration: none;
    color: #1b5f73;
    font-size: 14px;
}

.new-info-back a {
    color: #2C7672;
    font-size: 18px;
}

.news__back:hover,
.new-info-back a:hover {
    text-decoration: underline;
}

.news__title,
.new-info-title {
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.new-info-title {
    font-size: 40px;
    font-weight: 500;
}

.news__media {
    margin: 22px 0 28px;
    border-radius: 2px;
    overflow: hidden;
    background: #f2f4f7;
}

.news__img {
    width: 100%;
    height: auto;
    display: block;
}

.news__content,
.new-info-content {
    font-size: 16px;
    line-height: 1.75;
}

.new-info-content {
    line-height: 1.5;
}

.news__content p,
.new-info-section p {
    margin: 0 0 1em;
    font-size: 18px;
    font-weight: 400;
}

.news__content h2,
.news__content h3,
.new-info-section h3 {
    margin-top: 1.8em;
    font-size: 18px;
    font-weight: 600;
}

.news .news__meta {
    margin: 14px 0 18px;
}

.news .news__accent,
.new-info-line {
    display: block;
    width: 62px;
    height: 6px;
    background: #5fb8ad;
    border-radius: 2px;
    margin: 0 0 10px;
}

.new-info-line {
    width: 90px;
    height: 8px;
    background-color: #5BC4BF;
    margin-bottom: 1.5rem !important;
}

.news .news__date,
.new-info-date {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.new-info-date {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.news-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 56px auto 0;
    max-width: 1300px;
    width: 100%;
    padding: 0 30px 100px 30px;
}

.news-nav__item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #1b5f73;
    text-decoration: none;
}

.news-nav__item a:hover {
    text-decoration: underline;
}

.news-nav__arrow {
    font-size: 20px;
    line-height: 1;
    transform: translateY(-1px);
}

.news-nav__prev {
    text-align: left;
}

.news-nav__next {
    text-align: right;
}

.new-info-section {
    border-bottom: solid 2px #5BC4BF;
}

.new-info-back {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px 140px 30px;
}

.new-info-icons > span:nth-of-type(1) {
    font-size: 18px;
    font-weight: 600;
}

.new-info-icons > span:nth-of-type(2) {
    font-size: 18px;
    font-weight: 500;
}

.new-bg-img {
    z-index: 0;
    top: -80px;
    right: -223px;
}
@media (max-width: 640px){
  .news-nav{ gap: 18px; flex-direction: column; align-items: flex-start; }
  .news-nav__next{ align-self: flex-end; }
  .new-info {
    padding: 0px 30px;
}
.new-info-title {
    font-size: 30px;
}
}
.stat-number{
    font-size: 64px !important;
}
.stat-label{
    font-size: 18px !important;
}
.stat-label h2{
    font-size: 40px !important;
}
.stat-icon img {
    width: 65px !important;
}
.stat-item {
    align-items: start;
    text-align: left;
}
/*Single innovaciones*/
 .innovaciones-info {
            max-width: 1300px;
            width: 100%;
            padding: 80px 30px;
            margin: 0 auto;
        }

        .innovaciones-info-title {
            font-size: 40px;
            font-weight: 500;
        }

        .innovaciones-info-section h3 {
            font-size: 18px;
            font-weight: 600;
        }

        .innovaciones-info-section p {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.4;
        }

        .innovaciones-info-back {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            padding: 40px 30px 70px 30px;
        }

        .innovaciones-info-back a {
            color: #2C7672;
            text-decoration: none;
            font-size: 18px;
        }

        .innovaciones-info-line {
            width: 90px;
            height: 8px;
            background-color: #5BC4BF;
        }

        .innovaciones-info-icons > span:nth-of-type(1) {
            font-size: 18px;
            font-weight: 600;
        }

        .innovaciones-info-icons > span:nth-of-type(2) {
            font-size: 18px;
            font-weight: 500;
        }

        .innovaciones-bg-img {
            z-index: 0;
            top: -70px;
            right: -229px;
        }

        .innovaciones-footer {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            background-color: #4A9D98;
        }

        .innovaciones-footer p {
            color: white;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.3;
        }
		
		
@media (max-width: 768px) {
   .innovaciones-info {
    padding: 0px 30px;

			}
    }



/* Header idiomas */
/*
.header-language {
    display: flex;
    color: white;
}

.header-language li {
    list-style: none;
}

.header-language img {
    display: none;
}

.header-language > li a {
    text-decoration: none;
    color: black !important;
    text-transform: uppercase;
}

.header-language > li:nth-of-type(1) a {
    border-right: 1px solid black;
    padding-right: 5px;
}

.header-language > li.current-lang a {
    text-decoration: underline;
}
*/

/* Footer */

.footer-bilerro {
    background: #fff;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    font-weight: 500;
}

.footer-top {
    padding: 40px;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-left img, .footer-logo-right img {
    width: 180px;
}

/* Redes */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social img {
    width: 33px;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    flex-wrap: wrap;
	text-align: center;
}

.footer-legal a {
	display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal {
        flex-direction: row;   /* 👈 NO columna */
        gap: 14px;
    }
}
@media (max-width: 575px) {

    .footer-legal {
        flex-direction: column;
        gap: 6px;
    }
}




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

.footer-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: none;
    background: #5ccbc6 !important;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 8px;
    z-index: 99;
}

.footer-top-btn:hover {
    background: #249c8e;
}

.footer-form-container {
    background-color: #f2faf8;
    width: 100%;
    padding: 60px 30px;
}

.footer-form {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.footer-form h3 {
    font-size: 36px;
    font-weight: 500;
}

.footer-form-contacto > span {
    color: #2C7672;
    font-size: 24px;
}

.footer-form-inputs > p:nth-of-type(1) {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-form-inputs > p:nth-of-type(2) {
    font-size: 16px;
}

@media (max-width: 992px) {
    .footer-form-container {
        padding: 60px 20px;
    }


}

@media (max-width: 768px) {
    .footer-top-inner {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 40px;
        font-weight: 600;
    }

    h2,
    .tech-offer__header h2,
    .stats-intro h2 {
        font-size: 30px;
    }

    h3,
    .tech-offer__header h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .tech-offer__header {
        padding: 0 20px;
    }

    .intro-soluciones {
        padding: 80px 0;
    }

    .intro-inner h2 {
        font-size: 30px;
    }

    .intro-inner p {
        font-size: 1rem;
    }
.cta-title {
        font-size: 28px;
        margin-right: auto;
    margin-left: auto;
    }


    .proyecto-info{
        margin-bottom: 0 !important;
    }
    .partners-title {
        font-size: 30px;
    }
    .new-info-back {

    padding: 0 30px 30px 0;
    }
  
}

/* Footer formulario de contacto */

.contact-form, .wpcf7 {
    background: #f3f9f8;
    max-width: 700px;
    box-sizing: border-box;
}

.cf7-field:not(.cf7-message) {
    margin-bottom: 17px;
}

.cf7-field label {
    display: block;
    font-size: 14px;
    color: #2b2b2b;
    margin-bottom: 6px;
}

.cf7-field input[type="text"], .cf7-field input[type="email"], .cf7-field input[type="tel"], .cf7-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #9fbcbc;
    background: transparent;
    padding: 8px 0;
    font-size: 15px;
    color: #1e1e1e;
    outline: none;
}

.cf7-field ::placeholder {
    color: #9aa;
}

.cf7-field input:focus, .cf7-field textarea:focus {
    border-bottom-color: #3fb3a6;
}

.cf7-field textarea {
    height: 140px;
    resize: vertical;
}

.cf7-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cf7-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.cf7-submit {
    margin-top: 30px;
}

.cf7-submit input[type="submit"] {
    border: none;
}

.wpcf7-response-output {
    margin-top: 20px;
    border: none;
    padding: 12px;
    font-size: 14px;
}

.wpcf7-list-item {
    margin: 0 !important;
}

.wpcf7-list-item input[type="checkbox"] {
    margin-right: 5px !important;
}

.wpcf7 ::placeholder {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 10px !important;
}


a:active,
a:focus {
  text-decoration: none;
}


.legal-section-title{
    margin-top: 40px !important;
    font-family: 'Montserrat', sans-serif !important;
}
.legal-section{
    margin-bottom: 10px;
}


.lang-dropdown {
    position: relative;
}

/* Contenedor */
.lang-dropdown {
    position: relative;
}

/* Botón idioma actual */
.lang-current {
    background: none;
    border: none;
    color: #fff; /* verde header */
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* Menú */
.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    list-style: none;
    margin: 6px 0 0;
    padding: 6px 0;
    min-width: 60px;
    z-index: 1000;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* Mostrar menú */
.lang-dropdown.open .lang-menu {
    display: block;
}

/* Items */
.lang-menu li {
    margin: 0;
}

/* Links */
.lang-menu li a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    background: #fff;
    color: #2bb3b1;
    font-size: 13px;
}

/* Hover */
.lang-menu li a:hover {
    background: #2bb3b1;
    color: #f2f2f2;
}



.cmplz-show {
    display: none;
}


.project-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    margin-top: 20px;
}

.project-icon {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.project-icon img {
    width: 100%;
    height: auto;
}

/* Tooltip */
.project-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff ; /* tu verde */
    color:#5ec4bb;
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

@media (max-width: 992px) {
    .project-icon {
        width: 65px;
        height: auto;

    }

    .project-icon::after {
        white-space: normal;
        opacity: 1;
        position: relative;
        bottom: -10px;
        line-height: 1.4;
        padding: 0;
        display: inline-block;
		color: #000;
    }
}

.project-icon:hover::after {
    opacity: 1;
}

.project-icon {
    position: relative;
    overflow: visible;
    z-index: 10;
}

.project-icon::after {
    z-index: 20;
}

.footer-form-container a {
    color: #5ec4bb;
}


.project-info,
.project-info-section,
.project-icons-row,
.row,
.col-lg-4 {
    overflow: visible;
}


.project-info {
    overflow: visible;
}

.project-bg-container {
    overflow: hidden; /* solo para decoraciones */
}

.project-info-section .project-info-line {
    display: none;
}

.project-info-line {
    height: 0;
    margin: 0;
    background: none;
}

    .accordion {
      max-width: 800px;
      margin: auto;
    }

    .accordion-item {
      background: white;
      border-radius: 10px;
      margin-bottom: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .accordion-header {
      padding: 18px 20px;
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
    }

    .accordion-header:hover {
      background: #f0f0f0;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 20px;
      color: #444;
    }

    .accordion-content p {
      margin: 15px 0;
    }

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding: 10px 20px 20px;
    }

    .icon {
      font-size: 20px;
      transition: transform 0.3s;
    }

    .accordion-item.active .icon {
      transform: rotate(45deg);
    }

.new-info-back {
    margin-top: clamp(12px, 3vw, 32px);
}

.new-info-back {
    padding-top: clamp(16px, 4vw, 40px);
	padding-left: clamp(12px, 4vw, 40px);
}
/* Garantizamos flex */
.project-info .row {
    display: flex;
    flex-wrap: wrap;
}

/* Desktop normal */
.project-sidebar { order: 3; }
.project-main    { order: 2; }





@media (max-width: 991px) {

    .project-sidebar {
        order: 1;
        margin-top: 0 !important;
    }

    .project-info .col-lg-4:first-child {
        order: 2;
    }

    .project-main {
        order: 3;
    }

    /* 👉 HACER "Soluciones y servicios aplicados" la 3ª */
    .project-main .project-info-section.mt-4 {
        order: 4;
    }

    /* 👇 IMPORTANTE */
    .project-info .col-lg-4 {
        display: block;
    }
}





