@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@media (max-width: 730px){
    body {
      display: grid;
    }
  }
  
  @media (max-width: 1150px){
  
  }
  
  body {
      width: 100%;
      margin: 0;
  }
  
  body, button, a {
      color: var(--text);
      font: 400 1rem "Mukta", sans-serif;
    }
    
    a {
      text-decoration: none;
      list-style: none;
    }
    
    button:hover {
      cursor: pointer;
    }
  
  :root{
      color: #207BAE;
      color: #E008B2;
  }
  
  .btn-fixo-zap:hover {
    transform: scale(1.1); /* Expande o botão */
    box-shadow: 0 0 10px rgba(0,0,0,0.2); /* Adiciona uma sombra suave */
  }
  
  .btn-fixo-zap:hover {
    transform: scale(1.1); /* Expande o botão */
    box-shadow: 0 0 10px rgba(0,0,0,0.2); /* Adiciona uma sombra suave */
  }


.product-start {
    height: 600px;
    background-color: rgba(128, 128, 128, 0.235);

    position: relative;
    display: flex;
}

.product-1 {
    height: 600px;
    background-color: rgba(128, 128, 128, 0.235);

  
    position: relative;
    display: flex;
}

.product-2{
    display: flex;
    z-index: -1;
    position: relative;
    height: 600px;
    background-color: white;
}

@media screen and (max-width: 1100px){
    .product-2 {
        width: 1021px;
    }
    .product-1{
        width: 1021px;
    }
    .product-start{
        width: 1021px;
    }
    .acccordion-header b{
        font-size: 42px;
    }
    .acccordion-body li {
        font-size: 3vw;
    }
  
}

.productimg img{
    border: 6px white solid;
    border-radius: 10px;
    width: 350px;
    position: relative;
}

.product-text {
    position: relative;
}

.h1-cap{
    background-color: #E008B2;
    padding: 12px;
    width: 75%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-text h1 {
    font-size: 50px;
    color: #ffffff;
}

.product-text h2 {
    color: rgb(84, 84, 84);
}

.product-base{

    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}


#containerr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 500px;
}

.acccordion {
    background-color: rgba(255, 255, 255, 0.162);
    padding: 12px;
    cursor: pointer;
    -webkit-box-shadow: 0px 18px 38px -20px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 18px 38px -20px rgba(0,0,0,0.75);
    box-shadow: 0px 18px 38px -20px rgba(0,0,0,0.75);    

}

.acccordion-header {
    width: 100%;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 16px;
    cursor: pointer;
}

.acccordion-header span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acccordion-body {
    color: #444;
    font-size: 14px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}

.acccordion-body.active {
    height: 100%;
    opacity: 1;
    padding: 5px 0px;
}

.arrow {
    transition: transform .2s linear;
}

.acccordion:has(.active) .arrow {
    transform: rotate(180deg);
}