
.ecosistema-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
    background:#111827;
    border-bottom:1px solid #2d3748;
}

.ecosistema-logo-group{
    display:flex;
    align-items:center;
    gap:12px;
}

.ecosistema-logo{
    width:42px;
    height:auto;
}

.ecosistema-logo-text{
    color:#d4af37;
    font-weight:700;
    font-size:18px;
}

.ecosistema-nav{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.ecosistema-nav a{
    color:white;
    text-decoration:none;
    padding:8px 14px;
    border-radius:8px;
    transition:0.3s;
}

.ecosistema-nav a:hover{
    background:#1f2937;
}

.ecosistema-boton-store{
    display:inline-block;
    margin-top:20px;
    padding:14px 22px;
    background:#3a2408;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
}

.ecosistema-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.ecosistema-card{
    background:#111827;
    border:1px solid #2d3748;
    border-radius:14px;
    padding:20px;
}

@media(max-width:768px){

    .ecosistema-header{
        flex-direction:column;
        gap:18px;
    }

    .ecosistema-nav{
        justify-content:center;
    }

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

}

.btn-exportador-universal {
  display: inline-block;
  background: #d6a52a;
  color: #07111f;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  margin: 8px 8px 8px 0;
}

.btn-exportador-universal:hover {
  filter: brightness(1.08);
}

.top-menu-grid {
  position: absolute;
  top: 18px;
  right: 20px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  align-items: flex-end;
  justify-content: flex-start;

  z-index: 30;
}

.top-menu-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-end;
}


.top-menu-btn {
  width: 136px;
  height: 42px;
  min-width: 136px;
  max-width: 136px;

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

  background: #2a1c0f;
  color: #f5f5f5;

  border: 1px solid #a8781f;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  text-align: center;

  box-sizing: border-box;

  white-space: nowrap;
}

.top-menu-btn:hover {
  background: #3b2815;
  border-color: #d6a52a;
}

@media (max-width: 900px) {
  .top-menu-grid {
    position: static;
    margin: 12px 0;
  }

  .top-menu-row {
    flex-wrap: wrap;
  }

  .top-menu-btn {
    width: 136px;
  }
}

