/* INICIO CSS */


  * {   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #E6E6E6;
    color: #292C2F;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Layout principal */
  .section {
    width: calc(100% - 100px);
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }

  .text {
    flex: 1;
    line-height: 1.5;
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .text h2 {
    margin: 0;
    margin-bottom: 1em;
  }

  .text p {
    margin-bottom: 1em;
  }

  /* Primeira Seção: Produto */
  .section-one {
    display: flex;
    flex-wrap: wrap;
    background-color: #FFFFFF;
    padding: 10px;
    margin-top: 72px;
    align-items: flex-start;
    justify-content: center;
  }

  .product-sale {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    margin: 30px 0;
  }

  .carousel {
    position: relative;
    max-width: 100%;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .carousel-item {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-item img {
    max-width: 450px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ccc;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 100%;
    opacity: 0.7;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background-color: #f27a1a;
  }

  .price-text {
    font-size: 20px;
    font-weight: bold;
    color: #f27a1a;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .offer-text {
    font-size: 18px;
    color: #292C2F;
    font-weight: normal;
    margin-bottom: 20px;
  }

  .button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .buy-button {
    background-color: #f27a1a;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    text-transform: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    text-decoration: none;
  }

  .buy-button:hover {
    background-color: #d96b17;
  }

  .payments img{
    width: 55%;
    height: auto;
    max-width: 100%;
    margin-bottom: 15.5px;
  }

  .pay-safe p {
    width: 100%;
    font-size: 14px;
    color: #3ec461;
    text-align: center;
    margin: 0;
  }

  .text ul {
    list-style-position: inside;
    margin: 0;
    padding-left: 0;
  }

  .text ul li {
    margin-bottom: 1em;
  }

  /* Segunda Seção: Perguntas Frequentes */
  .faq-section {
    flex-direction: column;
    line-height: 1.5;
    background-color: #FFFFFF;
    padding: 40px;
    margin-bottom: 106px;
    align-items: center;
  }

  .faq-section h2 {
    width: 100%;
    text-align: center;
    margin: 0;
    margin-bottom: 1.7em;
  }

  .faq-section h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.5em;
  }

  .faq-section p {
    font-size: 16px;
    margin: 0;
    margin-bottom: 1.5em;
  }

  .faq-section p:last-of-type {
    margin-bottom: 0;
  }


  /* Media Query para telas menores INICIO */
  @media screen and (max-width: 768px) {
    body * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } 

    .section {
      width: calc(100% - 30px);
      max-width: 768px;
    }

    .text {
      flex: 1;
      line-height: 1.5;
      margin: 20px 16px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .text h2 {
      margin: 0;
      margin-bottom: 1.5em;
    }

    .text p {
      margin-bottom: 1em;
    }
   
    .section-one,
    .faq-section {
      background-color: #FFFFFF;
      justify-content: center;      
      max-width: calc(100% - 55px);
    }

    .section-one {
      flex-wrap: wrap;
      margin-top: 72px;
      align-items: flex-start;
    }

    .product-sale {
      flex: 1;
      display: flex;
      justify-content: center;
      text-align: center;
      align-items: center;
      flex-direction: column;
      margin: 0 5px;
    }

    .carousel {      
      width: 320px;
      height: 320px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px 16px;
      margin-bottom: 0;
    }

    .carousel-item img {
      width: 85% !important;
      margin: 0 auto;
      display: block;
    }

    .price-text {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .offer-text {
      font-size: 16px; 
      margin-bottom: 20px;
    }

    .buy-button {
      font-size: 16px;
    }

    .payments img {
      width: 80%;
      margin-bottom: 15.5px;
    }

    .faq-section {
      padding: 35px;
      line-height: 1.5;
      margin-bottom: 92px;
      align-items: center;
    }

    .faq-section h2 {
      margin: 0;
      margin-bottom: 1.5em;
    }
  }
 

  @media (max-width: 480px) {
    .section {
        width: calc(100% - 40px);
        max-width: 480px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .section-one {
        box-sizing: border-box;
        padding: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .carousel {      
        width: 320px;
        height: 320px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        margin-bottom: 0;
    }

    .carousel-item img {
        width: 85% !important;
        margin: 0 auto;
        display: block;
    }

    .price-text {
        font-size: 16px;
        margin-bottom: 0;
    }

    .offer-text {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .buy-button {
        font-size: 14px;
    }

    .payments img {
        width: 80%;
        margin-bottom: 15.5px;
    }

    .pay-safe p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .text {
        line-height: 1.5;
        padding: 0 10px;
        display: block;
    }

    .text h2,
    .faq-section h2 {
        font-size: 16px;
        margin-bottom: 1.5em;
        text-align: center;
    }

    .text p,
    .faq-section p {
        font-size: 14px;
        margin-bottom: 1em;
    }

    .text ul {
        font-size: 14px;
        list-style-position: inside;
        margin-bottom: 1em;
        padding-left: 0;
    }

    .text ul li:last-child {
        margin-bottom: 0;
    }

    .faq-section {
        line-height: 1.5;
        padding: 20px 26px;
        margin-bottom: 20px;
    }

    .faq-section h3 {
        font-size: 14px;
    }
 }


/* FIM CSS */
