/* ============================================
   24 TONS — style.css
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg-dark:    #0d0d0f;
  --bg-section: #111115;
  --bg-card:    #1a1a22;
  --bg-card-2:  #1f1f2a;

  --text-primary:   #f0f0f5;
  --text-secondary: #9a9ab0;
  --text-muted:     #5a5a72;

  --accent-1: hsl(15, 100%, 60%);   /* orange-red */
  --accent-2: hsl(45, 100%, 55%);   /* golden yellow */
  --accent-3: hsl(270, 80%, 65%);   /* violet */

  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;

  --shadow-glow: 0 0 60px rgba(255, 120, 30, 0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  display: none !important;
}
html { 
  scroll-behavior: smooth; 
  scrollbar-width: none !important;
}

.custom-scroll-container {
  position: fixed;
  right: 12px;
  top: 60px; /* Start below header to avoid logo overlap */
  bottom: 40px;
  width: 54px; /* Slightly reduced width to be less bulky */
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.scroll-drip-top {
  width: 30px;
  height: 30px;
  margin-bottom: -2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.scroll-drip-top svg {
  width: 100%;
  height: 100%;
}

.custom-scroll-track {
  flex: 1;
  width: 30px; /* Track width reduced from 38px */
  position: relative;
  /* Allow the thumb to overflow this track visually */
  overflow: visible;
}

.custom-scroll-track-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15); /* Faint track background */
  box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border outline */
  /* Splatter shape mask applied only to background, leaving track unmasked */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2020%20100'%20xmlns='http://www.w3.org/2000/svg'%20preserveAspectRatio='none'%3E%3Cpath%20d='M9%200%20C12%205,%205%2015,%2013%2025%20C6%2035,%2014%2045,%208%2055%20C12%2065,%206%2075,%2014%2085%20C8%2092,%2012%20100,%2010%20100%20L12%20100%20C13%2092,%209%2085,%2015%2075%20C10%2065,%2015%2055,%209%2045%20C15%2035,%207%2025,%2013%2015%20C8%205,%2011%200,%2010%200%20Z'%20fill='black'/%3E%3Cellipse%20cx='3'%20cy='18'%20rx='2.2'%20ry='3.5'%20fill='black'/%3E%3Cellipse%20cx='17'%20cy='38'%20rx='2.5'%20ry='4'%20fill='black'/%3E%3Cellipse%20cx='4'%20cy='62'%20rx='1.8'%20ry='3'%20fill='black'/%3E%3Cellipse%20cx='18'%20cy='78'%20rx='2.8'%20ry='4.5'%20fill='black'/%3E%3Cellipse%20cx='2'%20cy='90'%20rx='1.5'%20ry='2.5'%20fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2020%20100'%20xmlns='http://www.w3.org/2000/svg'%20preserveAspectRatio='none'%3E%3Cpath%20d='M9%200%20C12%205,%205%2015,%2013%2025%20C6%2035,%2014%2045,%208%2055%20C12%2065,%206%2075,%2014%2085%20C8%2092,%2012%20100,%2010%20100%20L12%20100%20C13%2092,%209%2085,%2015%2075%20C10%2065,%2015%2055,%209%2045%20C15%2035,%207%2025,%2013%2015%20C8%205,%2011%200,%2010%200%20Z'%20fill='black'/%3E%3Cellipse%20cx='3'%20cy='18'%20rx='2.2'%20ry='3.5'%20fill='black'/%3E%3Cellipse%20cx='17'%20cy='38'%20rx='2.5'%20ry='4'%20fill='black'/%3E%3Cellipse%20cx='4'%20cy='62'%20rx='1.8'%20ry='3'%20fill='black'/%3E%3Cellipse%20cx='18'%20cy='78'%20rx='2.8'%20ry='4.5'%20fill='black'/%3E%3Cellipse%20cx='2'%20cy='90'%20rx='1.5'%20ry='2.5'%20fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
}

.custom-scroll-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  background: linear-gradient(180deg, 
    hsl(15, 100%, 60%) 0%, 
    hsl(45, 100%, 55%) 30%, 
    hsl(140, 70%, 45%) 60%, 
    hsl(220, 80%, 50%) 80%, 
    hsl(270, 80%, 65%) 100%
  );
  box-shadow: 0 0 10px rgba(255, 100, 30, 0.3);
  /* Apply the same matching mask layout for alignment */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2020%20100'%20xmlns='http://www.w3.org/2000/svg'%20preserveAspectRatio='none'%3E%3Cpath%20d='M9%200%20C12%205,%205%2015,%2013%2025%20C6%2035,%2014%2045,%208%2055%20C12%2065,%206%2075,%2014%2085%20C8%2092,%2012%20100,%2010%20100%20L12%20100%20C13%2092,%209%2085,%2015%2075%20C10%2065,%2015%2055,%209%2045%20C15%2035,%207%2025,%2013%2015%20C8%205,%2011%200,%2010%200%20Z'%20fill='black'/%3E%3Cellipse%20cx='3'%20cy='18'%20rx='2.2'%20ry='3.5'%20fill='black'/%3E%3Cellipse%20cx='17'%20cy='38'%20rx='2.5'%20ry='4'%20fill='black'/%3E%3Cellipse%20cx='4'%20cy='62'%20rx='1.8'%20ry='3'%20fill='black'/%3E%3Cellipse%20cx='18'%20cy='78'%20rx='2.8'%20ry='4.5'%20fill='black'/%3E%3Cellipse%20cx='2'%20cy='90'%20rx='1.5'%20ry='2.5'%20fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2020%20100'%20xmlns='http://www.w3.org/2000/svg'%20preserveAspectRatio='none'%3E%3Cpath%20d='M9%200%20C12%205,%205%2015,%2013%2025%20C6%2035,%2014%2045,%208%2055%20C12%2065,%206%2075,%2014%2085%20C8%2092,%2012%20100,%2010%20100%20L12%20100%20C13%2092,%209%2085,%2015%2075%20C10%2065,%2015%2055,%209%2045%20C15%2035,%207%2025,%2013%2015%20C8%205,%2011%200,%2010%200%20Z'%20fill='black'/%3E%3Cellipse%20cx='3'%20cy='18'%20rx='2.2'%20ry='3.5'%20fill='black'/%3E%3Cellipse%20cx='17'%20cy='38'%20rx='2.5'%20ry='4'%20fill='black'/%3E%3Cellipse%20cx='4'%20cy='62'%20rx='1.8'%20ry='3'%20fill='black'/%3E%3Cellipse%20cx='18'%20cy='78'%20rx='2.8'%20ry='4.5'%20fill='black'/%3E%3Cellipse%20cx='2'%20cy='90'%20rx='1.5'%20ry='2.5'%20fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
}

.custom-scroll-thumb {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 50px; /* Reduced thumb width for more subtle 3D overlap over the 30px track */
  height: 75px; /* Maintains 2:3 aspect ratio matching the SVG (40x60 viewBox) */
  transform: translate(-50%, -18.3%); /* Vertically centers the roller cover cylinder on the paint fill line */
  cursor: grab;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  transition: transform 0.15s ease;
  will-change: top;
}

.custom-scroll-thumb:hover {
  transform: translate(-50%, -18.3%) scale(1.1);
}

.scroll-brush-svg {
  width: 100%;
  height: 100%;
}

body.grabbing,
body.grabbing * {
  cursor: grabbing !important;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: transparent; /* transparent at the top to let hero image peek through */
  border-bottom: 1px solid rgba(255, 255, 255, 0); /* transparent border initially */
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tintas {
  background: linear-gradient(
    90deg,
    hsl(0,   90%, 62%),
    hsl(30,  95%, 58%),
    hsl(55,  95%, 55%),
    hsl(130, 70%, 50%),
    hsl(200, 85%, 55%),
    hsl(270, 75%, 60%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links .nav-cta {
  background: linear-gradient(135deg, #f37021 0%, #f58220 100%);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(243, 112, 33, 0.25);
}
.nav-links .nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-image: radial-gradient(ellipse at 18% 38%, rgba(13, 13, 15, 0.95) 0%, rgba(13, 13, 15, 0.8) 28%, transparent 68%), url('hero-bg.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
  background-size: 100% 100%, auto 100%;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Aspect-ratio locked container removed. Hero now uses dynamic HTML content centering */
.hero-container-inner {
  width: 100%;
  max-width: 100%;
  padding: 140px 4% 0 8%; /* 140px padding-top to start below navbar and align at the top */
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* top align */
  height: 100%;
}

#heroContent {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  padding-top: 0; /* padding handled by parent wrapper */
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-1);
  text-transform: uppercase;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}

.highlight-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 580px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s ease forwards;
}

.hero-btn-real {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

/* Button 1: Solicitar Orçamento */
.hero-btn-real.btn-solicitar {
  background: linear-gradient(135deg, #f37021 0%, #e67e22 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(243, 112, 33, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-real.btn-solicitar:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f58220 0%, #f37021 100%);
  box-shadow: 0 8px 30px rgba(243, 112, 33, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-btn-real.btn-solicitar:active {
  transform: translateY(-1px) scale(0.97);
}

.hero-btn-real.btn-solicitar .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.hero-btn-real.btn-solicitar:hover .btn-icon {
  transform: scale(1.15);
}

/* Button 2: Conheça a Loja */
.hero-btn-real.btn-conhecer {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-real.btn-conhecer:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hero-btn-real.btn-conhecer:active {
  transform: translateY(-1px) scale(0.97);
}

.hero-btn-real.btn-conhecer .btn-icon.arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-real.btn-conhecer:hover .btn-icon.arrow {
  transform: translateX(5px);
}

.btn-icon {
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wheelSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile responsive layout overrides */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    align-items: flex-start;
    min-height: auto;
    height: auto;
    padding-bottom: 80px;
    background-image: linear-gradient(to bottom, rgba(13, 13, 15, 0.85) 0%, rgba(13, 13, 15, 0.7) 50%, rgba(13, 13, 15, 0.9) 100%), url('HERO.jpeg');
  }
  
  #heroContent {
    gap: 20px;
    padding-top: 20px;
  }
  
  .hero-title {
    letter-spacing: -1px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
  }
  
  .hero-btn-real {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollHintFadeIn 0.8s 1.4s forwards;
  transition: opacity var(--transition);
  pointer-events: none;
}

@keyframes scrollHintFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-hint-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.85;
  white-space: nowrap;
}

.scroll-hint-icon {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse-wheel {
  display: block;
  width: 3px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 1.5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
  animation: scrollWheelAnim 1.6s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollWheelAnim {
  0% {
    top: 6px;
    opacity: 0;
    height: 2px;
  }
  20% {
    opacity: 1;
    height: 6px;
  }
  80% {
    top: 20px;
    opacity: 0;
    height: 2px;
  }
  100% {
    top: 6px;
    opacity: 0;
    height: 2px;
  }
}

/* ============================================
   FLOATING CAN (post-scroll)
   ============================================ */
.floating-can {
  position: fixed;
  bottom: 32px;
  left: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(26, 26, 34, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px 20px 14px;
  gap: 10px;
  cursor: pointer;
  box-shadow: none;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-can.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-can__logo {
  width: 72px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}

.floating-can:hover .floating-can__logo { transform: scale(1.08); }

.floating-can__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-can::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,120,30,0.3), rgba(255,200,50,0.2), rgba(100,80,255,0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}
.floating-can:hover::after { opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), opacity var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #f37021 0%, #f58220 100%);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(243, 112, 33, 0.35);
}
.btn--primary:hover { 
  box-shadow: 0 8px 32px rgba(243, 112, 33, 0.5); 
  opacity: 0.95;
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff !important;
}
.btn--ghost:hover { 
  background: rgba(255, 255, 255, 0.1); 
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary);
}
.btn--outline:hover { 
  border-color: var(--text-secondary); 
  color: var(--text-primary); 
  background: rgba(255, 255, 255, 0.05);
}

.btn--white {
  background: #fff;
  color: #111;
}
.btn--white:hover { box-shadow: 0 8px 32px rgba(255,255,255,0.2); }

.full-width { width: 100%; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: 120px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-1);
  background: rgba(255, 100, 30, 0.12);
  border: 1px solid rgba(255, 100, 30, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.centered { text-align: center; }

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 60px;
}
.section-sub.centered { text-align: center; }

/* ============================================
   SOBRE
   ============================================ */
.sobre { background: var(--bg-section); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.timeline-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.timeline-tabs::-webkit-scrollbar {
  display: none;
}

.timeline-tab {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.timeline-tab::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.timeline-tab.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-tab.active::after {
  transform: scaleX(1);
}

.timeline-tab:hover {
  color: var(--text-primary);
}

.timeline-content {
  position: relative;
  min-height: 180px;
  margin-bottom: 32px;
}

.timeline-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.timeline-pane.active {
  display: block;
}

.timeline-pane-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-pane p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* About Name Card */
.about-name-card {
  position: relative;
  background: rgba(26, 26, 34, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-name-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 100, 30, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-name-card-content {
  position: relative;
  z-index: 2;
}

.about-name-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(255, 200, 50, 0.1);
  border: 1px solid rgba(255, 200, 50, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.name-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.name-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.name-part {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.name-part-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-1);
  line-height: 1;
  min-width: 60px;
  width: max-content;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.name-part-desc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.name-part-desc span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: block;
}

.name-clarification {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.mini-wheel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.mini-wheel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-wheel svg {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  animation: wheelSpin 30s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255,120,30,0.25));
}

/* ============================================
   PRODUTOS
   ============================================ */
.produtos { background: var(--bg-dark); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.produto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity var(--transition);
}

.produto-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.produto-card:hover::before { opacity: 1; }

.produto-card.featured {
  background: linear-gradient(145deg, hsl(270,30%,15%), hsl(270,25%,12%));
  border-color: hsl(270,60%,40%);
  box-shadow: 0 8px 40px rgba(120,80,220,0.2);
}
.produto-card.featured::before { opacity: 1; background: linear-gradient(90deg, hsl(270,75%,60%), hsl(300,70%,60%)); }

.produto-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, hsl(270,75%,60%), hsl(300,70%,60%));
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
}

.produto-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.produto-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.produto-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.produto-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.produto-card ul li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.produto-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-weight: 700;
}

/* ============================================
   TECNOLOGIA & EQUIPAMENTOS
   ============================================ */
.tecnologia { background: var(--bg-section); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.tech-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity var(--transition);
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 100, 30, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.tech-card-badge {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.tech-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tech-card-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
  flex: 1;
}

.tech-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.tech-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-weight: 700;
}

.tech-card-action {
  margin-top: 16px;
}

.tech-card-action .btn {
  width: 100%;
}

/* Featured Tech Card (AlinhaPro 24T) */
.tech-card.featured {
  background: linear-gradient(145deg, hsl(15, 25%, 14%), hsl(15, 20%, 11%));
  border-color: rgba(255, 100, 30, 0.35);
  box-shadow: 0 12px 40px rgba(255, 100, 30, 0.12);
}

.tech-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.tech-card.featured .tech-card-badge {
  background: rgba(255, 100, 30, 0.12);
  border-color: rgba(255, 100, 30, 0.3);
  color: var(--accent-1);
}

.tech-card.featured .tech-card-glow {
  background: radial-gradient(circle at 50% 100%, rgba(255, 100, 30, 0.1), transparent 70%);
}

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

/* ======= BRANDS INFINITE MARQUEE SLIDER ======= */
.brands-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background: var(--bg-dark);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-marquee-section::before,
.brands-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.brands-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.brands-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.brands-marquee-track {
  display: flex;
  width: 100%;
}

.brands-marquee-list {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.brands-marquee-group {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  align-items: center;
}

.brand-badge-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  cursor: default;
  white-space: nowrap;
}

.brand-badge-item:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

.brand-badge-item.featured {
  color: var(--text-primary);
  border-color: rgba(255, 100, 30, 0.25);
  background: rgba(255, 100, 30, 0.06);
}

.brand-badge-item.featured:hover {
  border-color: var(--accent-1);
  background: rgba(255, 100, 30, 0.12);
  box-shadow: 0 0 20px rgba(255, 100, 30, 0.15);
}

/* ============================================
   PALETA DE CORES (24 swatches)
   ============================================ */
.section.cores {
  background: var(--bg-dark);
  padding-bottom: 40px;
}

.palette-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.swatch {
  background: var(--c);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
}

.swatch:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.15);
  z-index: 10;
}

.swatch-tooltip {
  position: fixed;
  background: rgba(26,26,34,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 9999;
  white-space: nowrap;
}

.swatch-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.swatch-tooltip strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.swatch-tooltip span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.cores-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cores-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.cores-cta p strong { color: var(--text-primary); }

.cores-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cores-cta-main {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.cores-digital-tools {
  margin-bottom: 12px;
}

.cores-digital-tools h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  /* Overlay the seamless paint stipple texture on top of the original 3-color gradient, blending them */
  background-image: 
    url('paint_roller_texture.png?v=1'), 
    linear-gradient(135deg,
      hsl(15, 90%, 22%) 0%,
      hsl(270, 60%, 18%) 50%,
      hsl(210, 80%, 18%) 100%
    );
  background-size: 250px 250px, cover; /* Repeats the stipple pattern while stretching the gradient */
  background-repeat: repeat, no-repeat;
  background-blend-mode: overlay; /* Embosses the stipple details onto the color gradient */
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Restored the subtle warm central glow overlay from before */
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255,120,30,0.12), transparent 70%);
}

.cta-banner__content {
  position: relative;
  text-align: center;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-banner__content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ============================================
   CONTATO
   ============================================ */
.contato { 
  background: var(--bg-dark); 
  position: relative;
  overflow: hidden;
}

/* Glassmorphism backdrop glow blobs */
.contato::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 100, 30, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.contato::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 80, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.contato .container {
  position: relative;
  z-index: 2; /* Force content to sit on top of glowing blobs */
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 60px;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05); /* White translucent frosted glass background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Faint baseline glass border */
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), border-color var(--transition);
}

/* Offset backglow card layer (matching the orange bottom-card offset and glow visual from the Tailwind model) */
.info-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, 
    rgba(255, 100, 30, 0.3) 0%, 
    rgba(255, 200, 50, 0.25) 50%, 
    rgba(100, 80, 255, 0.25) 100%
  );
  border-radius: inherit;
  filter: blur(16px);
  z-index: -1;
  opacity: 0.65;
  transition: opacity var(--transition), transform var(--transition);
}

/* Specular diagonal gradient highlight border (matching the absolute top border overlay mask from the Tailwind model) */
.info-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-mask-image: linear-gradient(135deg, white, transparent 55%);
  mask-image: linear-gradient(135deg, white, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.info-item:hover { 
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}
.info-item:hover::before {
  transform: scale(1.03) translate(2px, 2px);
  opacity: 0.85;
}

.info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 100, 30, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.info-item span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Form */
.contato-form {
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.05); /* White translucent frosted glass background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Faint baseline glass border */
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Offset backglow card layer for the form */
.contato-form::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg, 
    rgba(255, 100, 30, 0.25) 0%, 
    rgba(255, 200, 50, 0.2) 50%, 
    rgba(100, 80, 255, 0.2) 100%
  );
  border-radius: inherit;
  filter: blur(28px);
  z-index: -1;
  opacity: 0.55;
}

/* Specular diagonal gradient highlight border for the form */
.contato-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-mask-image: linear-gradient(135deg, white, transparent 55%);
  mask-image: linear-gradient(135deg, white, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02); /* Very subtle translucent input background */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-1);
  background: rgba(255, 100, 30, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-sub {
  font-style: italic;
  font-size: 0.8rem !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .palette-showcase { grid-template-columns: repeat(8, 1fr); grid-template-rows: 1fr 1fr 1fr; }
}
/* ======= PAINT CARDS INFINITE MARQUEE SLIDER ======= */
.paint-slider-section {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 20px;
  background: #0b0b0d; /* Match the dark site background */
  position: relative;
}

/* Elegant transparent overlays on edges for smooth fading */
.paint-slider-section::before,
.paint-slider-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.paint-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0d, transparent);
}
.paint-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0d, transparent);
}

.paint-slider-track {
  display: flex;
  width: 100%;
}

.paint-slider-list {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.paint-slider-group {
  display: flex;
  gap: 30px;
  padding-right: 30px; /* Crucial for seamless alignment of loops */
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Premium Minimalist Card Design (similar layout to the Suvinil design, white styling but dark-themed for integration) */
.paint-card {
  flex-shrink: 0;
  width: 240px;
  background: #121214; /* Dark premium background matching site elements */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.paint-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.paint-card svg,
.paint-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.paint-card:hover svg,
.paint-card:hover img {
  transform: scale(1.05) rotate(2deg);
}

.paint-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0 0 14px 0;
  font-weight: 600;
  line-height: 1.3;
}

.paint-card-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}

.paint-card-tags span {
  font-size: 0.72rem;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a0a0ab;
  border-radius: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { letter-spacing: -1px; }

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

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

  .contato-form { padding: 24px; }

  .palette-showcase { grid-template-columns: repeat(6, 1fr); grid-template-rows: 1fr 1fr 1fr 1fr; }

  .stats-row { gap: 24px; }

  .section { padding: 80px 0; }

  .floating-can {
    bottom: 16px;
    right: 16px;
    padding: 12px 14px 10px;
  }
  .floating-can svg { width: 60px; }
}

@media (max-width: 480px) {
  .palette-showcase { grid-template-columns: repeat(4, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  
  .social-networks-box {
    padding: 16px 12px;
  }
  .social-icons-row {
    gap: 12px;
  }
  .social-btn {
    width: 46px;
    height: 46px;
  }
  .social-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   CLIENT INFO & SOCIAL MEDIA ADDITIONS
   ============================================ */
.sobre-highlight {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: var(--text-primary) !important;
  margin-bottom: 24px !important;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-1);
}

.social-networks-box {
  margin-top: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-networks-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icons-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.social-btn svg {
  width: 24px;
  height: 24px;
}

.social-btn:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: rgba(255, 100, 30, 0.1);
  box-shadow: 0 5px 15px rgba(255, 100, 30, 0.2);
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin: 16px 0;
}

.footer-social-link {
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-social-link:hover {
  color: var(--accent-1);
  transform: translateY(-2px);
}

/* ============================================
   HOURS GRID
   ============================================ */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
}

.hours-day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  width: 28px;
  flex-shrink: 0;
}

.hours-dot {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.12) 0px,
    rgba(255,255,255,0.12) 3px,
    transparent 3px,
    transparent 7px
  );
}

.hours-time {
  color: var(--text-secondary);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.hours-row--highlight .hours-day,
.hours-row--highlight .hours-time {
  color: var(--accent-2);
}

.hours-row--highlight .hours-dot {
  background: repeating-linear-gradient(
    to right,
    rgba(255, 200, 50, 0.25) 0px,
    rgba(255, 200, 50, 0.25) 3px,
    transparent 3px,
    transparent 7px
  );
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
  color: var(--text-muted);
  opacity: 0.55;
}

/* ============================================
   TIKTOK SECTION
   ============================================ */

.section.tiktok-section {
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}

.tiktok-row-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 2.5rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tiktok-row-wrapper::-webkit-scrollbar { display: none; }

.tiktok-row {
  display: flex;
  gap: 1.25rem;
  padding: 0 max(2rem, calc((100vw - 1200px) / 2));
  width: max-content;
  margin: 0 auto;
}

.tiktok-card {
  position: relative;
  width: 220px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 0 transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tiktok-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.14),
    0 0 25px hsl(var(--tk-hue), 80%, 50%, 0.35);
}

/* Cover background */
.tiktok-card__bg {
  position: absolute;
  inset: 0;
  background-color: #0c0822;
  transition: transform var(--transition);
}

/* Podcast Cover Design */
.podcast-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1642 0%, #0c0822 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  transition: background 0.3s ease;
}

.tiktok-card:hover .podcast-cover {
  background: linear-gradient(135deg, #221c52 0%, #100b2b 100%);
}

.podcast-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-20px); /* Lift slightly to balance with the glassmorphism panel at the bottom */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tiktok-card:hover .podcast-logo-group {
  transform: translateY(-20px) scale(1.05);
}

.podcast-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.podcast-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.podcast-logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.podcast-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  margin-top: 2px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Overlay content layer */
.tiktok-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
}

/* Category badge at top */
.tiktok-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: hsl(var(--tk-hue), 70%, 45%);
  box-shadow: 0 2px 12px hsl(var(--tk-hue), 80%, 40%, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid hsl(var(--tk-hue), 60%, 55%, 0.3);
}

/* Play button centered */
.tiktok-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition), background var(--transition);
  margin: auto 0;
}

.tiktok-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.tiktok-card:hover .tiktok-play-btn {
  transform: scale(1.15);
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.45);
}

/* Bottom glassmorphism info panel */
.tiktok-card__info {
  width: 100%;
  margin-top: auto;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 14px 14px 16px;
}

.tiktok-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

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

.tiktok-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  font-weight: 600;
}

.tiktok-logo-badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.tiktok-card__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: hsl(var(--tk-hue), 75%, 65%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.tiktok-card:hover .tiktok-card__label {
  color: hsl(var(--tk-hue), 80%, 75%);
}

.tiktok-follow-cta {
  display: flex;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 1rem;
}

.btn--tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn--tiktok:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* ============================================
   AVALIAÇÕES SECTION
   ============================================ */

.avaliacoes {
  background: var(--bg-section);
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.avaliacao-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.avaliacao-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--accent-1);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.avaliacao-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 120, 30, 0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255, 120, 30, 0.08);
}

.avaliacao-stars {
  display: flex;
  gap: 0.2rem;
}

.avaliacao-stars span {
  color: #fbbf24;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

.avaliacao-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.avaliacao-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.avaliacao-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--av-color, hsl(15, 80%, 55%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.avaliacao-author > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.avaliacao-author strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.avaliacao-author span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.avaliacao-google-icon {
  margin-left: auto;
  opacity: 0.85;
  flex-shrink: 0;
}

.avaliacoes-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.06) 0%, rgba(234, 67, 53, 0.06) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.avaliacoes-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.btn--google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  background: #fff;
  color: #3c3c3c;
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn--google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  background: #f8f8f8;
}

@media (max-width: 900px) {
  .avaliacoes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .tiktok-card {
    width: 180px;
    height: 320px;
  }
  .tiktok-card__badge {
    font-size: 0.6rem;
    padding: 4px 9px;
  }
  .tiktok-play-btn {
    width: 44px;
    height: 44px;
  }
  .tiktok-play-btn svg {
    width: 20px;
    height: 20px;
  }
  .tiktok-card__info {
    padding: 10px 10px 12px;
  }
  .tiktok-card__title {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }
  .tiktok-logo-badge {
    font-size: 0.58rem;
  }
  .tiktok-card__label {
    font-size: 0.6rem;
  }
  .podcast-logo-img {
    width: 38px;
    height: 38px;
  }
  .podcast-logo-main {
    font-size: 1.35rem;
  }
  .podcast-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.3em;
  }
  .podcast-logo-group {
    transform: translateY(-15px);
  }
  .tiktok-card:hover .podcast-logo-group {
    transform: translateY(-15px) scale(1.05);
  }
  .tiktok-row {
    padding: 0 1.25rem;
    gap: 1rem;
  }
}
