/* =========================
   FOOTER GLOBAL
========================= */

.footer{
  margin-top: 60px;
  padding: 48px 0;
  background: linear-gradient(180deg, #071220, #050b14);
  border-top: 1px solid rgba(255,255,255,.08);
  color: #eaf2ff;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

/* =========================
   COLUMNA IZQUIERDA
========================= */

.footer-info .brand-footer{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.brand-footer .brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.brand-footer .brand-name{
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-desc{
  max-width: 560px;
  color: rgba(234,242,255,.75);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =========================
   BOTONES CONTACTO
========================= */

.footer-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #eaf2ff;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.footer-btn:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

/* WhatsApp icon */
.whatsapp-btn .wa-icon{
  width: 18px;
  height: 18px;
  color: #25D366;
}

/* =========================
   REDES SOCIALES
========================= */

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn{
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #eaf2ff;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-btn svg{
  width: 20px;
  height: 20px;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.social-btn.fb:hover{ color:#1877F2; }
.social-btn.ig:hover{ color:#E1306C; }
.social-btn.tt:hover{ color:#69C9D0; }

/* =========================
   TEXTO LEGAL
========================= */

.footer-legal{
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(234,242,255,.55);
  line-height: 1.5;
}

/* =========================
   COLUMNA DERECHA (RATING)
========================= */

.footer-rating{
  max-width: 360px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.footer-rating h4{
  margin: 0 0 12px;
  font-weight: 700;
}

.rating-score{
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.rating-score strong{
  font-size: 2rem;
  font-weight: 900;
}

.rating-score span{
  color: rgba(234,242,255,.65);
  font-weight: 600;
}

.rating-stars{
  color: #FFC107; /* estrellas amarillas */
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rating-sub{
  color: rgba(234,242,255,.7);
  font-size: .9rem;
  margin-bottom: 14px;
}

.rating-btn{
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(80,160,255,.30);
  color: #eaf2ff;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease;
}

.rating-btn:hover{
  background: rgba(255,255,255,.10);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-rating{
    max-width: 100%;
  }
}
