* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}
body {
    background-color: #CBC3E3;
}

.btn-inicio {
    margin-bottom: 10px;  
    display: inline-block;
}
.header-cartao {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}
.box {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0, 0.2);
    margin: 20px;
    border-radius: 20px;
    padding-top: 10px;
    padding: 10px;
}

.espaco-box {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.title {
    color: #2a2a5c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0, 0.3);
    margin: 20px;
    background-color: 	#CBC3E3;
    padding: 20px;
    width: 450px;
    height: 250px;
    border-radius: 25px;
    text-align: left;
}
.chip {
    width: 50px;
    height: 40px;
    margin-top: 40px;
    margin-left: 30px;
}
.card bold {
  font-weight: 600;
  display: block; 
  text-align: right;
  font-size: 20px;
}
.card p {
    margin-top: 15px;
    font-size: 20px;
    margin-left: 30px;
}
.card h3 {
    margin-left: 30px;
    margin-top: 25px;
}
.master {
    mix-blend-mode: multiply;
    width: 80px;
    height: 50px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.fatura {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 30px 20px 20px 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.disponivel {
    margin-left: 200px;
    margin-top: 30px;
    opacity: 0.6;
    font-size: 20px;
}
.disponivel h6 {
    color: green;
    font-size: 20px;
    margin-top: 10px;
    text-align: right;
}
.fatura-atual {
    margin-top: 30px;
}

.fatura-atual p, .disponivel p {
    color: #888; /* Cinza para textos secundários */
    font-size: 20px;
    margin-bottom: 0;
}
.fatura-atual h4{
    color: #5b3ef0;
    font-size: 32px;
    margin-top: 5px;
}

.btn-pagamento {
    margin: 0 20px 30px 20px;
    opacity: 1;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #f0f0f5;
    border: 1px solid #ccc;
    cursor: pointer;
    font-weight: 600;
}

.card-actions {
  display: flex;
  justify-content: space-around;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 16px;
  border-top: 1px solid #eee;
}

.action-item i {
    font-size: 24px;
    color: #5b3ef0;
    cursor: pointer;
}

.action-item span {
  font-size: 12px;
  color: #555;
  cursor: pointer;
}

