/** Shopify CDN: Minification failed

Line 11:14 Unexpected "{"
Line 11:23 Expected ":"
Line 11:30 Unexpected "{"
Line 139:15 Unexpected "{"
Line 139:24 Expected ":"
Line 139:31 Unexpected "{"

**/
    .section-{{ section.id }} {
        padding: 80px 20px;
    }

  .moments-container {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #fffefa;
    padding: 60px;
    border-radius: 16px;
  }

  .moments-content {
    width: 50%;
  }

  .moments-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    display: block;
    margin-bottom: 20px;
  }

  .moments-title {
    font-size: 42px;
    line-height: 1.1;
    color: #062a2a;
    margin-bottom: 30px;
    font-weight: 500;
  }

  .moments-text {
    font-size: 16px;
    line-height: 1.6;
    color: #062a2a;
    margin-bottom: 40px;
  }

  .moments-button {
    display: inline-block;
    background: #062a2a;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
  }

  .moments-button.m-btn-mobile{
    display: none;
  }

  .moments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 50%;
  }

  .grid-item {
    border-radius: 20px;
    overflow: hidden;
  }

  .grid-item.image-top,
  .grid-item.image-bottom {
    width: 55%;
  }

  .grid-item.card-dark.card-top,
  .grid-item.card-dark.card-bottom {
    width: 42%;
  }

  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-dark {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .card-overlay {
    position: relative;
    z-index: 2;
  }

  .card-dark h3 {
    font-size: 32px;
    font-style: italic;
    font-weight: bold;
    color: #fff;
    font-family: 'Montserrat';
    margin: 0;
  }

  .card-dark p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
  }

  @media screen and (min-width: 1440px) and (max-width: 1503px){
  .card-dark h3 {
      font-size: 24px !important;
    }
  }

  /* Responsividade */
  @media (max-width: 768px) {

     .section-{{ section.id }} {
        padding: 0;

    }
    .moments-container {
        flex-direction: column;
        padding: 0;
        background: transparent;
        max-width: 100%;
        margin: 20px;
        gap: 20px;
    }
    .moments-content,
    .moments-grid {
      width: 100%;
    }
    .moments-title { 
      font-size: 24px; 
    }

     .grid-item.image-top,
  .grid-item.image-bottom {
    width: 55%;
    border-radius: 8px;
  }

    .grid-item.card-dark.card-top,
  .grid-item.card-dark.card-bottom {
    width: 43%;
    padding: 10px;
    border-radius: 8px;
  }

    .moments-grid {
      gap: 5px;
    }

    .card-dark h3{
        font-size: 18px;
    }

    .card-dark p{
        display: none;
    }

    .moments-text,
    .moments-text p{
        margin:0;
    }

    
    .moments-button.m-btn-desk{
    display: none;
    }

    .moments-button.m-btn-mobile{
        display: block;
        width: 100%;
        text-align: center;
    }

  }