* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}


h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600; 
}

p {
  font-size: 16px;
  line-height: 1.6;
}

header{
  z-index: 1000;
}

/* ESTILOS DA LISTA DE CLIENTES */

.list-group-item {
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
}

.list-group-item .badge {
  font-size: 1.2rem;
  font-weight: bold;
}

.list-group-item small {
  color: #6c757d;
}

.list-group-item .d-flex {
  display: flex;
  justify-content: space-between;
}

.list-group-item .d-flex .flex-column {
  text-align: left;
}

.text-right .btn {
  margin-top: 10px;
}

/* ESTILOS DO CARTÃO */
.card_container{
  width: 250px;
  border-radius: 15px;
  background: white;
}

.your_logo{
  width: 70px;
  height: 70px
}

.item_start{
  width: 30px;
  height: 30px;
  cursor: pointer;
  user-select: none !important;
}

.mockupIphone{
  width: 320px;
  height: 650px;
  border-radius: 50px;
  background: rgb(243 243 243);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 8px solid #333;
}

.mockupIphone .notch {
  position: absolute;
  top: 10px;
  width: 140px;
  height: 30px;
  background: #333;
  border-radius: 20px;

}

.mockupIphone .item_start{
  width: 30px;
  height: 30px;
}