element.style {
    padding-bottom: 150px;
}
body {
    background-color: rgba(255, 255, 255, 1);
}
html, body {
    font-size: 15px;
    font-family: 'MontserratLight';
}
html, body, .contact-input {
    color: rgba(3, 3, 3, 1);
}
body {
    background-color: #fff;
}
body {
    font-family: sans-serif;
    background: #fff;
    position: relative;
    margin: 0;
    min-height: 100%;
    box-sizing: border-box;
}
html, body {
    font-size: 14px;
}
body {
    line-height: 1rem;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    font-family: 'MontserratLight';
}
*, *:before, *:after {
    box-sizing: inherit;
}
* {
    box-sizing: border-box;
}
user agent stylesheet
body {
    display: block;
    margin: 8px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
*, *:before, *:after {
    box-sizing: inherit;
}

    /* Ícone fixo no canto inferior esquerdo */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 1000;
      }
  
      /* Animação ao passar o mouse */
      .whatsapp-float:hover {
        transform: scale(1.2);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      }
  
      /* Ícone do WhatsApp */
      .whatsapp-float img {
        width: 70%;
        height: 70%;
      }
  
      /* Animação contínua (batida leve) */
      .whatsapp-float {
        animation: pulse 2s infinite;
      }
  
      @keyframes pulse {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
      }

      .slider-container {
        position: relative;
        width: 80%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      }
      
      .image-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.25%; /* 16:9 aspect ratio */
        overflow: hidden;
      }
      
      .before-image,
      .after-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .after-image {
        clip-path: inset(0 50% 0 0); /* Mostra inicialmente 50% da imagem */
        transition: clip-path 0.2s ease-in-out;
      }
      
      .slider-bar {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background-color: #fff;
        z-index: 2;
        transform: translateX(-50%);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
      }
      
      .slider-input {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        z-index: 3;
        pointer-events: all;
        background: transparent;
        appearance: none;
      }
      
      .slider-input::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
        background: #25d366;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        appearance: none;
      }
      
      .slider-input::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #25d366;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      }

      /* Container principal */
.slider-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
  }
  
  /* Estilização do slider */
  .slider {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .before, .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .after {
    clip-path: inset(0 50% 0 0); /* Começa cortada pela metade */
    transition: clip-path 0.2s ease-in-out;
  }
  
  /* Input do slider */
  .slider-input {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 3;
    appearance: none;
    background: transparent;
    cursor: pointer;
  }
  
  .slider-input::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    appearance: none;
  }
  
  .slider-input::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }