/* components.css */

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(255, 247, 251, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2001;
  transition: all var(--tr-base);
  border-bottom: 2px solid transparent;
}

.navbar.scrolled {
  background: white;
  height: 75px;
  border-bottom: var(--brutal-border);
  box-shadow: 0 4px 0 rgba(44, 11, 68, 0.05);
}

@media (max-width: 768px) {
  .navbar.scrolled {
    height: 70px;
  }
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-weight: 800;
  color: var(--clr-heading);
  letter-spacing: -1.2px;
  white-space: nowrap;
  line-height: 1;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-logo span {
  transform: translateY(2px);
}

.navbar-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-heading);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--clr-primary);
  transition: all var(--tr-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Buttons - Neobrutalism */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all 0.1s ease;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow-sm);
  outline: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--br-border-dark);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0 var(--br-border-dark);
}

.btn-primary {
  background: var(--clr-primary);
  color: white;
}

.btn-secondary {
  background: var(--clr-secondary);
  color: white;
}

.btn-outline {
  background: white;
  color: var(--clr-primary);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-white {
  background: white;
  color: var(--clr-heading);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--fs-md);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--fs-sm);
  border-width: 2px;
}

/* Badge */
.badge {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: white;
  border: 2px solid var(--br-border-dark);
  box-shadow: 3px 3px 0 var(--br-border-dark);
}

.badge-coral {
  color: var(--clr-primary);
}

.badge-lavender {
  color: var(--clr-secondary);
}

.badge-mint {
  color: #16A34A;
}

.badge-yellow {
  color: #CA8A04;
}

/* Instagram Icon Image */
.icon-ig {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.btn .icon-ig {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.contact-item .icon-ig {
  width: 18px;
  height: 18px;
}

/* Hamburger & Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 3px;
  transition: var(--tr-base);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  text-align: center;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.mobile-nav .nav-link {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-heading);
  letter-spacing: -1.5px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.mobile-nav .nav-link:after {
  display: none;
  /* No underline in mobile menu overlay */
}

.mobile-nav .nav-link.active {
  color: var(--clr-primary);
  transform: scale(1.1);
}

.mobile-menu .btn-whatsapp {
  margin-top: auto;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow-sm);
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Footer - Premium Rework */
.footer {
  background: var(--clr-footer);
  color: var(--clr-white);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
  border-top: var(--brutal-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo span {
  transform: translateY(2px);
}

.footer-logo span .text-primary {
  color: var(--clr-primary);
}

.brand-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: var(--fs-base);
  max-width: 350px;
}

.footer-col h4 {
  color: var(--clr-white);
  font-size: var(--fs-lg);
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--clr-primary);
  transform: translateX(5px);
  display: inline-block;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: var(--fs-base);
}

.contact-item i {
  color: var(--clr-primary);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-item .label-pink {
  color: var(--clr-primary);
  font-weight: 800;
  margin-right: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col.brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.brand {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .navbar .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Floating Actions */
.fab-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.wa-float,
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.wa-float.visible,
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-float {
  background: #25D366;
  color: white;
}

.back-to-top {
  background: white;
  color: var(--clr-primary);
}

.wa-float:hover,
.back-to-top:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--br-border-dark);
}