/* File: wp-content/plugins/creser-testimonials/css/testimonial.css */

/* ===== Formulario juvenil ===== */
#testimonial-form {
  max-width: 280px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}
#testimonial-form input,
#testimonial-form textarea,
#testimonial-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #f9f9f9;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
#testimonial-form input:focus,
#testimonial-form textarea:focus,
#testimonial-form select:focus {
  border-color: #A020F0;
  background: #fff;
  outline: none;
}
#testimonial-form button {
  width: 100%;
  padding: 0.75rem;
  background: #A020F0;
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#testimonial-form button:hover {
  background: #BF40BF;
}
#testimonial-response {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  text-align: center;
  color: #333;
}

/* ===== Mural de testimonios ===== */
.testimonial-background {
  background: url('../images/camino.png') no-repeat center top;
  background-size: cover;
  padding: 3rem 1rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Quicksand', sans-serif;
  transition: transform 0.2s;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* ===== 5 Estrellas est谩ticas ===== */
.testimonial-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.testimonial-rating .star {
  font-size: 1.8rem;
  color: #FFC107;
  margin: 0 0.2em;
}

/* ===== Mensaje ===== */
.testimonial-message {
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #333;
  margin-bottom: 1rem;
}

/* ===== Firma: nombre + emoticon + bandera ===== */
.testimonial-signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.1rem;
  color: #555;
}
.testimonial-signature .sig-emo,
.testimonial-signature .sig-country {
  font-size: 3rem !important;
  margin-left: 0.6rem;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* ===== Fecha ===== */
.testimonial-date {
  font-size: 1rem;
  color: #777;
  text-align: right;
  margin-top: 0.4rem;
  font-family: 'Quicksand', sans-serif;
}


/* Añádelo al final de css/testimonial.css o en CSS adicional */

/* Botón flotante de WhatsApp */
.creser-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  line-height: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s;
}
.creser-whatsapp-btn:hover {
  transform: scale(1.1);
}
.creser-whatsapp-btn .whatsapp-icon {
  display: inline-block;
  vertical-align: middle;
}


