  :root {
    --primary-color: rgb(132, 190, 0);
    --text-color: #000;
    --bg-color: #fff;
    --light-gray: #ccc;
  }

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

  html,
  body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .main-content {
    flex: 1;
  }



  body {
    font-family: 'Segoe UI', sans-serif;
    /* ajusta según el tamaño deseado */
    height: 100dvh;
    background-color: #fff;
    /* fondo blanco principal */
    color: var(--text-color);
    line-height: 1.6;
  }

  .bg-shape {
    position: fixed;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    height: 80%;
    z-index: -1;
    pointer-events: none;
  }



  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
  }

  header .logo {
    width: 8rem;
  }

  header .btn-contact {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .left {
    flex: 1;
    padding-right: 2rem;
  }

  .category {
    color: #999;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .slogan {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .description {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
  }

  .download-buttons a {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--light-gray);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin-right: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }

  .download-buttons a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }

  .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mockup {
    width: 99%;
  }

  .illustrations {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    pointer-events: none;
  }

  /* ======= Responsive ======= */
  @media (max-width: 768px) {
    header {
      padding: 1rem;
    }

    .bg-shape {
      position: fixed;
      right: 0;
      top: 70%;
      height: 50%;
      z-index: -1;
      pointer-events: none;
    }

    header .btn-contact {
      background: var(--primary-color);
      color: var(--bg-color);
    }


    .container {
      flex-direction: column;
      padding: 1rem;
    }

    .left {
      padding-right: 0;
      text-align: center;
      margin-bottom: 2rem;
    }

    .title {
      font-size: 2rem;
    }

    .slogan {
      font-size: 1rem;
    }

    .download-buttons a {
      margin: 0 0.5rem 1rem 0.5rem;
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .right {
      width: 100%;
      justify-content: center;
    }

    .mockup {
      width: 80%;
      max-width: 300px;
    }
  }

  @media (max-width: 400px) {
    .title {
      font-size: 1.5rem;
    }

    .slogan {
      font-size: 0.9rem;
    }

    .download-buttons a {
      font-size: 0.8rem;
      padding: 0.5rem 0.8rem;
    }
  }

  /*---- FOOTER ----*/
  .footer {
    background-color: #f8f8f8;
    padding: 2rem 1rem 1rem 1rem;
    color: #333;
    font-size: 0.9rem;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .footer-left {
    display: flex;
    flex: 1;
    min-width: 200px;
  }

  .footer-left div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 0.5rem;
  }

  .footer-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 150px;
  }

  .footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: var(--primary-color);
  }

  .footer-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
  }

  .footer-social a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: var(--primary-color);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-left {
      justify-content: center;
    }

    .footer-links {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }
  }