/* =========================================================
   META / TECH PROVIDER — ESTILOS ESPECÍFICOS
   Se carga después de style.css para no alterar la portada.
   ========================================================= */

.site-header .nav{
  gap:18px;
  font-size:14px;
}

.meta-tech-card{
  max-width:430px;
  justify-self:end;
}

.meta-contact-card img{
  width:180px !important;
  max-height:96px !important;
  object-fit:contain !important;
}

/* Plataformas */
.showcase-section{
  background:#eef3f8;
}

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

.showcase-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #dfe8f1;
  border-radius:26px;
  box-shadow:0 18px 55px rgba(20,37,58,.10);
  transition:transform .25s ease,box-shadow .25s ease;
}

.showcase-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 75px rgba(20,37,58,.17);
}

.showcase-image{
  position:relative;
  overflow:hidden;
  aspect-ratio:16 / 9;
  background:#071a30;
  border-bottom:1px solid #e2eaf2;
}

.showcase-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top left;
  transition:transform .35s ease;
}

.showcase-card:hover .showcase-image img{
  transform:scale(1.025);
}

.showcase-content{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:26px;
}

.showcase-content > span{
  display:block;
  margin-bottom:8px;
  color:#0c7ed5;
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.showcase-content h3{
  margin:0 0 12px;
  color:#172235;
  font-size:27px;
}

.showcase-content p{
  margin:0 0 20px;
  color:#617286;
  line-height:1.65;
}

.showcase-features{
  display:grid;
  gap:10px;
  margin:auto 0 0;
  padding:0;
  list-style:none;
  color:#405368;
  font-size:14px;
  font-weight:700;
}

.showcase-features i{
  color:#18a86b;
}

/* Arquitectura */
.architecture-section{
  background:#fff;
}

.architecture-flow{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1.15fr auto 1fr;
  align-items:center;
  gap:14px;
}

.architecture-node{
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:24px 18px;
  border:1px solid #dfe8f1;
  border-radius:24px;
  background:#f8fbfe;
  box-shadow:0 14px 38px rgba(20,37,58,.07);
}

.architecture-node-main{
  color:#fff;
  border-color:rgba(32,199,255,.38);
  background:linear-gradient(135deg,#061426,#0f3a61);
  box-shadow:0 22px 55px rgba(6,20,38,.22);
}

.architecture-node > i{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  border-radius:18px;
  background:#eaf7ff;
  color:#0c7ed5;
  font-size:28px;
}

.architecture-node-main > i{
  background:rgba(255,255,255,.12);
  color:#20c7ff;
}

.architecture-node strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.architecture-node span{
  color:#617286;
  font-size:14px;
  line-height:1.5;
}

.architecture-node-main span{
  color:#c8d8ea;
}

.architecture-arrow{
  color:#0c7ed5;
  font-size:22px;
}

.architecture-notes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:26px;
}

.architecture-notes > div{
  display:flex;
  align-items:flex-start;
  gap:13px;
  padding:18px;
  border:1px solid #dfe8f1;
  border-radius:18px;
  background:#fff;
}

.architecture-notes i{
  color:#0c7ed5;
  font-size:20px;
  margin-top:2px;
}

.architecture-notes span{
  color:#617286;
  font-size:14px;
  line-height:1.45;
}

.architecture-notes strong{
  display:block;
  color:#172235;
  margin-bottom:4px;
}

/* Tecnologías */
.technologies-section{
  background:linear-gradient(135deg,#061426,#0a2c4d);
  color:#fff;
}

.technologies-section .section-title h2{
  color:#fff;
}

.technologies-section .section-title p{
  color:#bfd0e2;
}

.technology-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.technology-grid span{
  min-height:92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  background:rgba(255,255,255,.07);
  color:#eef5ff;
  font-weight:800;
  text-align:center;
}

.technology-grid i{
  color:#20c7ff;
  font-size:24px;
}

@media(max-width:1180px){
  .site-header .nav{
    gap:12px;
    font-size:13px;
  }
}

@media(max-width:980px){
  .meta-tech-card{
    max-width:620px;
    justify-self:start;
  }

  .showcase-grid{
    grid-template-columns:1fr;
  }

  .showcase-card{
    max-width:820px;
    margin:auto;
  }

  .architecture-flow{
    grid-template-columns:1fr;
    max-width:700px;
    margin:auto;
  }

  .architecture-arrow{
    transform:rotate(90deg);
    justify-self:center;
  }

  .architecture-notes{
    grid-template-columns:repeat(2,1fr);
  }

  .technology-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:620px){
  .architecture-notes,
  .technology-grid{
    grid-template-columns:1fr;
  }

  .meta-contact-card img{
    width:160px !important;
  }
}