:root {
    --bg-color-preguntas: #252525;
    --color-font: rgb(248, 248, 248);
}

section.faq-title {
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.faq-title  h1 {
    display: flex;
    align-items: center;
    font-size: 5rem;
    gap: 70px;
    margin: 10px;
    font-weight: 600;
}
section.faq-title h1 img {
    width: 80px;
}

/* Mouse */
.contenedor-mouse {
    width: 100%;
    display: flex;
    justify-content: center;
}
.contenedor-mouse svg {
    width: 60px;
    height: 60px;
    animation: moverMouse 2s ease infinite;
}

@keyframes moverMouse {
  25% {
      transform: rotate(-6deg);
  }
  32.5% {
      transform: rotate(6deg);
  }
}

.mouse-wheel {
    animation: interior_batir 2s ease infinite;
  }
  
  @keyframes interior_batir {
    25% {
      transform: translateY(-6px);
    } 
    50% {
        transform: translateY(0);
    }
  }

  /* Preguntas */
  section.preguntas {
    width: 65%;
    margin: auto;
    margin-top: 20vh;
    margin-bottom: 25vh;
  }
  section.preguntas .accordion .accordion-item {
    margin-top: 20px;
    border-radius: 10px;
    background-color: var(--bg-color-preguntas);
    color:var(--color-font);
    border: none;
  }
  section.preguntas .accordion .accordion-item .accordion-button {
    border-radius: 10px;
    background-color: var(--bg-color-preguntas);
    color:var(--color-font);
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
  }

    .accordion-button:is(.collapsed)::after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5c5c5'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
        transform: scale(1.1);
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2360C7B6'><path fill-rule='evenodd' d='M1.646 11.854a.5.5 0 0 1 .708 0L8 5.707l5.646 5.647a.5.5 0 0 1 .708-.708l-6-6a.5.5 0 0 1-.708 0l-6 6a.5.5 0 0 1 0 .708z'/></svg>");
        transition: 0.3s ease;
        transform: scale(1.3);
    }
    


    section.preguntas .accordion.accordion-collapse {
        border: none;
    }

  section.preguntas .accordion .accordion-body p {
    color: rgb(223, 223, 223);
  }


@media only screen and (min-width: 1800px) {
    section.faq-title {
        width: 100%;
        height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    section.faq-title  h1 {
        display: flex;
        align-items: center;
        font-size: 6.5rem;
        gap: 70px;
        margin: 10px;
        font-weight: 600;
    }
    section.faq-title h1 img {
        width: 80px;
    }
    
    /* Mouse */
    .contenedor-mouse {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .contenedor-mouse svg {
        width: 75px;
        height: 75px;
        animation: moverMouse 2s ease infinite;
    }
        
      /* Preguntas */
      section.preguntas {
        width: 50%;
      }

      section.preguntas .accordion .accordion-item .accordion-button {
        font-size: 1.1rem;
      }
        
      section.preguntas .accordion .accordion-body p {
        font-size: 1rem;
      }

}