 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      background: #0f172a;
      color: white;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 8%;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(10px);
      z-index: 100;
    }

    .navbar ul {
      display: flex;
      gap: 25px;
      list-style: none;
    }

    .navbar a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: 0.3s;
    }

    .navbar a:hover {
      color: #38bdf8;
    }
    .navbar h3 {
      color: #22c55e;
    }

    .navbar a {
      position: relative;
    }

    .navbar a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #38bdf8;
      left: 0;
      bottom: -5px;
      transition: 0.3s;
    }

    .navbar a:hover::after {
      width: 100%;
    }
    .navbar ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .navbar li {
      cursor: pointer;
      color: #cbd5f5;
    }

    .navbar li:hover {
      color: #38bdf8;
    }

    /* HERO */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100vh;
      padding: 0 8%;
      position: relative;
      overflow: hidden;
      margin-top: 60px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      z-index: 0;
    }

    .hero-content {
      max-width: 500px;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero h2 {
      font-size: 2rem;
      color: #38bdf8;
      margin: 10px 0;
    }

    .hero p {
      margin: 20px 0;
      color: #cbd5f5;
      line-height: 1.5;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .btn-primary {
      background: #22c55e;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      color: white;
      font-weight: 500;
    }

    .btn-primary:hover {
      background: #16a34a;
    }

    .btn-secondary {
      border: 1px solid #38bdf8;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      color: #38bdf8;
      font-weight: 500;
    }

    .btn-secondary:hover {
      background: #38bdf8;
      color: #0f172a;
    }

    /* IMAGEN */
    .hero-image {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 55%;
      height: 100%;
      background: url("../img/header/CapaBannerPublicitarioSM.png") no-repeat right bottom;
      background-size: contain;
      z-index: 1;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .navbar ul {
        display: none;
      }

      .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 100px 20px 40px;
      }

      .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        background-position: center;
        margin-top: 20px;
      }
    }