/* =========================================
   CCM AUTOMAÇÃƒO INDUSTRIAL - STYLE.CSS
   Design System: Industrial, Técnico, Sóbrio
   ========================================= */

/* -----------------------------------------
   1. CUSTOM PROPERTIES
   ----------------------------------------- */
:root {
  /* Cores primárias */
  --bg-primary: #F4F5F7;
  --bg-secondary: #FFFFFF;
  --bg-light: #FFFFFF;
  --accent-primary: #F2A900;
  --accent-secondary: #1565C0;
  --text-primary: #1A1A1A;
  --text-dark: #111111;
  --text-secondary: #64748B;

  /* Tipografia */
  --font-heading: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-body: 'Inter', 'Source Sans 3', sans-serif;

  /* Dimensões */
  --container-max: 1200px;
  --header-height: 80px;
  --header-height-scroll: 60px;

  /* Transições */
  --transition-fast: 200ms ease-out;
  --transition-base: 300ms ease-out;
  --transition-slow: 500ms ease-out;

  /* Bordas */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 4px 20px rgba(242, 169, 0, 0.15);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-border-bottom: rgba(0, 0, 0, 0.06);
  --glass-blur: 20px;
  --glass-saturate: 1.4;
}

/* -----------------------------------------
   2. RESET & BASE
   ----------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: #F0F1F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* -----------------------------------------
   3. TIPOGRAFIA
   ----------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.text-light {
  color: var(--text-primary);
}

.text-dark {
  color: var(--text-dark);
}

.accent-text {
  color: var(--accent-primary);
}

/* -----------------------------------------
   4. LAYOUT UTILITIES
   ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 80px;
}

.section-dark {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-primary);
}

.section-dark .section-subtitle {
  color: var(--text-secondary);
}

.section-mid {
  background: #2ecc71;
  color: #fff;
  padding: 2.5rem 0rem !important;
}

.section-mid h2,
.section-mid h3 {
  color: #fff;
}

.section-mid .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0px !important;
}

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

.section-produtos {
  position: relative;
}

.section-produtos::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background: url('../media/images/68362.jpg') center 30% / cover no-repeat;
  pointer-events: none;
}

.section-produtos .container {
  position: relative;
  z-index: 1;
}

.section-servicos {
  position: relative;
}

.section-servicos::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background: url('../media/images/71440.jpg') center 40% / cover no-repeat;
  pointer-events: none;
}

.section-servicos .container {
  position: relative;
  z-index: 1;
}

.section-center {
  text-align: center;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* -----------------------------------------
   5. BUTTONS
   ----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-dark);
  border-color: var(--accent-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--bg-secondary);
}

.btn-outline {
  background: transparent;
  color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

.btn-outline:hover {
  background: var(--accent-secondary);
  color: var(--text-primary);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* -----------------------------------------
   6. HEADER & NAVIGATION - GLASSMORPHISM PREMIUM
   ----------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Glass background --- */
.header-bg {
  position: absolute;
  inset: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-bottom: 1px solid transparent;
  transition: background 0.6s ease, border-color 0.6s ease;
  pointer-events: none;
}

.header.scrolled .header-bg {
  background: var(--glass-bg-scrolled);
  border-bottom-color: var(--glass-border-bottom);
}

/* --- Ambient glow overlay (mouse-following) --- */
.header-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.header.scrolled .header-ambient {
  opacity: 1;
}

.header-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.04) 0%, rgba(242, 169, 0, 0.02) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.1s ease-out, top 0.1s ease-out;
  will-change: left, top;
}

/* --- Subtle shimmer line across header --- */
.header-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.header.scrolled .header-shimmer {
  opacity: 1;
}

.header-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  animation: headerShimmer 6s ease-in-out infinite;
}

@keyframes headerShimmer {
  0% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
  100% { transform: translateX(-30%); }
}

/* --- Bottom border glow gradient --- */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 25%, rgba(242, 169, 0, 0.10) 50%, rgba(0, 0, 0, 0.04) 75%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.header.scrolled::after {
  opacity: 1;
}

.header.scrolled {
  height: var(--header-height-scroll);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 3;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- Logo --- */
.header-logo {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.header-logo img {
  height: 40px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.header.scrolled .header-logo img {
  height: 47px;
}

.header-logo-glow {
  position: absolute;
  inset: -20px -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  transform: scale(0.8);
}

.header-logo:hover .header-logo-glow {
  opacity: 1;
  transform: scale(1);
}

/* --- Navigation base --- */
.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  flex-direction: column;
  padding: 5.5rem 2rem 2rem;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-menu.open {
  display: flex;
  transform: translateX(0);
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* --- Nav link (desktop + mobile base) --- */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.02);
}

.nav-link-text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
  display: inline-block;
}

.nav-link:hover .nav-link-text {
  transform: translateY(-1px);
}

.nav-link.active .nav-link-text {
  color: var(--text-primary);
}

/* --- Nav indicator (underline) --- */
.nav-indicator {
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  margin-top: 3px;
  flex-shrink: 0;
}

.nav-link:hover .nav-indicator {
  width: 20px;
  box-shadow: 0 0 12px rgba(242, 169, 0, 0.15);
}

.nav-link.active .nav-indicator {
  width: 100%;
  box-shadow: 0 0 12px rgba(242, 169, 0, 0.2);
}

/* --- Chevron (mega trigger) --- */
.nav-chevron {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.nav-has-mega:hover .nav-chevron,
.nav-has-mega.open .nav-chevron {
  transform: rotate(180deg);
}

/* --- Mega-menu container --- */
.nav-has-mega {
  position: static;
}

.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-mega-trigger-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* --- Mega-menu dropdown --- */
.nav-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 0.75rem 1rem 0;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  transform-origin: top center;
}

.nav-has-mega:hover .nav-mega,
.nav-has-mega.open .nav-mega {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-mega-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* --- Mega-menu items --- */
.nav-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.35rem;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-mega-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 169, 0, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-mega-item:hover::before {
  opacity: 1;
}

.nav-mega-item:hover {
  background: rgba(0, 0, 0, 0.015);
}

.nav-mega-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.04);
}

.nav-mega-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.nav-mega-icon.residencial {
  background: rgba(242, 169, 0, 0.1);
  color: #F2A900;
}

.nav-mega-icon.industrial {
  background: rgba(21, 101, 192, 0.1);
  color: #1565C0;
}

.nav-mega-icon.media-tensao {
  background: rgba(0, 137, 123, 0.1);
  color: #00897B;
}

.nav-mega-item:hover .nav-mega-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nav-mega-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.nav-mega-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: color 0.25s ease, transform 0.3s ease;
}

.nav-mega-item:hover .nav-mega-title {
  color: var(--accent-primary);
  transform: translateX(2px);
}

.nav-mega-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* --- Mobile mega override --- */
.nav-mega-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease;
}

.nav-mega-mobile-trigger:hover {
  color: var(--text-primary);
}

.nav-mega-mobile-trigger .nav-chevron {
  transition: transform 0.3s ease;
}

.nav-mega-mobile-trigger.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-mega-mobile-items {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 1px solid rgba(242, 169, 0, 0.15);
  margin-left: 0.5rem;
}

.nav-mega-mobile-items.open {
  display: flex;
}

.nav-mega-mobile-items a {
  padding: 0.55rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-mega-mobile-items a:hover {
  color: var(--accent-primary);
}

/* --- CTA Button --- */
.nav-cta {
  display: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(242, 169, 0, 0.2);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.nav-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, 0.15) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.nav-cta:hover .nav-cta-shine {
  transform: translateX(100%);
}

/* --- Menu Toggle (Hamburger) --- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.menu-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.menu-toggle.open .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 22px;
}

.menu-toggle.open .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 22px;
}

/* -----------------------------------------
   7. HERO - PREMIUM CINEMATIC
   ----------------------------------------- */
:root {
  --hero-orange: rgb(227,138,48);
  --hero-orange-dark: rgb(190,110,30);
  --hero-orange-glow: rgba(227,138,48,0.15);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- Background --- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../media/images/bg-hero-2.webp') center 30% / cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(227,138,48,1) 0%, rgba(227,138,48,1) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.75) 100%);
  mix-blend-mode: multiply;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
  opacity: 0.5;
}

/* --- Particles canvas --- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* --- Floating geometric shapes --- */
.hero-floating {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  will-change: transform;
}

.hero-floating-shape-1 {
  top: 10%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgb(227,138,48), transparent 70%);
  animation: floatShape1 20s ease-in-out infinite;
}

.hero-floating-shape-2 {
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 30%;
  animation: floatShape2 25s ease-in-out infinite;
}

.hero-floating-shape-3 {
  top: 40%;
  left: 30%;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.03);
  border-radius: 0;
  transform: rotate(45deg);
  animation: floatShape3 18s ease-in-out infinite;
}

.hero-floating-shape-4 {
  bottom: 25%;
  right: 20%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(227,138,48,0.15);
  border-radius: 20%;
  animation: floatShape4 15s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, -40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -30px) rotate(180deg); }
}

@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) rotate(45deg) scale(1); }
  50% { transform: translate(-20px, 20px) rotate(225deg) scale(1.1); }
}

@keyframes floatShape4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -15px) rotate(90deg); }
}

/* --- Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-height);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* ===== MAIN CONTENT ===== */
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem 0.35rem 0.7rem;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(227,138,48,0.2);
  border-radius: 100px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(227,138,48);
  animation: badgeDot 2s ease-in-out infinite;
}

@keyframes badgeDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(227,138,48,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(227,138,48,0); }
}

.hero-badge span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Title --- */
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 0.05rem;
}

.hero-title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-title-line--highlight {
  background: linear-gradient(135deg, #fff 30%, rgb(255,200,120) 60%, rgb(227,138,48) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* --- Subtitle --- */
.hero-subtitle {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 1.75rem;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* --- Actions --- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  overflow: hidden;
  will-change: transform;
}

.hero-btn--primary {
  background: rgb(227,138,48);
  color: #fff;
  box-shadow: 0 4px 20px rgba(227,138,48,0.3);
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,138,48,0.4);
  background: rgb(235,155,60);
}

.hero-btn--primary:active {
  transform: translateY(0) scale(0.97);
}

.hero-btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.2) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.hero-btn--primary:hover .hero-btn-shine {
  transform: translateX(100%);
}

.hero-btn-icon {
  display: flex;
  transition: transform 0.35s ease;
}

.hero-btn--primary:hover .hero-btn-icon {
  transform: translateX(3px) rotate(-45deg);
}

.hero-btn--outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn--outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-btn--outline:active {
  transform: translateY(0) scale(0.97);
}

/* ===== SCHNEIDER CARD ===== */
.hero-card-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.15s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent, rgba(227,138,48,0.12), rgba(255,255,255,0.05), transparent, rgba(227,138,48,0.08), transparent);
  animation: cardGlow 6s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes cardGlow {
  to { transform: rotate(360deg); }
}

.hero-card-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 0;
  border: 1px solid rgba(227,138,48,0.15);
  pointer-events: none;
}

.hero-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 1;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.hero-card:hover .hero-card-image img {
  transform: scale(1.05);
}

.hero-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.hero-card-body {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateZ(30px);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(227,138,48,0.1);
  border: 1px solid rgba(227,138,48,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 0.3rem;
}

.hero-card-badge svg {
  color: rgb(227,138,48);
  flex-shrink: 0;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}

.hero-card-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-card-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(227,138,48);
  letter-spacing: 0.03em;
}

.hero-card-sep {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.1);
}

.hero-card-certified {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== STATS BAR ===== */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: rgb(227,138,48);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-suffix {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(227,138,48,0.7);
}

.hero-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.hero-stat--badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-stat--badge svg {
  color: rgb(227,138,48);
  flex-shrink: 0;
  opacity: 0.6;
}

.hero-stat--badge .hero-stat-label {
  color: rgba(255,255,255,0.7);
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0;
  animation: scrollFadeIn 1s 2s forwards;
}

.hero-scroll-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes scrollFadeIn {
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 900px) {
  .hero {
    min-height: 700px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }

  .hero-stats {
    margin-top: 3rem;
  }

  .hero-title-line {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-card-wrap {
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .hero-title-line {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
  }

  .hero-layout {
    gap: 4rem;
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: 720px;
    height: auto;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .hero-card-wrap {
    justify-content: center;
  }

  .hero-card {
    max-width: 340px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    max-width: 340px;
    padding: 1rem;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-particles {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 650px;
  }

  .hero-title-line {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-badge span {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .hero-btn {
    font-size: 0.7rem;
    padding: 0.6rem 1.15rem;
  }

  .hero-stats {
    padding: 0.75rem;
    gap: 0.15rem;
  }

  .hero-stat {
    padding: 0.35rem 0.75rem;
  }

  .hero-stat-number {
    font-size: 1.1rem;
  }

  .hero-floating {
    opacity: 0.3;
  }

  .hero-scroll {
    display: none;
  }
}

/* -----------------------------------------
   8. SOBRE - INTERACTIVE BRAND SHOWCASE
   ----------------------------------------- */
.sobre-section {
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.sobre-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background:
    radial-gradient(circle at 20% 50%, var(--accent-primary) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--accent-secondary) 0%, transparent 50%);
  animation: sobreBgDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sobreBgDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-2%, 1%);
  }
}

.sobre-section .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.sobre-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sobre-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  font-family: var(--font-heading);
  font-size:1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  border: 1px solid rgba(242, 169, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 1rem;
  background: rgba(242, 169, 0, 0.05);
}

.sobre-header h2 {
  margin-bottom: 0;
}

/* Main grid */
.sobre-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ======= LEGACY PANEL ======= */
.legacy-panel {
  position: relative;
  height: 100%;
}

.legacy-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.legacy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../media/images/68362.jpg') center 30% / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.legacy-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent, rgba(242, 169, 0, 0.15), rgba(21, 101, 192, 0.1), transparent, rgba(242, 169, 0, 0.15), transparent);
  animation: legacyGlowRotate 8s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

@keyframes legacyGlowRotate {
  to {
    transform: rotate(360deg);
  }
}

.legacy-card>*:not(.legacy-glow) {
  position: relative;
  z-index: 1;
}

/* Counter */
.legacy-counter-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.legacy-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #f5c542 40%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legacy-plus {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #f5c542 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legacy-certs {
 display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    align-content: flex-start;
    align-items: flex-start;
}

.legacy-certs img {
  max-width: 120px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.legacy-certs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.legacy-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-top: 0.15rem;
}

.legacy-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

/* Divider */
.legacy-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.legacy-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 169, 0, 0.3), transparent);
}

.legacy-divider svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  opacity: 0.5;
}

/* Interactive Timeline */
.legacy-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: transform 0.3s ease;
}

.tl-item:hover {
  transform: translateY(-3px);
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.tl-item:hover .tl-dot {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px rgba(242, 169, 0, 0.4);
}

.tl-item.active .tl-dot {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(242, 169, 0, 0.5);
  animation: tlDotPulse 2s ease-in-out infinite;
}

@keyframes tlDotPulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(242, 169, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 24px rgba(242, 169, 0, 0.7);
  }
}

.tl-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.tl-item:hover .tl-year,
.tl-item.active .tl-year {
  color: var(--accent-primary);
}

.tl-line {
  width: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Tooltip */
.tl-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.75rem;
  background: var(--accent-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.tl-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--accent-primary);
}

.tl-item:hover .tl-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ======= STORY BOARD ======= */
.story-board {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-paragraph {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-paragraph.visible {
  opacity: 1;
  transform: translateX(0);
}

.story-paragraph[data-delay="1"] {
  transition-delay: 0.1s;
}

.story-paragraph[data-delay="2"] {
  transition-delay: 0.2s;
}

.story-paragraph[data-delay="3"] {
  transition-delay: 0.3s;
}

.story-marker {
  flex-shrink: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.story-paragraph.visible .story-marker {
  opacity: 0.5;
}

.story-paragraph p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.story-paragraph p strong {
  color: var(--text-dark);
  font-weight: 600;
}



/* -----------------------------------------
   9. VITRINE LOJA - Category Grid
   ----------------------------------------- */
.section-vitrine {
  position: relative;
}

.vitrine-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.vitrine-header {
  margin-bottom: 3rem;
}

.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vitrine-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}

.vitrine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.vitrine-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.vitrine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.vitrine-card:hover .vitrine-card-image img {
  transform: scale(1.05);
}

.vitrine-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.vitrine-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
}

.vitrine-card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}


/* -----------------------------------------
   10. ENGENHARIA - Premium Magazine Layout
   ----------------------------------------- */
.engenharia {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--bg-primary);
}

/* --- Ambient background --- */
.engenharia-ambient {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(227,138,48,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(227,138,48,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.engenharia-ambient::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,138,48,0.06) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.engenharia-ambient::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.04) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

/* --- Split grid --- */
.engenharia-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  min-height: 0;
}

/* --- Visual panel --- */
.engenharia-visual {
  position: relative;
}

.engenharia-visual-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e4de;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.04);
  transform: perspective(1200px) rotateY(-2deg);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.6s ease;
}
.engenharia-visual:hover .engenharia-visual-inner {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}

.engenharia-visual-inner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.engenharia-visual-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.1) 48%, transparent 55%);
  pointer-events: none;
}

.engenharia-visual-border {
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(227,138,48,0.12);
  border-radius: 34px;
  z-index: -1;
  transition: border-color 0.5s ease, transform 0.5s ease;
}
.engenharia-visual:hover .engenharia-visual-border {
  border-color: rgba(227,138,48,0.25);
  transform: scale(1.02);
}

/* --- Visual badges --- */
.engenharia-visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.4rem!important;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  white-space: nowrap;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  bottom: 10px;
}
.engenharia-visual-badge svg {
  width: 16px; height: 16px;
  color: rgb(227,138,48);
  flex-shrink: 0;
}
.engenharia-visual-badge strong {
  font-weight: 700;
  color: rgb(227,138,48);
}
.engenharia-visual-badge:first-of-type {
  top: 1.5rem;
  right: -0.5rem;
}
.engenharia-visual-badge--alt {
  right: -0.5rem;
}
.engenharia-visual-badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(227,138,48,0.12);
}

/* --- Content panel --- */
.engenharia-content {
  padding: 4rem 0;
}

/* Tag with underline accent */
.engenharia-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(227,138,48);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.engenharia-tag::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2.5px;
  background: rgb(227,138,48);
  border-radius: 3px;
}

/* Title */
.engenharia-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.engenharia-title-accent {
  background: linear-gradient(135deg, rgb(227,138,48) 0%, rgb(245,175,80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.engenharia-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.engenharia-desc strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* --- Stats bar --- */
.engenharia-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  width: fit-content;
}

.engenharia-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.engenharia-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
}

.engenharia-stat-value .engenharia-stat-number {
  font-variant-numeric: tabular-nums;
}

.engenharia-stat-unit {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgb(227,138,48);
  margin-left: 0.1rem;
}

.engenharia-stat-label {
  font-size: 0.7rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.engenharia-stat-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(227,138,48,0.2);
  flex-shrink: 0;
}

/* --- Capability pills --- */
.engenharia-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.engenharia-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  background: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}
.engenharia-pill svg {
  width: 18px; height: 18px;
  color: rgb(227,138,48);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.engenharia-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(227,138,48,0.1);
  border-color: rgba(227,138,48,0.2);
  background: rgba(227,138,48,0.03);
}
.engenharia-pill:hover svg {
  transform: scale(1.12);
}

/* --- CTA --- */
.engenharia-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.engenharia-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .engenharia-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .engenharia-visual {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 0 0;
  }

  .engenharia-visual-inner {
    transform: none;
  }
  .engenharia-visual:hover .engenharia-visual-inner {
    transform: none;
  }

  .engenharia-visual-badge:first-of-type { right: 0; }
  .engenharia-visual-badge--alt { left: 0; }

  .engenharia-content { padding: 0 0 2rem; }
}

@media (max-width: 640px) {
  .engenharia-stats {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .engenharia-stat-dot { display: none; }

  .engenharia-pills { gap: 0.5rem; }
  .engenharia-pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }
}


/* -----------------------------------------
   11. PRODUTOS (PRODUCTS) - Premium Card Grid
   ----------------------------------------- */
.section-produtos::before {
  opacity: 0.04;
  background: url('../media/images/68362.jpg') center 30% / cover no-repeat;
}

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.produto-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}

.produto-card:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
}

.produto-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: inherit;
  transition: border-color 0.4s ease;
}

.produto-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(242, 169, 0, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.produto-card:hover .produto-card-bg::after,
.produto-card:focus-visible .produto-card-bg::after {
  opacity: 1;
}

.produto-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, #F2A900);
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.produto-card:hover .produto-card-accent,
.produto-card:focus-visible .produto-card-accent {
  opacity: 1;
  height: 4px;
}

.produto-card-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(0, 0, 0, 0.02) 50%,
      transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.produto-card:hover .produto-card-shine {
  transform: translateX(100%);
}

.produto-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transform-style: preserve-3d;
}

.produto-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.08);
  border: 1px solid rgba(242, 169, 0, 0.12);
  color: var(--accent-primary);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.produto-card:nth-child(2) .produto-card-icon {
  color: #1565C0;
}

.produto-card:nth-child(3) .produto-card-icon {
  color: #00897B;
}

.produto-card:hover .produto-card-icon {
  transform: scale(1.15) translateZ(20px);
  background: rgba(242, 169, 0, 0.1);
  border-color: rgba(242, 169, 0, 0.25);
  box-shadow: 0 0 30px rgba(242, 169, 0, 0.1);
}

.produto-card:nth-child(2):hover .produto-card-icon {
  background: rgba(21, 101, 192, 0.12);
  border-color: rgba(21, 101, 192, 0.3);
  box-shadow: 0 0 30px rgba(21, 101, 192, 0.12);
}

.produto-card:nth-child(3):hover .produto-card-icon {
  background: rgba(0, 137, 123, 0.12);
  border-color: rgba(0, 137, 123, 0.3);
  box-shadow: 0 0 30px rgba(0, 137, 123, 0.12);
}

.produto-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.produto-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 260px;
  margin: 0;
}

.produto-card-count {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-accent, #F2A900);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(242, 169, 0, 0.2);
  border-radius: 100px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.produto-card:nth-child(2) .produto-card-count {
  border-color: rgba(21, 101, 192, 0.25);
}

.produto-card:nth-child(3) .produto-card-count {
  border-color: rgba(0, 137, 123, 0.25);
}

.produto-card:hover .produto-card-count {
  background: rgba(242, 169, 0, 0.1);
  border-color: rgba(242, 169, 0, 0.4);
}

.produto-card:nth-child(2):hover .produto-card-count {
  background: rgba(21, 101, 192, 0.1);
  border-color: rgba(21, 101, 192, 0.4);
}

.produto-card:nth-child(3):hover .produto-card-count {
  background: rgba(0, 137, 123, 0.1);
  border-color: rgba(0, 137, 123, 0.4);
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ======= PRODUCT DETAIL OVERLAY (FULLSCREEN) ======= */
.produto-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s ease;
}

.produto-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.5s ease;
}

.produto-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.produto-overlay-panel {
  --modal-accent: #F2A900;
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--bg-primary);
  transform: translateY(5vh) scale(0.985);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.produto-overlay.open .produto-overlay-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ---- Visual (image) side ---- */
.produto-overlay-visual {
  position: relative;
  overflow: hidden;
  background: #0d1117;
}

.produto-overlay-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.produto-overlay.open .produto-overlay-visual-img {
  transform: scale(1);
}

.produto-overlay-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(13, 17, 23, 0.85) 0%,
      rgba(13, 17, 23, 0.35) 45%,
      rgba(13, 17, 23, 0.15) 70%,
      rgba(13, 17, 23, 0) 100%),
    linear-gradient(0deg, rgba(13, 17, 23, 0.55) 0%, transparent 40%);
}

.produto-overlay-visual-badge {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- Content side ---- */
.produto-overlay-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  padding: 4.5rem clamp(1.5rem, 4vw, 4rem);
  overflow-y: auto;
  background-color: var(--bg-secondary);
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--modal-accent) 6%, transparent), transparent 42%),
    linear-gradient(rgba(26, 26, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.produto-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.produto-overlay-close:hover {
  background: var(--modal-accent);
  color: #fff;
  transform: rotate(90deg);
}

.produto-overlay-header {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.produto-overlay-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--modal-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--modal-accent) 22%, transparent);
  color: var(--modal-accent);
}

.produto-overlay-icon svg {
  width: 30px;
  height: 30px;
}

.produto-overlay-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--modal-accent);
  margin-bottom: 0.25rem;
}

.produto-overlay-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
}

.produto-overlay-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 48ch;
}

.produto-overlay-list-wrap {
  margin-top: 0.25rem;
}

.produto-overlay-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.produto-overlay-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(10px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.produto-overlay-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--modal-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--modal-accent) 18%, transparent);
  flex-shrink: 0;
}

.produto-overlay.open .produto-overlay-list li {
  animation: produtoItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes produtoItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produto-overlay-list li:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--modal-accent) 25%, transparent);
  transform: translateX(4px) !important;
}

.produto-overlay-note {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--modal-accent);
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--modal-accent) 5%, transparent);
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
}

.produto-overlay-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.produto-overlay-actions .btn {
  justify-content: center;
}

.produto-overlay-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease, gap 0.3s ease;
}

.produto-overlay-more:hover {
  color: var(--modal-accent);
  gap: 0.75rem;
}

/* Overlay scrollbar */
.produto-overlay-body::-webkit-scrollbar {
  width: 5px;
}

.produto-overlay-body::-webkit-scrollbar-track {
  background: transparent;
}

.produto-overlay-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

@media (max-width: 900px) {
  .produto-overlay-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 32vh 1fr;
  }

  .produto-overlay-visual {
    grid-row: 1;
  }

  .produto-overlay-visual-shade {
    background: linear-gradient(0deg, rgba(13, 17, 23, 0.7) 0%, transparent 55%);
  }

  .produto-overlay-visual-badge {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .produto-overlay-body {
    padding: 2.25rem 1.5rem 3rem;
    justify-content: flex-start;
  }

  .produto-overlay-list {
    grid-template-columns: 1fr;
  }
}

/* ======= SERVIÇOS (SERVICES) - Card Grid + Fullscreen Modal ======= */

.section-servicos::before {
  opacity: 0.04;
}

/* Ambient color overlay */
.section-servicos {
  transition: background-color 0.6s ease;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

/* ===== DETAIL CHIPS (reused in modal) ===== */
.svc-det {
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.svc-det-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--modal-accent, #F2A900);
  margin: 0 0 0.6rem;
}

.svc-det-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.svc-det-chip {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 0.28rem 0.7rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  line-height: 1.4;
}

/* ===== FULLSCREEN OVERLAY MODAL ===== */
.servico-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s ease;
}

.servico-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.5s ease;
}

.servico-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.servico-overlay-panel {
  --modal-accent: #F2A900;
  --modal-accent-rgb: 242, 169, 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  background: var(--bg-primary);
  transform: translateY(5vh) scale(0.985);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.servico-overlay.open .servico-overlay-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Visual side */
.servico-overlay-visual {
  position: relative;
  overflow: hidden;
  background: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-overlay-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
}

.servico-overlay-visual-glow {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--modal-accent-rgb, 242, 169, 0), 0.3), transparent 70%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.servico-overlay.open .servico-overlay-visual-glow {
  opacity: 1;
}

.servico-overlay-visual-icon {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--modal-accent);
  background: rgba(var(--modal-accent-rgb, 242, 169, 0), 0.08);
  border: 1px solid rgba(var(--modal-accent-rgb, 242, 169, 0), 0.32);
  border-radius: 26px;
  box-shadow: 0 0 90px rgba(var(--modal-accent-rgb, 242, 169, 0), 0.2);
}

.servico-overlay-visual-icon svg {
  width: 64px;
  height: 64px;
}

.servico-overlay-visual-badge {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Content side */
.servico-overlay-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  padding: 4.5rem clamp(1.5rem, 4vw, 4rem);
  overflow-y: auto;
  background-color: var(--bg-secondary);
  background-image:
    linear-gradient(135deg, rgba(var(--modal-accent-rgb, 242, 169, 0), 0.06), transparent 42%),
    linear-gradient(rgba(26, 26, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.servico-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.servico-overlay-close:hover {
  background: var(--modal-accent);
  color: #fff;
  transform: rotate(90deg);
}

.servico-overlay-header {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.servico-overlay-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(var(--modal-accent-rgb, 242, 169, 0), 0.1);
  border: 1px solid rgba(var(--modal-accent-rgb, 242, 169, 0), 0.22);
  color: var(--modal-accent);
}

.servico-overlay-icon svg {
  width: 30px;
  height: 30px;
}

.servico-overlay-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--modal-accent);
  margin-bottom: 0.25rem;
}

.servico-overlay-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
}

.servico-overlay-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 48ch;
}

.servico-overlay-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-overlay-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(10px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.servico-overlay-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--modal-accent);
  box-shadow: 0 0 0 3px rgba(var(--modal-accent-rgb, 242, 169, 0), 0.18);
  flex-shrink: 0;
}

.servico-overlay.open .servico-overlay-list li {
  animation: servicoItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes servicoItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.servico-overlay-list li:hover {
  background: #fff;
  border-color: rgba(var(--modal-accent-rgb, 242, 169, 0), 0.3);
  transform: translateX(4px) !important;
}

.servico-overlay-note {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--modal-accent);
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(var(--modal-accent-rgb, 242, 169, 0), 0.05);
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
}

.servico-overlay-detalhes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.servico-overlay-detalhes .svc-det {
  opacity: 0;
  transform: translateY(10px);
  animation: servicoItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.servico-overlay-detalhes .svc-det-chip {
  background: #fff;
}

.servico-overlay-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.servico-overlay-actions .btn {
  justify-content: center;
}

/* Overlay scrollbar */
.servico-overlay-body::-webkit-scrollbar {
  width: 5px;
}

.servico-overlay-body::-webkit-scrollbar-track {
  background: transparent;
}

.servico-overlay-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

@media (max-width: 900px) {
  .servico-overlay-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 30vh 1fr;
  }

  .servico-overlay-visual {
    grid-row: 1;
  }

  .servico-overlay-visual-icon {
    width: 100px;
    height: 100px;
  }

  .servico-overlay-visual-icon svg {
    width: 46px;
    height: 46px;
  }

  .servico-overlay-visual-badge {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .servico-overlay-body {
    padding: 2.25rem 1.5rem 3rem;
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-overlay-list {
    grid-template-columns: 1fr 1fr;
  }

  .servico-overlay-detalhes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* -----------------------------------------
   10. PARCEIROS (PARTNERS)
   ----------------------------------------- */
/* -----------------------------------------
   10A. PARCEIROS - PREMIUM SPOTLIGHT
   ----------------------------------------- */
.section-parceiros {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.section-parceiros::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(242, 169, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(21, 101, 192, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section-parceiros .container {
  position: relative;
  z-index: 1;
}

.parceiros-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.parceiros-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.parceiros-header .section-subtitle {
  color: #fff;
  margin-top: 0.4rem;
}

.section-parceiros h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}

/* --- Spotlight Card --- */
.parceiros-spotlight {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.15s ease;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.06);
}

.parceiros-inner {
  transform-style: preserve-3d;
}

/* --- Badge --- */
.parceiros-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: translateZ(30px);
}

.parceiros-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3dcd58;
  background: rgba(61, 205, 88, 0.08);
  border: 1px solid rgba(61, 205, 88, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.parceiros-badge svg {
  color: #3dcd58;
}

/* --- Logo --- */
.parceiros-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1rem;
  transform: translateZ(50px);
}

.parceiros-logo {
  max-width: 100%;
  height: auto;
  max-height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s var(--ease-out);
}

.parceiros-spotlight:hover .parceiros-logo {
  transform: scale(1.02);
}

/* --- Divider --- */
.parceiros-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
  transform: translateZ(20px);
}

.parceiros-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(61, 205, 88, 0.2);
  animation: parceirosDotFade 2s ease-in-out infinite;
}

.parceiros-dot:nth-child(1) {
  animation-delay: 0s;
}

.parceiros-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.parceiros-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.parceiros-dot:nth-child(4) {
  animation-delay: 0.45s;
}

.parceiros-dot:nth-child(5) {
  animation-delay: 0.6s;
}

.parceiros-dot:nth-child(6) {
  animation-delay: 0.75s;
}

.parceiros-dot:nth-child(7) {
  animation-delay: 0.9s;
}

@keyframes parceirosDotFade {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
    background: #3dcd58;
  }
}

/* --- Tagline --- */
.parceiros-tagline {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28em;
  margin: 0 auto;
  transform: translateZ(15px);
}

/* --- Stats row --- */
.parceiros-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.parceiros-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1rem 1.5rem;
}

.parceiros-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.parceiros-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.parceiros-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
}

/* -----------------------------------------
   11. LOCALIZAÇÃƒO (LOCATION)
   ----------------------------------------- */
/* -----------------------------------------
   11A. LOCALIZAÇÃƒO (Premium Showcase)
   ----------------------------------------- */
.section-localizacao {
  position: relative;
  overflow: hidden;
}

.section-localizacao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 40%, rgba(242, 169, 0, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 80% 60%, rgba(21, 101, 192, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.localizacao-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.localizacao-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.localizacao-heading::after {
  display: none;
}

.localizacao-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32em;
}

/* --- Business Card --- */
.localizacao-card {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.localizacao-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.localizacao-card-accent {
  width: 4px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--accent-primary), rgba(242, 169, 0, 0.3));
}

.localizacao-card-body {
  padding: 1.5rem;
  flex: 1;
}

.localizacao-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a2e;
  background: var(--accent-primary);
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 0.85rem;
}

.localizacao-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.localizacao-card-address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.localizacao-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.localizacao-card-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.localizacao-card-actions .btn-primary {
  background: var(--accent-primary);
  color: #1a1a2e;
  border: 1px solid var(--accent-primary);
}

.localizacao-card-actions .btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
}

.localizacao-card-actions .btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.localizacao-card-actions .btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(242, 169, 0, 0.06);
}

.localizacao-card-actions .btn-sm svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- Contact Items --- */
.localizacao-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.localizacao-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.localizacao-contact:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(242, 169, 0, 0.25);
  transform: translateX(4px);
}

.localizacao-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 169, 0, 0.1);
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
}

.localizacao-contact:hover .localizacao-contact-icon {
  background: rgba(242, 169, 0, 0.2);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(242, 169, 0, 0.15);
}

.localizacao-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.localizacao-contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary, rgba(0, 0, 0, 0.4));
}

.localizacao-contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s;
}

.localizacao-contact:hover .localizacao-contact-value {
  color: var(--accent-primary);
}

/* --- Coverage Badge --- */
.localizacao-coverage {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #1565C0;
  background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
}

.localizacao-coverage svg {
  color: var(--technical-blue, #1565C0);
  flex-shrink: 0;
  animation: compassPulse 3s ease-in-out infinite;
}

@keyframes compassPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* --- Map Wrapper --- */
.localizacao-map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.localizacao-map-wrap:hover {
  transform: scale(1.008);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.localizacao-map-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(242, 169, 0, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(21, 101, 192, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.localizacao-map-wrap:hover .localizacao-map-glare {
  opacity: 1;
}

.localizacao-map {
  width: 100%;
  height: 320px;
}

.localizacao-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -----------------------------------------
   12. CONTATO (CONTACT / FORM)
   ----------------------------------------- */
/* -----------------------------------------
   12. CONTATO - PREMIUM INTERACTIVE
   ----------------------------------------- */
.section-contato {
  position: relative;
  overflow: hidden;
}

.section-contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(242, 169, 0, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(21, 101, 192, 0.04) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 0, 0, 0.015) 40px, rgba(0, 0, 0, 0.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 0, 0, 0.015) 40px, rgba(0, 0, 0, 0.015) 41px);
  pointer-events: none;
  z-index: 0;
}

/* --- Header --- */
.contato-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.contato-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(242, 169, 0, 0.08);
  border: 1px solid rgba(242, 169, 0, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.contato-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contato-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36em;
  margin: 0 auto;
}

.contato-title::after {
  display: none;
}

/* --- Layout --- */
.contato-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* --- Progress Bar --- */
.contato-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contato-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.contato-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), rgba(242, 169, 0, 0.5));
  border-radius: 4px;
  transition: width 0.5s var(--ease-out);
}

.contato-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-tertiary, rgba(0, 0, 0, 0.35));
  font-variant-numeric: tabular-nums;
  min-width: 3em;
  text-align: right;
}

/* --- Form --- */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contato-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.45rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(242, 169, 0, 0.5);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.06), inset 0 0 0 1px rgba(242, 169, 0, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 1.5rem;
}

.form-group label {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}

.required-mark {
  color: var(--accent-primary);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: 0.25rem;
  font-size: 0.7rem;
  color: var(--accent-primary);
  letter-spacing: 0.03em;
}

/* --- Focus underline animation --- */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
  border-radius: 0 0 2px 2px;
  pointer-events: none;
}

.form-group:focus-within::after {
  width: 100%;
  left: 0;
}

/* --- Textarea Footer --- */
.form-group-textarea .form-error {
  display: inline;
  height: auto;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0;
  overflow: visible;
}

.form-textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
  min-height: 1.2rem;
}

.form-charcount {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.3);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s;
}

.form-charcount.warning {
  color: var(--accent-primary);
}

.form-charcount.danger {
  color: #e74c3c;
}

/* --- Error/Success states --- */
.form-group.error input,
.form-group.error textarea {
  border-color: rgba(231, 76, 60, 0.6);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.form-group.success input,
.form-group.success textarea {
  border-color: rgba(46, 204, 113, 0.5);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.06);
}

.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  height: 0;
  overflow: hidden;
  transition: height 0.2s;
  display: block;
}

.form-group.error .form-error {
  height: 1.2rem;
}

/* --- Submit Button --- */
.contato-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #1a1a2e;
  background: linear-gradient(135deg, var(--accent-primary), #e6a000);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  width: fit-content;
  letter-spacing: 0.02em;
}

.contato-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.contato-submit:hover::before {
  transform: translateX(100%);
}

.contato-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 169, 0, 0.25);
}

.contato-submit:active {
  transform: translateY(0);
}

.contato-submit-icon {
  display: flex;
  transition: transform 0.3s var(--ease-out);
}

.contato-submit:hover .contato-submit-icon {
  transform: translateX(3px) rotate(-5deg);
}

.contato-submit-spinner {
  display: none;
  animation: submitSpin 0.8s linear infinite;
}

.contato-submit.loading .contato-submit-text {
  opacity: 0.6;
}

.contato-submit.loading .contato-submit-icon {
  display: none;
}

.contato-submit.loading .contato-submit-spinner {
  display: flex;
}

.contato-submit.loading {
  pointer-events: none;
}

@keyframes submitSpin {
  to {
    transform: rotate(360deg);
  }
}

/* -----------------------------------------
   12b. CONTATO FORM — PREMIUM V2
   ----------------------------------------- */
.contato-form-col {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(26, 32, 40, 0.07);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(26, 32, 40, 0.07), 0 2px 8px rgba(26, 32, 40, 0.02);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contato-form-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--accent-primary) 30%, var(--accent-secondary) 70%, transparent);
  opacity: 0.9;
}

.cf-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(242, 169, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}

.cf-corner--tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-top-left-radius: 7px; }
.cf-corner--tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; border-top-right-radius: 7px; }
.cf-corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; border-bottom-left-radius: 7px; }
.cf-corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-bottom-right-radius: 7px; }

/* --- Progress bar premium --- */
.contato-progress-track {
  height: 6px;
  background: rgba(26, 32, 40, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.contato-progress-fill {
  background: linear-gradient(90deg, #E58F00, #F2A900, #1565C0, #F2A900);
  background-size: 200% 100%;
  animation: cfShimmer 3.5s linear infinite;
  border-radius: 100px;
}

@keyframes cfShimmer {
  to { background-position: -200% 0; }
}

.contato-progress-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: cfSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cfSweep {
  60%, 100% { transform: translateX(100%); }
}

.contato-progress-label {
  color: var(--text-secondary, rgba(0, 0, 0, 0.5));
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 32, 40, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* --- Inputs premium --- */
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(26, 32, 40, 0.1);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(26, 32, 40, 0.18);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(242, 169, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.08), 0 0 0 1px rgba(242, 169, 0, 0.14);
  transform: translateY(-1px);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231A1A1A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  cursor: pointer;
}

.form-group select:invalid {
  color: rgba(26, 32, 40, 0.42);
}

.form-group select option {
  color: var(--text-primary);
}

.form-group select ~ label {
  top: 0.28rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: rgba(26, 32, 40, 0.45);
}

.form-group select:focus ~ label {
  color: var(--accent-primary);
}

/* --- Underline gradiente --- */
.form-group::after {
  height: 2px;
  background: linear-gradient(90deg, #E58F00, #F2A900);
  box-shadow: 0 0 8px rgba(242, 169, 0, 0.35);
}

/* --- Status icons success/error --- */
.form-group.success::before,
.form-group.error::before {
  content: '';
  position: absolute;
  top: 0.95rem;
  right: 1.05rem;
  width: 11px;
  height: 6px;
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
}

.form-group.success::before {
  border-left: 2.5px solid #2ecc71;
  border-bottom: 2.5px solid #2ecc71;
}

.form-group.error::before {
  width: 14px;
  height: 14px;
  border: 0;
  transform: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.form-group.success label,
.form-group.success input:focus ~ label,
.form-group.success input:not(:placeholder-shown) ~ label,
.form-group.success textarea:focus ~ label,
.form-group.success textarea:not(:placeholder-shown) ~ label {
  color: #1fa05a;
}

.form-group.error label,
.form-group.error input:focus ~ label,
.form-group.error input:not(:placeholder-shown) ~ label,
.form-group.error textarea:focus ~ label,
.form-group.error textarea:not(:placeholder-shown) ~ label {
  color: #e74c3c;
}

/* --- Submit premium --- */
.contato-submit {
  background: linear-gradient(135deg, #E58F00, #F2A900 55%, #ffc22e);
  border-radius: 100px;
  padding: 1rem 2.1rem;
  box-shadow: 0 10px 30px rgba(242, 169, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contato-submit:not(.loading) {
  animation: cfPulseGlow 3.4s ease-in-out infinite;
}

.contato-submit:hover {
  box-shadow: 0 16px 40px rgba(242, 169, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contato-submit:focus-visible {
  outline: 3px solid rgba(242, 169, 0, 0.4);
  outline-offset: 3px;
}

@keyframes cfPulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(242, 169, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 10px 44px rgba(242, 169, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

/* --- Entrada em stagger --- */
@keyframes cfRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.contato-progress,
.contato-form > * {
  animation: cfRise 0.6s var(--ease-out) both;
}

.contato-progress { animation-delay: 0.05s; }
.contato-form > *:nth-child(1) { animation-delay: 0.12s; }
.contato-form > *:nth-child(2) { animation-delay: 0.2s; }
.contato-form > *:nth-child(3) { animation-delay: 0.28s; }
.contato-form > *:nth-child(4) { animation-delay: 0.36s; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .contato-progress-fill,
  .contato-progress-track::after,
  .contato-submit:not(.loading),
  .contato-progress,
  .contato-form > * {
    animation: none !important;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    transform: none;
  }
}

/* -----------------------------------------
   12c. ASSUNTO — RADIO CARDS
   ----------------------------------------- */
.form-group-radio {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-radio-title {
  display: block;
  margin: 0 0 0.7rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 32, 40, 0.55);
}

.form-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
}

.form-radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 0.75rem 0.95rem;
  background: #ffffff;
  border: 1px solid rgba(26, 32, 40, 0.1);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

/* Override do .form-group label flutuante (base) que absolutiza os cards */
.form-group-radio .form-radio-card {
  position: relative;
  top: auto;
  left: auto;
  pointer-events: auto;
  font-size: inherit;
  color: inherit;
}

.form-radio-card:hover {
  border-color: rgba(242, 169, 0, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 32, 40, 0.06);
}

.form-radio-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-radio-card input:focus-visible + .form-radio-check {
  outline: 2px solid rgba(242, 169, 0, 0.6);
  outline-offset: 2px;
}

.form-radio-check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(26, 32, 40, 0.16);
  border-radius: 50%;
  background: #ffffff;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.form-radio-card input:checked + .form-radio-check {
  border-color: var(--accent-primary);
  background: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

.form-radio-card input:checked + .form-radio-check::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.form-radio-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(242, 169, 0, 0.08);
  color: var(--accent-primary);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.form-radio-card:nth-child(2) .form-radio-icon {
  background: rgba(21, 101, 192, 0.08);
  color: #1565C0;
}

.form-radio-card:nth-child(3) .form-radio-icon {
  background: rgba(0, 137, 123, 0.08);
  color: #00897B;
}

.form-radio-card:nth-child(4) .form-radio-icon {
  background: rgba(231, 76, 60, 0.08);
  color: #e74c3c;
}

.form-radio-card:nth-child(5) .form-radio-icon {
  background: rgba(100, 116, 139, 0.08);
  color: #64748B;
}

.form-radio-card input:checked ~ .form-radio-icon {
  background: var(--accent-primary);
  color: #ffffff;
  transform: scale(1.06);
}

.form-radio-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: color 0.25s var(--ease-out);
}

.form-radio-card input:checked ~ .form-radio-text {
  color: var(--accent-primary);
}

.form-radio-card:has(input:checked) {
  border-color: rgba(242, 169, 0, 0.55);
  background: rgba(242, 169, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.08);
}

.form-group-radio.error .form-radio-card {
  border-color: rgba(231, 76, 60, 0.5);
}

.form-group-radio.success .form-radio-card {
  border-color: rgba(46, 204, 113, 0.4);
}

.form-group-radio.error .form-radio-title {
  color: #e74c3c;
}

/* --- Success State --- */
.contato-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.contato-success[hidden] {
  display: none;
}

.contato-success:not([hidden]) {
  display: flex;
}

.contato-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  margin-bottom: 1rem;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.contato-success-icon svg {
  animation: checkDraw 0.6s 0.2s ease-out forwards;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.contato-success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2ecc71;
  margin-bottom: 0.4rem;
}

.contato-success-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 24em;
  line-height: 1.5;
}

.contato-success-text a {
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.25s;
}

.contato-success-text a:hover {
  color: var(--accent-primary);
}

.contato-success-btn {
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
}

.contato-success-btn:hover {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

/* --- Info Column --- */
.contato-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --- Contact Cards --- */
.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contato-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.contato-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(242, 169, 0, 0.2);
  transform: translateX(5px);
}

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

.contato-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
}

.contato-card-icon.phone-icon {
  background: rgba(242, 169, 0, 0.1);
  color: var(--accent-primary);
}

.contato-card-icon.email-icon {
  background: rgba(21, 101, 192, 0.1);
  color: #42a5f5;
}

.contato-card-icon.pin-icon {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.contato-card:hover .contato-card-icon {
  transform: scale(1.1);
}

.contato-card:hover .contato-card-icon.phone-icon {
  box-shadow: 0 0 20px rgba(242, 169, 0, 0.15);
}

.contato-card:hover .contato-card-icon.email-icon {
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.15);
}

.contato-card:hover .contato-card-icon.pin-icon {
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.15);
}

.contato-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 1;
  min-width: 0;
}

.contato-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.3);
}

.contato-card-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.contato-card:hover .contato-card-value {
  color: var(--accent-primary);
}

.contato-card-arrow {
  color: rgba(0, 0, 0, 0.2);
  transition: all 0.35s var(--ease-out);
  flex-shrink: 0;
}

.contato-card:hover .contato-card-arrow {
  color: var(--accent-primary);
  transform: translateX(3px);
}

/* --- Trust Badges --- */
.contato-trust {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contato-trust-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 0.6rem;
}

.contato-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.trust-badge:hover {
  border-color: rgba(242, 169, 0, 0.2);
  color: var(--accent-primary);
  background: rgba(242, 169, 0, 0.04);
}

.trust-badge svg {
  color: rgba(242, 169, 0, 0.6);
  flex-shrink: 0;
}

/* --- Response Time --- */
.contato-response {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(21, 101, 192, 0.06);
  border: 1px solid rgba(21, 101, 192, 0.12);
}

.contato-response svg {
  color: #42a5f5;
  flex-shrink: 0;
  animation: responsePulse 2.5s ease-in-out infinite;
}

@keyframes responsePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.contato-response div {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.contato-response-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.3);
}

.contato-response-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* -----------------------------------------
   13. TRABALHE CONOSCO (JOBS / UPLOAD)
   ----------------------------------------- */
.trabalhe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trabalhe-image {
  display: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.trabalhe-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.trabalhe-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--accent-primary);
  background: rgba(242, 169, 0, 0.05);
}

.upload-area .upload-icon {
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
}

.upload-area .upload-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.upload-area .upload-text strong {
  color: var(--accent-primary);
}

.upload-area input[type="file"] {
  display: none;
}

.upload-feedback {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.upload-feedback.show {
  display: flex;
}

.upload-feedback.success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.upload-feedback.error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* -----------------------------------------
   14. FOOTER
   ----------------------------------------- */
/* -----------------------------------------
   16. FOOTER - PREMIUM
   ----------------------------------------- */
.footer {
  position: relative;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0;
  border-top: none;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(242, 169, 0, 0.02) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(21, 101, 192, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 0, 0, 0.01) 50px, rgba(0, 0, 0, 0.01) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.01) 50px, rgba(0, 0, 0, 0.01) 51px);
  pointer-events: none;
  z-index: 0;
}

/* --- Top decorative border --- */
.footer-top-border {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 169, 0, 0.6) 20%, var(--accent-primary) 50%, rgba(242, 169, 0, 0.6) 80%, transparent 100%);
  position: relative;
  animation: footerBorderShimmer 4s ease-in-out infinite;
}

@keyframes footerBorderShimmer {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.footer>.container {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* --- Brand Column --- */
.footer-brand img {
  height: 66px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-brand p strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.footer-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.footer-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.35);
}

/* --- Column Titles --- */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-col-accent {
  width: 3px;
  height: 14px;
  background: var(--accent-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* --- Navigation Links --- */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.footer-col ul a:hover {
  color: var(--text-primary);
}

.link-text {
  position: relative;
  z-index: 1;
}

.link-underline {
  display: block;
  height: 1px;
  width: 0;
  background: var(--accent-primary);
  transition: width 0.35s var(--ease-out);
  margin-top: 1px;
}

.footer-col ul a:hover .link-underline {
  width: 100%;
}

/* --- Contact List --- */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-link,
.footer-contact-address {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.footer-contact-link:hover {
  color: var(--accent-primary);
}

.footer-contact-link svg,
.footer-contact-address svg {
  color: rgba(242, 169, 0, 0.4);
  flex-shrink: 0;
  transition: color 0.3s;
}

.footer-contact-link:hover svg {
  color: var(--accent-primary);
}

.footer-contact-address svg {
  align-self: flex-start;
  margin-top: 2px;
}

.footer-contact-address span {
  line-height: 1.5;
}

/* --- Social Icons --- */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-social-link.linkedin:hover {
  color: #fff;
  background: #0077b5;
  box-shadow: 0 4px 16px rgba(0, 119, 181, 0.35);
}

.footer-social-link.instagram:hover {
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
}

.footer-social-link.facebook:hover {
  color: #fff;
  background: #1877f2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.35);
}

.footer-social-link.youtube:hover {
  color: #fff;
  background: #ff0000;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.35);
}

.footer-social-tag {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* --- Bottom Bar --- */
.footer-bottom {
  margin-top: 2.5rem;
}

.footer-bottom-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 30%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.06) 70%, transparent 100%);
  margin-bottom: 1.25rem;
}

.footer-bottom-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: footerDotPulse 2.5s ease-in-out infinite;
}

@keyframes footerDotPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-bottom-content span:first-child {
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.78rem;
}

.footer-bottom-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 169, 0, 0.3);
}

/* -----------------------------------------
   15. WHATSAPP FLOATING BUTTON
   ----------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* -----------------------------------------
   16. SCROLL-REVEAL ANIMATIONS
   ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* -----------------------------------------
   17. KEYFRAME ANIMATIONS
   ----------------------------------------- */
@keyframes drawLine {
  0% {
    stroke-dashoffset: 200;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -200;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

/* -----------------------------------------
   18. ACCESSIBILITY
   ----------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .circuit-line {
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--accent-primary);
  color: var(--text-dark);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* -----------------------------------------
   19. RESPONSIVE - TABLET (768px)
   ----------------------------------------- */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .section {
    padding: 6rem 0;
  }

  .sobre-grid-modern {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .produto-overlay-list {
    grid-template-columns: 1fr 1fr;
  }

  .contato-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .contato-form-col {
    flex: 1.3;
  }

  .contato-info-col {
    flex: 0.7;
    position: sticky;
    top: 6rem;
  }

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

  .localizacao-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .localizacao-info {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .localizacao-map-wrap {
    flex: 1;
    min-height: 520px;
  }

  .localizacao-map {
    height: 100%;
    min-height: 520px;
  }

  .trabalhe-grid {
    grid-template-columns: 1fr 2fr 1fr;
  }

  .trabalhe-image {
    display: block;
  }

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

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

}

/* Mobile mega-menu: sub-list in slide-out nav */
@media (max-width: 1023px) {
  .nav-mega {
    position: static;
    width: 100%;
    padding: 0;
    display: none;
    opacity: 1;
    transform: none;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    pointer-events: auto;
  }

  .nav-has-mega.open .nav-mega {
    display: block;
  }

  .nav-mega-inner {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 0.5rem;
    border-left: 1px solid rgba(242, 169, 0, 0.12);
    margin: 0.25rem 0 0.25rem 0.75rem;
  }

  .nav-mega-item {
    padding: 0.65rem 0.75rem;
    gap: 0.75rem;
  }

  .nav-mega-item::after {
    display: none;
  }

  .nav-mega-icon {
    width: 36px;
    height: 36px;
  }

  .nav-mega-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-mega-title {
    font-size: 0.85rem;
  }

  .nav-mega-desc {
    font-size: 0.72rem;
  }
}

/* -----------------------------------------
   20. RESPONSIVE - DESKTOP (1024px)
   ----------------------------------------- */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-menu-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }

  .nav-link {
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.6);
    gap: 0;
  }

  .nav-link:hover .nav-link-text,
  .nav-link.active .nav-link-text {
    color: var(--text-primary);
    transform: none;
  }

  .nav-link.active .nav-link-text {
    color: var(--accent-primary);
  }

  .nav-indicator {
    width: 0;
    margin: 2px auto 0;
    transition: width 0.35s ease;
  }

  .nav-link:hover .nav-indicator {
    width: 16px;
  }

  .nav-link.active .nav-indicator {
    width: 100%;
  }

  /* Mega-trigger: chevron inline via wrapper */
  .nav-mega-trigger-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  /* Desktop mega-menu positioning */
  .nav-has-mega {
    position: relative;
  }

  .nav-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 620px;
    padding-top: 0.75rem;
  }

  .nav-has-mega:hover .nav-mega {
    transform: translateX(-50%) translateY(0);
  }

  .header-logo img {
    height: 64px;
  }

  .header.scrolled .header-logo img {
    height: 47px;
  }

  .sobre-grid-modern {
    gap: 4rem;
  }

  .section {
    padding: 7rem 0;
  }

  .produtos-grid {
    gap: 1.5rem;
  }
}

/* -----------------------------------------
    21. RESPONSIVE - LARGE DESKTOP (1440px)
   ----------------------------------------- */
@media (min-width: 1440px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 8rem 0;
  }

  .sobre-grid-modern {
    gap: 5rem;
  }

  .legacy-card {
    padding: 3rem 2.5rem;
  }

  .hero-title-line {
    font-size: 4.8rem;
  }

  .hero-title-line {
    font-size: 3.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 80%;
  }

  .counter-number {
    font-size: 7rem;
  }

  .parceiros-spotlight {
    padding: 3rem 3.5rem;
  }

  .parceiros-logo {
    max-height: 140px;
  }
}

/* =========================================
   22. SERVIÇOS PAGES
   ========================================= */

/* --- Page Hero --- */
.page-hero {
  position: relative;
  min-height: 50vh;
  min-height: 50dvh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/ccm_automacao/media/images/66862.jpg') center / cover no-repeat;
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.85) 100%),
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(242, 169, 0, 0.03) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  border: 1px solid rgba(242, 169, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 1rem;
  background: rgba(242, 169, 0, 0.05);
}

.page-hero h1 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(242, 169, 0, 0.12);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  pointer-events: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.1);
  color: var(--accent-primary);
  margin-bottom: 1rem;
  transition: transform 0.4s ease, background 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  background: rgba(242, 169, 0, 0.15);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- Tipos Grid --- */
.tipos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
}

.tipo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.tipo-item:hover {
  border-color: rgba(242, 169, 0, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.tipo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(242, 169, 0, 0.08);
  border: 1px solid rgba(242, 169, 0, 0.12);
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.tipo-item:nth-child(3n+2) .tipo-icon {
  background: rgba(21, 101, 192, 0.08);
  border-color: rgba(21, 101, 192, 0.12);
  color: #1565C0;
}

.tipo-item:nth-child(3n) .tipo-icon {
  background: rgba(0, 137, 123, 0.08);
  border-color: rgba(0, 137, 123, 0.12);
  color: #00897B;
}

.tipo-item:hover .tipo-icon {
  transform: scale(1.08);
}

.tipo-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* --- Segmentos Grid --- */
.segmentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.segmento-card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.segmento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.segmento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.08);
  color: var(--accent-primary);
  margin: 0 auto 1rem;
  transition: transform 0.4s ease;
}

.segmento-card:hover .segmento-icon {
  transform: scale(1.1) rotate(-5deg);
}

.segmento-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.segmento-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* --- Benefícios Grid --- */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.beneficio-card {
  padding: 2rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.beneficio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.08);
  color: var(--accent-primary);
  margin: 0 auto 1.25rem;
  transition: transform 0.4s ease, background 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.15);
  background: rgba(242, 169, 0, 0.12);
}

.beneficio-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.beneficio-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
  margin: 0 auto;
}

/* --- Quote Card --- */
.quote-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}

.quote-icon {
  color: rgba(242, 169, 0, 0.12);
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  quotes: none;
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.quote-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.04em;
}

.quote-author-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --- Especificações Grid --- */
.especs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.espec-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.espec-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.espec-card-accent {
  height: 3px;
  background: var(--card-accent, #F2A900);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.espec-card:hover .espec-card-accent {
  opacity: 1;
}

.espec-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.espec-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.08);
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.espec-card:hover .espec-icon {
  transform: scale(1.1) rotate(-5deg);
}

.espec-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.espec-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- Concessionárias Grid --- */
.concessionarias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.concessionaria-card {
  padding: 2rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.concessionaria-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.concessionaria-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.08);
  color: var(--accent-primary);
  margin: 0 auto 1rem;
  transition: transform 0.4s ease;
}

.concessionaria-card:hover .concessionaria-icon {
  transform: scale(1.15);
}

.concessionaria-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.concessionaria-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.concessionaria-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background: rgba(242, 169, 0, 0.08);
  border: 1px solid rgba(242, 169, 0, 0.15);
  border-radius: 100px;
}

/* --- CTA Box --- */
.cta-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 169, 0, 0.1);
  background: rgba(242, 169, 0, 0.03);
}

.cta-box h2 {
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Product Page Hero subtitle --- */
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 1rem;
}

/* --- CTA Block --- */
.cta-block {
  text-align: center;
  padding: 2rem;
}

.cta-block h2 {
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Services Index List --- */
.servicos-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.servico-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: pointer;
  outline: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.servico-card:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
}

.servico-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: inherit;
  transition: border-color 0.4s ease;
}

.servico-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 169, 0, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.servico-card:hover .servico-card-bg::after {
  opacity: 1;
}

.servico-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, #F2A900);
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.servico-card:hover .servico-card-accent {
  opacity: 1;
  height: 4px;
}

.servico-card-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(0, 0, 0, 0.02) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.servico-card:hover .servico-card-shine {
  transform: translateX(100%);
}

.servico-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transform-style: preserve-3d;
}

.servico-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent, #F2A900) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-accent, #F2A900) 22%, transparent);
  color: var(--card-accent, #F2A900);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.servico-card:hover .servico-card-icon {
  transform: scale(1.15);
  background: color-mix(in srgb, var(--card-accent, #F2A900) 12%, transparent);
  border-color: color-mix(in srgb, var(--card-accent, #F2A900) 35%, transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--card-accent, #F2A900) 16%, transparent);
}

.servico-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.servico-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.servico-card-count {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--card-accent, #F2A900);
  padding: 0.55rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--card-accent, #F2A900) 30%, transparent);
  border-radius: 100px;
  background: color-mix(in srgb, var(--card-accent, #F2A900) 6%, transparent);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease, transform 0.3s ease;
}

.servico-card-count::after {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-card-count {
  background: var(--card-accent, #F2A900);
  border-color: var(--card-accent, #F2A900);
  color: #fff;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--card-accent, #F2A900) 30%, transparent);
  transform: translateY(-2px);
}

.servico-card:hover .servico-card-count::after {
  transform: translateX(3px);
}

.servico-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-primary);
  transition: gap 0.3s ease;
}

.servico-card-link:hover {
  gap: 0.65rem;
}

.servico-card-link svg {
  transition: transform 0.3s ease;
}

.servico-card-link:hover svg {
  transform: translateX(3px);
}

/* --- Section Tipos modifier --- */
.section-tipos {
  position: relative;
}

.section-tipos .container {
  position: relative;
  z-index: 1;
}

/* --- Final CTA Section --- */
.section-cta-final {
  padding: 4rem 0;
}

/* Responsive */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tipos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segmentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .especs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concessionarias-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .servicos-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-card-body {
    padding: 2rem;
  }

  .cta-box {
    padding: 3.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .servicos-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .tipos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-hero {
    min-height: 55vh;
    min-height: 55dvh;
    padding: 10rem 0 5rem;
  }
}

@media (min-width: 1440px) {
  .page-hero {
    min-height: 50vh;
    min-height: 50dvh;
  }
}