* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #050505;
  color: #f8fafc;
}

a { text-decoration: none; }

/* HEADER */

.eco-header {
  height: 72px;
  padding: 8px 3.2%;
  background: #030303;
  border-bottom: 1px solid rgba(212, 175, 55, .35);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  position: sticky;
  top: 0;
  z-index: 100;
}

.eco-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eco-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212,175,55,.45));
}

.eco-brand strong {
  display: block;
  font-size: 28px;
  color: #fff;
  letter-spacing: .5px;
}

.eco-brand span {
  display: block;
  font-size: 12px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.eco-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.eco-nav a {
  color: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eco-nav a:hover {
  color: #d4af37;
}




/* HERO */

.eco-hero{

    min-height:260px;

    padding:18px 8% 16px;

    display:grid;
    grid-template-columns:1.35fr .85fr;
    gap:34px;
    align-items:center;

}

/* Texto superior */

.eco-eyebrow {
  display: inline-block;
  color: #d4af37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Título */

.eco-hero h1{

    font-size:clamp(32px,3.8vw,52px);

    line-height:.88;

    margin-bottom:8px;

}

.eco-hero h1 span {
  color: #d4af37;
  text-shadow: 0 0 24px rgba(212,175,55,.25);
}

/* Subtítulo */

.eco-subtitle{

    max-width:600px;

    font-size:17px;

    font-weight:700;

    line-height:1.3;

    color:#ffffff;

    margin-bottom:8px;

}

/* Descripción */

.eco-description{

    max-width:620px;

    font-size:15px;

    line-height:1.8;

    color:#d5d5d5;

    margin-bottom:22px;

}

/* Etiquetas */

.eco-tags{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.eco-tags span{

    font-size:13px;

    font-weight:700;

    color:#ffffff;

    position:relative;

    padding-left:18px;

    text-transform:uppercase;

    letter-spacing:.6px;

}

.eco-tags {
  display: flex;
  flex-wrap: wrap;
}

.eco-tags span {
  color: #f8fafc;
  font-weight: 800;
  text-transform: uppercase;
  padding-left: 18px;
  position: relative;
}

.eco-tags span::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#d4af37;

    font-weight:900;

}

/* LOGIN */

.eco-login-card {
  max-width: 360px;
  width: 100%;
  justify-self: end;

  padding: 20px;
  border-radius: 10px;

  background: rgba(10, 10, 10, .78);
  border: 1px solid rgba(212,175,55,.36);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 24px 70px rgba(0,0,0,.58);
  backdrop-filter: blur(18px);
}

.eco-login-card h2 {
  color: #d4af37;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.eco-login-card > p {
  color: #f1f5f9;
  font-size: 13px;
  margin-bottom: 14px;
}

.eco-login-card label {
  display: none;
}

.eco-login-card input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;

  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  color: #fff;
  outline: none;
  font-size: 13px;
}

.eco-login-card input::placeholder {
  color: #a1a1aa;
}

.eco-login-card input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

.eco-login-card button {
  width: 100%;
  padding: 11px;
  margin-top: 4px;

  border: none;
  border-radius: 6px;

  background: linear-gradient(135deg, #d4af37, #f6c55d);
  color: #050505;

  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.eco-forgot {
  display: block;
  text-align: center;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  margin-top: 13px;
}

.eco-login-note {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,175,55,.22);
  color: #bdbdbd !important;
  font-size: 10px !important;
  line-height: 1.5;
}

/* TITULOS */

.eco-section-title {
  max-width: 850px;
  margin: 0 auto 18px;
  text-align: center;
}

.eco-section-title span {
  display: none;
}

.eco-section-title h2 {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.eco-section-title h2::before,
.eco-section-title h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #d4af37;
  vertical-align: middle;
  margin: 0 16px;
}

.eco-section-title p {
  color: #cbd5e1;
  font-size: 13px;
  margin-top: 4px;
}

/* MODULOS */

.eco-modules {
  padding: 18px 3.2% 18px;
  background:
    radial-gradient(circle at center, rgba(212,175,55,.07), transparent 35%),
    #050505;
  border-bottom: 1px solid rgba(212,175,55,.16);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.eco-card {
  min-height: 188px;
  padding: 18px 14px;
  border-radius: 8px;

  background: rgba(255,255,255,.035);
  border: 1px solid rgba(212,175,55,.28);

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

  transition: .25s ease;
}

.eco-card:hover {
  transform: translateY(-4px);
  background: rgba(212,175,55,.075);
  border-color: rgba(212,175,55,.65);
}

.eco-icon {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(212,175,55,.25));
}

.eco-card h3 {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.eco-card p {
  color: #d9d9d9;
  font-size: 11.5px;
  line-height: 1.45;
  margin-bottom: auto;
}

.eco-card a {
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  margin-top: 14px;
}

.eco-card a::after {
  content: " →";
}

/* ACCESO */

.eco-access {
  padding: 16px 3.2% 12px;
  background: #050505;
  border-bottom: 1px solid rgba(212,175,55,.16);
}

.eco-role-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.eco-role {
  padding: 14px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.eco-role strong {
  display: block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.eco-role p {
  color: #d1d5db;
  font-size: 11.5px;
  line-height: 1.4;
}

/* AYUDA */

.eco-help {
  padding: 14px 3.2%;
  background: #050505;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.eco-help-box {
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,.30);
  background: rgba(255,255,255,.025);
}

.eco-help-box h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 7px;
}

.eco-help-box p {
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.eco-btn-secondary {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eco-btn-secondary:hover {
  background: #d4af37;
  color: #050505;
}

/* FOOTER */

.eco-footer {
  padding: 12px 3.2%;
  background: #030303;
  border-top: 1px solid rgba(212,175,55,.2);
  text-align: center;
}

.eco-footer p {
  color: #bdbdbd;
  font-size: 11px;
}

/* RESPONSIVE */

@media (max-width: 1350px) {
  .eco-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .eco-card {
    min-height: 170px;
  }
}

@media (max-width: 1050px) {
  .eco-hero {
    grid-template-columns: 1fr;
  }

  .eco-login-card {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  .eco-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .eco-hero {
    padding: 30px 20px;
  }

  .eco-grid,
  .eco-role-grid,
  .eco-help {
    grid-template-columns: 1fr;
  }

  .eco-section-title h2::before,
  .eco-section-title h2::after {
    display: none;
  }
}


.eco-icon{
    width:48px;
    height:48px;

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

    margin:0 auto 18px;
    color:#d4af37;
}

.eco-icon svg{
    width:34px;
    height:34px;
    stroke-width:1.8;
}


.eco-status-panel{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-bottom:18px;
}

.eco-status-panel div{
  padding:10px 6px;
  border-radius:8px;
  background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.25);
  text-align:center;
}

.eco-status-panel strong{
  display:block;
  color:#d4af37;
  font-size:15px;
  font-weight:900;
  line-height:1.1;
}

.eco-status-panel span{
  display:block;
  margin-top:4px;
  color:#cbd5e1;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.5px;
}


.eco-quick-access{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1px;
  background:rgba(212,175,55,.22);
  border-top:1px solid rgba(212,175,55,.25);
  border-bottom:1px solid rgba(212,175,55,.25);
}

.eco-quick-access a{
  padding:18px 14px;
  background:#050505;
  text-align:center;
  transition:.25s ease;
}

.eco-quick-access a:hover{
  background:rgba(212,175,55,.09);
}

.eco-quick-access strong{
  display:block;
  color:#d4af37;
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.eco-quick-access span{
  color:#cbd5e1;
  font-size:12px;
}

@media(max-width:900px){
  .eco-quick-access{
    grid-template-columns:1fr;
  }
}


.eco-system-status{
  padding:18px 5%;
  background:#030303;
  border-top:1px solid rgba(212,175,55,.25);
  border-bottom:1px solid rgba(212,175,55,.25);

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

.eco-system-status div{
  padding:14px 12px;
  border-radius:10px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(212,175,55,.18);
  text-align:center;
}

.eco-system-status span{
  display:block;
  color:#94a3b8;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:5px;
}

.eco-system-status strong{
  display:block;
  color:#d4af37;
  font-size:15px;
  font-weight:900;
}

@media(max-width:900px){
  .eco-system-status{
    grid-template-columns:1fr;
  }
}


.eco-news{
  padding:36px 5%;
  background:#050505;
  border-bottom:1px solid rgba(212,175,55,.16);
}

.eco-news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.eco-news-card{
  padding:22px;
  border-radius:12px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(212,175,55,.22);
}

.eco-news-card span{
  display:inline-block;
  margin-bottom:10px;
  color:#d4af37;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.eco-news-card h3{
  color:#fff;
  font-size:18px;
  margin-bottom:8px;
}

.eco-news-card p{
  color:#cbd5e1;
  font-size:13px;
  line-height:1.6;
}

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





.eco-role-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  width:100%;
}

.eco-role{
  min-height:120px;
  padding:20px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(212,175,55,.18);
  text-align:center;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.eco-role strong{
  display:block;
  color:#d4af37;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.eco-role p{
  color:#cbd5e1;
  font-size:12px;
  line-height:1.45;
  margin:0;
}

@media(max-width:1100px){
  .eco-role-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .eco-role-grid{
    grid-template-columns:1fr;
  }
}


.eco-profile-table{
  width:100%;
  max-width:1180px;
  margin:24px auto 0;
  border:1px solid rgba(212,175,55,.22);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.025);
}

.eco-profile-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:20px;
  padding:18px 22px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.eco-profile-row:last-child{
  border-bottom:none;
}

.eco-profile-row strong{
  color:#d4af37;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.eco-profile-row span{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.5;
}

@media(max-width:700px){
  .eco-profile-row{
    grid-template-columns:1fr;
    gap:6px;
  }
}