.yc-footer{
  background:#050505;
  border-top:1px solid rgba(255,255,255,.10);
  color:#fff;
  padding:60px 7% 28px;
}

.yc-footer-inner{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:42px;
  max-width:1280px;
  margin:0 auto;
}

.yc-footer-logo{
  font-size:30px;
  font-weight:900;
  letter-spacing:-1px;
  color:#fff;
}

.yc-footer-logo span{
  color:#F0DF00;
}

.yc-footer-brand p{
  color:#9a9a9a;
  line-height:1.6;
  max-width:280px;
  margin-top:14px;
}

.yc-footer-column h4{
  color:#fff;
  font-size:15px;
  margin:0 0 18px;
}

.yc-footer-column a{
  display:block;
  color:#9a9a9a;
  text-decoration:none;
  font-size:14px;
  margin-bottom:12px;
  transition:.25s ease;
}

.yc-footer-column a:hover{
  color:#F0DF00;
}

.yc-footer-bottom{
  max-width:1280px;
  margin:38px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#777;
  font-size:13px;
}

.yc-footer-bottom p{
  margin:0;
}

@media(max-width:900px){
  .yc-footer-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .yc-footer-inner{
    grid-template-columns:1fr;
  }
}
.yc-whatsapp-float{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.yc-whatsapp-widget{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:99999;
  display:flex;
  align-items:center;
  gap:14px;
}

.yc-whatsapp-button{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 0 0 12px rgba(37,211,102,.16), 0 18px 45px rgba(0,0,0,.35);
  transition:.25s ease;
}

.yc-whatsapp-button:hover{
  transform:scale(1.07);
  box-shadow:0 0 0 16px rgba(37,211,102,.20), 0 22px 55px rgba(0,0,0,.45);
}

.yc-whatsapp-button svg{
  width:36px;
  height:36px;
}

.yc-whatsapp-popover{
  position:absolute;
  right:84px;
  bottom:4px;
  width:360px;
  background:#fff;
  color:#111;
  border-radius:18px;
  padding:20px 46px 20px 20px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  box-shadow:0 20px 55px rgba(0,0,0,.28);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px) scale(.96);
  transition:.25s ease;
}

.yc-whatsapp-popover.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.yc-whatsapp-popover::after{
  content:"";
  position:absolute;
  right:-10px;
  bottom:24px;
  width:22px;
  height:22px;
  background:#fff;
  transform:rotate(45deg);
}

.yc-whatsapp-popover-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#dff1ff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  font-size:21px;
}

.yc-whatsapp-popover-text strong{
  display:block;
  font-size:17px;
  font-weight:900;
  margin-bottom:5px;
}

.yc-whatsapp-popover-text span{
  display:block;
  color:#5f6470;
  font-size:15px;
  line-height:1.45;
}

.yc-whatsapp-close{
  position:absolute;
  top:10px;
  right:14px;
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:#8b8f99;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

@media(max-width:640px){
  .yc-whatsapp-widget{
    right:16px;
    bottom:16px;
  }

  .yc-whatsapp-button{
    width:58px;
    height:58px;
  }

  .yc-whatsapp-popover{
    right:0;
    bottom:76px;
    width:calc(100vw - 32px);
  }

  .yc-whatsapp-popover::after{
    right:22px;
    bottom:-9px;
  }
}