* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.header {
  height: 120px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 80px;
  cursor: pointer;
}
.footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #e53935;
  transform: translateY(-4px);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #aaa;
}


.footer .social-icons a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .social-icons a:hover {
  transform: translateY(-4px) scale(1.1);
  opacity: 0.85;
}
/* ==========================
   WhatsApp Floating Button
========================== */

.whatsapp-float.pringles-style {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #c62828, #6a1b9a);
  color: #fff;
  font-size: 26px;

  z-index: 999;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.whatsapp-float.pringles-style:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Pulse suave */
.whatsapp-float.pringles-style::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: pulse 2.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-float .tooltip {
  position: absolute;
  right: 75px;
  background: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: 0.3s ease;
}

.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}