/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 126:0 Unexpected "{"
Line 126:1 Expected identifier but found "%"

**/
{%- style -%}
  /* FastCar Collection Hero - Ajustes Visuais */
  
  .collection-hero {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  }

  .collection-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .collection-hero__text-wrapper {
    z-index: 2;
  }

  .collection-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .collection-hero__title span {
    color: #ff4444;
  }

  .collection-hero__description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2rem;
  }

  .collection-hero__description p {
    margin: 0;
  }

  .collection-hero__image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .collection-hero__image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  /* Responsive */
  @media screen and (max-width: 1024px) {
    .collection-hero {
      padding: 2.5rem 0;
    }

    .collection-hero__inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .collection-hero__title {
      font-size: 36px;
    }

    .collection-hero__description {
      font-size: 16px;
    }
  }

  @media screen and (max-width: 768px) {
    .collection-hero {
      padding: 2rem 0;
    }

    .collection-hero__inner {
      gap: 1.5rem;
    }

    .collection-hero__title {
      font-size: 28px;
      margin-bottom: 1rem;
    }

    .collection-hero__description {
      font-size: 14px;
      max-width: 100%;
    }
  }

  @media screen and (max-width: 480px) {
    .collection-hero {
      padding: 1.5rem 0;
    }

    .collection-hero__inner {
      gap: 1rem;
    }

    .collection-hero__title {
      font-size: 22px;
      margin-bottom: 0.8rem;
    }

    .collection-hero__description {
      font-size: 13px;
    }
  }
{%- endstyle -%}