@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --blue: #1a3fa6;
  --blue-dark: #0e2870;
  --blue-light: #2e5ce8;
  --red: #d42020;
  --red-dark: #a61515;
  --yellow: #f5c800;
  --yellow-dark: #d4a800;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --gray: #e8eaf0;
  --gray-mid: #9ea3b5;
  --text: #1a1f36;
  --text-light: #5a6070;
  --shadow: 0 4px 24px rgba(26,63,166,0.10);
  --shadow-hover: 0 8px 34px rgba(26,63,166,0.18);
  --radius: 8px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gray);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(26,63,166,0.12);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo img {
  width: 258px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 10px rgba(26,63,166,0.16));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: rgba(26,63,166,0.07);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-whatsapp-nav {
  display: flex; align-items: center; gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(37,211,102,0.30);
}
.btn-whatsapp-nav:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
}
.btn-whatsapp-nav svg { width: 18px; height: 18px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08) 0 12%, transparent 12% 18%, rgba(245,200,0,0.12) 18% 22%, transparent 22%),
    linear-gradient(135deg, #081f5c 0%, var(--blue) 46%, #1f66d9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 84px;
}
.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 72%;
  height: 160px;
  right: -18%;
  top: 16%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(-12deg);
}
.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 68%;
  height: 92px;
  left: -18%;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(245,200,0,0.18), transparent);
  transform: rotate(10deg);
}
.rainbow-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff2222, #ff7700, #ffdd00, #22cc44, #1199ff, #8833ff, #ff2299);
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text {
  color: white;
  grid-column: 1;
  grid-row: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.18);
  border: 1px solid rgba(245,200,0,0.4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '★';
  font-size: 11px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,200,0,0.35);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245,200,0,0.50);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  grid-column: 1;
  grid-row: 2;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 590px;
  isolation: isolate;
  grid-column: 2;
  grid-row: 1 / span 2;
}
.mascot-stage {
  position: relative;
  z-index: 2;
  width: min(500px, 92vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: mascotTravel 5.2s ease-in-out infinite;
}
.mascot-walker {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0,0,0,0.34));
  transform-origin: 50% 92%;
  animation: mascotStep 0.9s ease-in-out infinite;
  will-change: transform;
}
.mascot-shadow {
  position: absolute;
  left: 18%;
  right: 14%;
  bottom: 10px;
  height: 22px;
  background: rgba(2,8,26,0.28);
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  animation: mascotShadow 0.9s ease-in-out infinite;
}
@keyframes mascotTravel {
  0%, 100% { transform: translateX(-18px); }
  50% { transform: translateX(18px); }
}
@keyframes mascotStep {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  25% { transform: translateY(-10px) rotate(1.2deg); }
  50% { transform: translateY(0) rotate(1deg); }
  75% { transform: translateY(-7px) rotate(-1deg); }
}
@keyframes mascotShadow {
  0%, 100% { transform: scaleX(1); opacity: 0.28; }
  25%, 75% { transform: scaleX(0.86); opacity: 0.2; }
}
.hero-glow {
  position: absolute;
  width: 420px; height: 86px;
  background: rgba(245,200,0,0.24);
  border-radius: 50%;
  bottom: 36px;
  filter: blur(24px);
  z-index: 0;
}
.paint-trail {
  position: absolute;
  z-index: 1;
  right: -4%;
  top: 22%;
  width: min(540px, 88vw);
  height: 210px;
  pointer-events: none;
  transform: rotate(-7deg);
  opacity: 0.94;
}
.paint-trail span {
  position: absolute;
  left: 0;
  right: 0;
  height: 26px;
  border-radius: 999px;
  transform-origin: left center;
  animation: paintPulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.16));
}
.paint-trail span:nth-child(1) { top: 24px; background: #f5c800; transform: scaleX(0.98); }
.paint-trail span:nth-child(2) { top: 66px; background: #d42020; transform: scaleX(0.88); animation-delay: .12s; }
.paint-trail span:nth-child(3) { top: 108px; background: #16b957; transform: scaleX(0.76); animation-delay: .24s; }
.paint-trail span:nth-child(4) { top: 150px; background: #17a8ff; transform: scaleX(0.64); animation-delay: .36s; }
@keyframes paintPulse {
  0%, 100% { clip-path: polygon(0 22%, 100% 0, 100% 82%, 0 100%); opacity: .78; }
  50% { clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 78%); opacity: 1; }
}

/* ===== SECTION BASE ===== */
section { padding: 80px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-badge {
  display: inline-block;
  background: rgba(26,63,166,0.08);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-title span.red { color: var(--red); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.6;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BRANDS STRIP ===== */
.brands-strip {
  background: var(--gray-light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 28px 0;
}
.brands-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brands-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--gray);
}
.brands-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-pill {
  background: white;
  border: 1.5px solid var(--gray);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.brand-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: white;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,63,166,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--blue);
}
.service-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about { background: var(--gray-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-image-wrap img {
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(26,63,166,0.15));
}
.about-badge-float {
  position: absolute;
  bottom: 20px; right: 10px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.about-badge-text-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}
.about-badge-text-sub {
  font-size: 12px;
  color: var(--text-light);
}
.about-list { margin: 24px 0; list-style: none; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text);
}
.about-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px; height: 24px;
  background: rgba(26,63,166,0.1);
  color: var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

/* ===== PRODUCTS / MEDIA ===== */
.products { background: white; }
.products-tabs {
  display: flex;
  gap: 8px;
  background: var(--gray-light);
  padding: 8px;
  border-radius: 50px;
  margin: 32px auto;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 12px rgba(26,63,166,0.25);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Media Gallery */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.media-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
  aspect-ratio: 16/10;
  position: relative;
  cursor: pointer;
}
.media-item img, .media-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.media-item:hover img, .media-item:hover video {
  transform: scale(1.04);
}
.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,63,166,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.media-item:hover .media-overlay {
  background: rgba(26,63,166,0.35);
}
.media-overlay-icon {
  width: 52px; height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.media-item:hover .media-overlay-icon {
  opacity: 1;
  transform: scale(1);
}
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: var(--gray-light);
  border: 2px dashed var(--gray);
  border-radius: var(--radius);
  color: var(--gray-mid);
  font-size: 15px;
  font-weight: 600;
  gap: 12px;
  margin-top: 24px;
}
.media-placeholder .upload-icon { font-size: 36px; opacity: 0.5; }

/* Upload btn */
.btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-upload:hover {
  background: var(--blue);
  color: white;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--gray-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.star { color: #f5a623; font-size: 18px; }
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}
.review-author-name { font-weight: 800; font-size: 15px; color: var(--text); }
.review-author-sub { font-size: 12px; color: var(--text-light); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.google-rating-big {
  font-size: 14px;
  color: var(--text-light);
}
.google-rating-num {
  font-size: 22px;
  font-weight: 900;
  color: #f5a623;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text .section-title { color: white; }
.cta-text .section-subtitle { color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-wpp-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wpp-big:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ig:hover { transform: translateY(-2px); opacity: 0.9; }

/* ===== LOCATION ===== */
.location { background: white; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray);
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; font-weight: 800; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-value a { color: var(--blue); text-decoration: none; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  border: 2px solid var(--gray);
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== ONLINE STORE ===== */
.loja { background: var(--gray-light); }
.loja-construction {
  background: white;
  border-radius: var(--radius);
  border: 2px dashed var(--blue);
  padding: 64px 32px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
}
.loja-icon { font-size: 64px; margin-bottom: 20px; }
.loja-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.loja-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.btn-notify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-notify:hover { background: var(--blue-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img {
  width: 240px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-dev-signature {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.01em;
}
.footer-dev-signature strong {
  color: var(--yellow);
  font-weight: 900;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  font-size: 26px;
}
.float-btn:hover { transform: scale(1.1); }
.float-wpp { background: #25D366; }
.float-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.float-label {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn-wrap { position: relative; display: flex; align-items: center; }
.float-btn-wrap:hover .float-label { opacity: 1; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-media {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 110px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  font-size: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===== ADMIN PANEL LINK ===== */
.admin-link-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: var(--transition);
}
.admin-link-footer:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 34px; padding-top: 44px; }
  .hero-text, .hero-image, .hero-stats { grid-column: 1; grid-row: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-image { min-height: 430px; }
  .mascot-stage { width: min(390px, 78vw); }
  .paint-trail { width: min(420px, 82vw); height: 160px; top: 16%; right: 4%; }
  .paint-trail span { height: 20px; }
  .paint-trail span:nth-child(1) { top: 18px; }
  .paint-trail span:nth-child(2) { top: 50px; }
  .paint-trail span:nth-child(3) { top: 82px; }
  .paint-trail span:nth-child(4) { top: 114px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { max-height: 520px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: white;
    padding: 20px;
    border-bottom: 2px solid var(--gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .hamburger { display: flex; }
  section { padding: 60px 0; }
  .nav-logo img { width: 205px; height: 76px; }
  .hero { min-height: auto; }
  .hero-container { padding: 42px 20px 58px; }
  .hero-image { min-height: 295px; margin-top: -44px; }
  .mascot-stage { width: min(300px, 80vw); animation-duration: 4.4s; }
  .paint-trail { width: min(330px, 86vw); top: 10%; right: 0; opacity: .72; }
  .hero-glow { width: 290px; bottom: 24px; }
  .hero-stats { margin-top: 0; padding-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .btn-whatsapp-nav { display: none; }
  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 16px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .products-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 10px 12px; }
  .floating-btns { bottom: 18px; right: 18px; }
  .float-btn { width: 52px; height: 52px; }
  .scroll-top { bottom: 100px; right: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge-float { position: static; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-stage,
  .mascot-walker,
  .mascot-shadow,
  .paint-trail span,
  .fade-in {
    animation: none !important;
    transition: none !important;
  }
}
