@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;700&display=swap');

:root {
  --ticket-height: 60px;
  --color-blue: #d57800;
  --color-orange: #e30a17;
  --color-green: #008001;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.section-prices {
  padding: 1.5rem 1rem;
}
.section-prices .section-header {
  background-color: #FFF;
  margin-bottom: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #555;
  font-weight: 700;
  box-shadow: 0 10px 35px -10px rgba(0, 0, 0, .3);
}

.list-boxs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list-boxs .cardbox {
  width: 32%;
  text-align: center;
  position: relative;
  max-width: 300px;
  margin: 0;
}

.list-boxs .cardbox .head,
.list-boxs .cardbox .maincard-body {
  background-color: rgb(233,233,233);
  padding: 1.5rem 1rem;
    border-radius: 15px;
  box-shadow: 0 10px 35px -10px rgba(0, 0, 0, .3);
}

.list-boxs .cardbox .maincard-body {
    border-radius: 15px;
}

.list-boxs .cardbox .head {
  color: #333;
  font-size: 1.2rem;
  text-transform: uppercase;
  transform: translateY(30px);
  transition: transform .3s linear;
  height: 60px;
}

.list-boxs .cardbox .head_0 {
  color: #333;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-bottom: 1px solid #F2F2F2;
  height: auto;
}


.list-boxs .cardbox:hover .head {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .cardbox.active .head {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .cardbox.active .maincard-body {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .cardbox .ticket {
  color: #FFF;
  width: 85%;
    border-radius: 15px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  height: 60px;
  box-shadow: inset 0px 6px 6px -5px rgba(0, 0, 0, .25),
  inset 0px -6px 6px -5px rgba(0, 0, 0, .25);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

.list-boxs .starter .ticket {

  background-color: var(--color-green);
}

.list-boxs .starter .head {

  background-size: cover;
  background-repeat: no-repeat;
}

.list-boxs .standard .ticket {
  background-color: var(--color-blue);
}

.list-boxs .standard .head {

  background-size: cover;
  background-repeat: no-repeat;
}

.list-boxs .premium .ticket {
  background-color: var(--color-orange);
}
.list-boxs .premium .head {

  background-size: cover;
  background-repeat: no-repeat;
}

.list-boxs .cardbox .maincard-body {
  transform: translateY(-30px);
  transition: transform .3s linear;
}


.list-boxs .cardbox:hover .maincard-body {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .cardbox .head:hover,
.list-boxs .cardbox.hovered .head {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .cardbox .maincard-body:hover,
.list-boxs .cardbox.hovered .maincard-body {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}



.list-boxs .cardbox p {
  font-size: .95rem;
  color: #333;
  text-align: left;

}
.list-boxs .cardbox .btn {
  margin-top: 2rem;
  padding: .6rem 1rem;
  outline: none;
  font-size: .85rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  min-width: 160px;
  border: 1px solid #555;
  background-color: #555;
  color: #fff;
  cursor: pointer;
  transition: all .2s linear;
  border-radius: 15px;
}
.list-boxs .cardbox .btn:hover {
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, .15);
}

.list-boxs .starter .btn {
  background: var(--color-green);
  border-color: var(--color-green);
}
.list-boxs .standard .btn {
  background: var(--color-blue);
  border-color: var(--color-blue);
}
.list-boxs .premium .btn {
  background: var(--color-orange);
  border-color: var(--color-orange);
}


@media screen and (max-width: 750px) {
  .list-boxs {
    justify-content: space-around;
  }
  .list-boxs .cardbox {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .btn {

    margin-right: 10px;
    font-size: .4rem; /* Adjusted font size for smaller screens */
    width: 25vw; /* Increase button width for smaller screens if necessary */
  }
}

@media screen and (max-width: 550px) {
  .list-boxs .cardbox {
    width: 95%;
  }
}