  @import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap');

  :root {
      --bg-dark: #1a1a1a;
      --text-light: #ffffff;
      --text-muted: #a6a6a6;
      --accent-gold: #c8a75a;
      --overlay: rgba(0, 0, 0, 0.6);
      --maxw: 1400px;
      --font-main: 'Jost', sans-serif;
  }

  body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: var(--font-main);
      margin: 0;
      line-height: 1.6;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  /* Listing Hero */
  .listing-hero {
      position: relative;
      height: 60vh;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .listing-hero__bg {
      position: absolute;
      inset: 0;
      z-index: -1;
  }

  .listing-hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5);
  }

  .listing-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), var(--bg-dark));
      z-index: 0;
  }

  .listing-hero__content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 1000px;
      padding: 0 20px;
  }

  .listing-hero__label {
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: 12px;
      color: var(--accent-gold);
      margin-bottom: 20px;
      display: block;
      font-weight: 600;
  }

  .listing-hero__title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 6px;
      margin: 0;
      line-height: 1.1;
  }

  .logo-link {
      position: absolute;
      top: 40px;
      left: 40px;
      z-index: 10;
  }

  .logo-bprincipal {
      width: 150px;
  }

  /* Intro Section */
  .listing-intro {
      padding: 100px 0 60px;
  }

  .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 40px;
  }

  .listing-intro__text {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      font-size: 20px;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.8;
  }

  /* Grid Section */
  .listing-grid-section {
      padding: 40px 0 120px;
  }

  .proyectos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
      gap: 40px;
  }

  .proyecto-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
  }

  .proyecto-card {
      position: relative;
      overflow: hidden;
      background-color: #222;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .proyecto-imagen {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
  }

  .proyecto-imagen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.8);
      transition: transform 0.8s ease, filter 0.6s ease;
  }

  .proyecto-info {
      padding: 30px;
      background-color: #222;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      transition: background-color 0.4s ease;
  }

  .proyecto-info h3 {
      font-size: 18px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0 0 10px 0;
      color: var(--text-light);
  }

  .proyecto-info p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      font-weight: 300;
      letter-spacing: 1px;
  }

  /* Hover Effects */
  .proyecto-card-link:hover .proyecto-card {
      transform: translateY(-10px);
  }

  .proyecto-card-link:hover .proyecto-imagen img {
      transform: scale(1.1);
      filter: brightness(1);
  }

  .proyecto-card-link:hover .proyecto-info {
      background-color: #2a2a2a;
  }

  .proyecto-card-link:hover .proyecto-info h3 {
      color: var(--accent-gold);
  }

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

  @media (max-width: 768px) {
      .container {
          padding: 0 20px;
      }

      .listing-hero {
          height: 50vh;
      }

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

      .listing-intro {
          padding: 60px 0 40px;
      }

      .listing-intro__text {
          font-size: 17px;
      }

      .logo-link {
          top: 20px;
          left: 20px;
      }

      .logo-bprincipal {
          width: 120px;
      }
  }