/* =========================================
   RU Testimonios - White Elegant Theme
   ========================================= */

.ru-testimonios-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  color: #111;
}

.ru-testimonios-grid{
  display: grid;
  gap: 18px;
}

.ru-cols-1{ grid-template-columns: 1fr; }
.ru-cols-2{ grid-template-columns: repeat(2, 1fr); }
.ru-cols-3{ grid-template-columns: repeat(3, 1fr); }

.ru-testimonio-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  padding: 18px;
  transition: transform .15s ease, box-shadow .2s ease;
}

.ru-testimonio-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.ru-testimonio-card.ru-featured{
  border-color: rgba(255,45,45,0.35);
  box-shadow: 0 0 0 2px rgba(255,45,45,0.10), 0 18px 40px rgba(0,0,0,0.08);
}

.ru-testimonio-top{
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.ru-avatar{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.03);
}

.ru-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ru-avatar-fallback{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(0,0,0,0.7);
}

.ru-testimonio-meta{
  flex: 1;
  min-width: 0;
}

.ru-testimonio-name{
  font-weight: 900;
  font-size: 16px;
  color: #111;
  line-height: 1.2;
}

.ru-testimonio-city{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}

.ru-badge{
  position: absolute;
  right: 0;
  top: 0;
  background: #ff2d2d;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(255,45,45,0.20);
}

.ru-testimonio-body{
  margin-top: 14px;
  color: rgba(0,0,0,0.70);
  font-size: 14px;
  line-height: 1.55;
}

.ru-testimonio-body p{
  margin: 0 0 10px 0;
}

/* FORM */
.ru-form-wrap{
  max-width: 820px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.ru-form-head{
  margin-bottom: 16px;
}

.ru-form-title{
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: #111;
}

.ru-form-subtitle{
  margin: 8px 0 0 0;
  color: rgba(0,0,0,0.65);
  font-size: 14px;
}

.ru-form-note{
  margin: 10px 0 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

.ru-form-success{
  background: rgba(0, 200, 83, 0.10);
  border: 1px solid rgba(0, 200, 83, 0.25);
  color: rgba(0,0,0,0.80);
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 14px;
  font-weight: 800;
}

.ru-testimonio-form{
  margin-top: 12px;
}

.ru-form-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ru-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ru-field-full{
  grid-column: span 2;
}

.ru-field label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(0,0,0,0.70);
}

.ru-field input,
.ru-field textarea{
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
  border-radius: 16px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.ru-field input:focus,
.ru-field textarea:focus{
  border-color: rgba(255,45,45,0.35);
  box-shadow: 0 0 0 3px rgba(255,45,45,0.10);
}

.ru-checkbox{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(0,0,0,0.70);
  font-weight: 700;
}

.ru-checkbox input{
  margin-top: 3px;
}

.ru-submit-btn{
  margin-top: 14px;
  border: none;
  background: #ff2d2d;
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255,45,45,0.20);
  transition: transform .08s ease, opacity .2s ease, box-shadow .2s ease;
}

.ru-submit-btn:hover{
  opacity: 0.95;
  box-shadow: 0 18px 34px rgba(255,45,45,0.25);
}

.ru-submit-btn:active{
  transform: scale(0.98);
}

/* Honeypot hidden */
.ru-hp{
  display:none !important;
}

/* Responsive */
@media (max-width: 980px){
  .ru-cols-2{ grid-template-columns: 1fr; }
  .ru-cols-3{ grid-template-columns: 1fr; }

  .ru-form-grid{
    grid-template-columns: 1fr;
  }
  .ru-field-full{
    grid-column: span 1;
  }
}
