* {
    box-sizing: border-box;
    margin: 0;padding: 0;
}

body {
    -webkit-user-select: none; 
    -moz-user-select: none;   
    -ms-user-select: none;     
    user-select: none;    
    background: linear-gradient(135deg, #fff, #ed8bce);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    position: relative;
    padding: 20px;
    overflow: hidden;
}


.message-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.message-box textarea {
  flex: 1;
  min-height: 90px;
  max-height: 90px;
  resize: vertical;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid #f0aada;
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  outline: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.message-box textarea:focus {
  border-color: #be1e7c;
  box-shadow: 0 6px 20px rgba(190,30,124,0.25);
}


.avatar {
    position: absolute;
    top: -80px;              
    left: 50%;               
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content p {
    margin-bottom: 18px;
    line-height: 1.4;
    font-size: 0.95rem;
    color: var(--text-soft);
    opacity: 0;
    transform: translateY(20px);
    animation: slideFade 1s forwards;
    text-align: justify;
    hyphens: auto;
}

.content p:nth-of-type(1){animation-delay:.2s}
.content p:nth-of-type(2){animation-delay:.4s}
.content p:nth-of-type(3){animation-delay:.6s}

.actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 35px;
    align-items: center;
}

a.btn-corner,
a.btn-corner:link,
a.btn-corner:visited {
  text-decoration: none;
}

.btn-corner {
    position:absolute; 
    top:20px; 
    width:46px; 
    height:46px; 
    border:none; 
    border-radius:999px;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    cursor:pointer;
    background-color:#F9DCF0; 
    color:#7a1350;
    box-shadow:0 8px 18px rgba(255,77,166,.1); 
    z-index:8;
    transition:transform .15s ease;
}

.btn-corner:active {
    animation: clickZoom 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes clickZoom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.btn-prev { left:20px }
.btn-next { right:20px }
.btn-corner i { font-size:16px }
    
.btn {
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 600;
}

.btn-primary {
    background: var(--cta);
    letter-spacing: 0.4px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    animation: pulse 2.5s infinite;
}

.btn-primary:hover {background: var(--cta-hover); transform: translateY(-2px);}

@media (min-width: 768px) {
img.logo { width: 120px; }
.hamburger { font-size: 30px; left: 160px; }
.content { padding: 50px 40px 60px; }
.content p { font-size: 1.05rem; }
.actions { flex-direction: row; justify-content: center; }
.btn { min-width: 200px; }
.avatar {
    top: -60px;
    width: 160px;
    height: 160px;
}
}

.table {
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(40px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-40px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes slideFade {
    to {opacity: 1; transform: translateY(0);}
}
    
@keyframes pulse {
    0%, 100% {box-shadow: 0 0 0 rgba(255,77,166, 0.6);}
    50% {box-shadow: 0 0 30px rgba(255,77,166, 0.9);}
}

.is-animating { pointer-events: none; user-select: none; }
.hidden { display: none !important; }

.content {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 28px 35px;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.content.initial-anim {
    animation: fadeInUp 1.2s ease both;
}

.btn-temps {
    animation: fadeInUp 1.2s ease;
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    border-radius: 999px;
    background-color: #fae0f2;
    color: #7A1350;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: Montserrat;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom:20px;
}


.btn-temps:hover {
    background-color: #f6d4ec;
}

.btn-temps:focus,
.btn-temps:focus-visible {
    outline: none;
    border: 1px solid transparent;
    box-shadow: none;
}

.page { 
    display:none; 
}

.page.active { display:block; }

a {outline: none !important;
    box-shadow: none !important;
}
  
* {
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    overscroll-behavior:
  }