/*RESET & BASE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
a {
  color: #000;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fondu-entree 0.3s ease;
  transition: opacity 0.3s ease;
}
@keyframes fondu-entree {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fondu SORTIE */
body.fondu-sortie {
  opacity: 0;
}


/*HEADER*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  width: 100%;
}

.info {
  margin-top: 20px;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  font-weight: 600;
}


/* CARD  */
.card {
  border: 1.5px solid rgba(128, 128, 128, 0.562);
  border-radius: 12px;
  margin: 0 clamp(12px, 4vw, 20px) clamp(10px, 3vw, 16px);
  margin: 10px;
  padding: clamp(14px, 4vw, 20px);
  display: block;
  align-items: center;
}
.card .top  {
    display: block;
    align-items: center;
    justify-content: space-between;
}

.card .top .top_top {
     display: block;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    line-height: 1.5;
}
.card .top .top_top h3 {
    font-size: 15px;
}
.card .top .top_top span {
    font-size: 12px;
    font-weight: 500;
}
.card .top .p:last-child {
    font-size: 13px;
    color: black;
    margin-bottom: 0;
}
.card .top .p {
    font-size: 13px;
    color: gray;
    margin-bottom: 10px;
}

.card .top .call  {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.card .top .call img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    object-fit: cover;
}
.card .top .call .right {
    line-height: 1.5;
    display: block;
    align-items: center;
    justify-content: center;
}
.card .top .call .right h2 {
    font-size: 15px;
}

.card .top .call .right p {
    font-size: 10px;
    color: gray;
}


.bonus h2{
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}

.bonus {
    line-height: 1.5;
  margin: 0 clamp(12px, 4vw, 20px) clamp(10px, 3vw, 16px);
  display: block;
  align-items: center;
  justify-content: flex-start;
}

.bonus p {
    color: gray;
}
.bonus p span {
    color: rgb(107, 107, 107);
}