body{
  margin:0;
  font-family: Arial;
  background: linear-gradient(135deg, #016096 0%, #019c81 60%, #c7d209 140%);
  color:#fff;
   min-height: 100vh;
}


body, p, input, textarea{
  font-family: 'Inter', sans-serif;
}


h1, h2, h3{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}


*{
  box-sizing: border-box;
}

/* APP WRAPPER */
.app-premium{
  max-width:420px;
  margin:auto;
  padding:20px;
}

/* HERO */
.hero-premium{
  text-align:center;
  padding:10px 20px;
}

.logo-box{
  width:120px;
  height:120px;
  margin:auto;
  background:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-premium h1{
  margin-top:15px;
  font-size:22px;
}

.hero-premium p{
  color:#c7d209;
}

/* CARD */
.card-premium{
  background:#fff;
  color:#000;
  padding:20px;
  border-radius:20px;
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}


.card-premium input,
.card-premium textarea{
  width: 100%;
  max-width: 100%;
  display: block;
}



input, textarea{
  width:100%;
  margin-top:10px;
  padding:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

/* BUTTON */
button{
  width:100%;
  margin-top:10px;
  padding:12px;
  border:none;
  border-radius:10px;
  background:#019c81;
  color:#fff;
  font-weight:bold;
}

/* STARS */
.stars-premium{
  margin-top:10px;
}

.stars-premium i{
  font-size:24px;
  color:#ccc;
  cursor:pointer;
  margin-right:5px;
}

.stars-premium i.active{
  color:#c7d209;
}

/* COMMENTS */
.comments-premium{
  margin-top:20px;
}

.comment-card{
  background:#fff;
  color:#000;
  padding:15px;
  border-radius:15px;
  margin-top:10px;
}

.stars-show i{
  color:#ccc;
}



.fb-section{
  margin-top:20px;
  text-align:center;
}

.fb-text{
  font-size:14px;
  color:#016096;
  margin-bottom:10px;
}

.fb-btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  background:#016096;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.fb-btn i{
  margin-right:6px;
}

.fb-btn:hover{
  background:#019c81;
  transform: translateY(-2px);
}





.stars-show i{
  font-size: 18px;
  margin-right: 2px;
}

/* estrella vacía */
.star-inactive{
  color: #d6d6d6;
}

/* estrella llena */
.star-active{
  color: #f5c518 !important; /* amarillo real */
}

/*boton superior subir*/
.btn-top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #016096, #019c81);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 9999;
}

.btn-top:hover{
  transform: translateY(-3px) scale(1.05);
}

/* mostrar cuando esté activo */
.btn-top.show{
  display: flex;
}