/* =========================================
   GOMES TINTAS — Estilos Globais v2
   ========================================= */

/* =========================================
   DROPDOWN NAV
   ========================================= */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .65rem; opacity: .7; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: rgba(20,10,50,.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  transition-delay: 200ms;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  z-index: 200;
}
/* Ponte invisível que cobre o gap entre o link e o submenu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0ms;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.75) !important;
  font-size: .875rem;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--white) !important; }
.nav-dropdown-menu a:hover::after { display: none; }
.nav-dropdown-menu .dropdown-label {
  display: block;
  padding: 6px 14px 4px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35) !important;
  cursor: default;
}
.nav-dropdown-menu .dropdown-label:hover { background: none; }
.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 6px 8px;
}

/* Mobile dropdown */
.nav-mobile .mobile-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-mobile .mobile-dropdown-content {
  display: none;
  padding: 8px 0 8px 16px;
}
.nav-mobile .mobile-dropdown-content.open { display: block; }
.nav-mobile .mobile-dropdown-content a {
  display: block;
  color: rgba(255,255,255,.7) !important;
  font-size: .9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* =========================================
   BRAND PAGES
   ========================================= */
.brand-hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.brand-hero h1   { color: var(--white); }
.brand-hero p    { color: rgba(255,255,255,.8); max-width: 600px; margin: 16px auto 32px; font-size: 1.05rem; }
.brand-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 18px 36px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.brand-logo-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.brand-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.brand-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.brand-product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: left;
}
.brand-product-card:hover { border-color: var(--purple); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.brand-product-icon { font-size: 2rem; margin-bottom: 14px; }
.brand-product-card h4 { color: var(--dark); margin-bottom: 8px; }
.brand-product-card p  { font-size: .88rem; color: var(--gray-500); }

.brand-highlight {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
  margin-top: 60px;
}
.brand-highlight h2 { color: var(--white); margin-bottom: 12px; }
.brand-highlight p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }

.brand-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.brand-why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.brand-why-item:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.brand-why-icon { font-size: 2rem; margin-bottom: 12px; }
.brand-why-item h4 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.brand-why-item p  { font-size: .85rem; color: var(--gray-500); }

.other-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.other-brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.other-brand-card:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

/* =========================================
   PREPARAÇÃO & FERRAMENTAS PAGES
   ========================================= */
.prep-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.prep-brand-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.prep-brand-section:hover { border-color: var(--purple); box-shadow: var(--shadow-md); }
.prep-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.prep-brand-icon { font-size: 2.5rem; }
.prep-brand-header h3 { color: var(--dark); margin-bottom: 4px; }
.prep-brand-header p  { font-size: .85rem; color: var(--gray-500); }
.prep-products-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prep-product-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
}
.prep-product-item:hover { background: var(--purple-light); }
.prep-product-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 6px;
}
.prep-product-item strong { display: block; color: var(--dark); font-size: .9rem; }
.prep-product-item span   { font-size: .82rem; color: var(--gray-500); }

.tools-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tool-brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.tool-brand-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tool-brand-icon { font-size: 2.5rem; margin-bottom: 14px; }
.tool-brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.tool-brand-card p { font-size: .85rem; color: var(--gray-500); margin-bottom: 14px; }
.tool-products-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tool-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  background: linear-gradient(135deg, #1A1035 0%, #3B1C6E 100%);
  padding: 150px 0 80px;
  text-align: center;
}
.contact-hero h1 { color: var(--white); margin-bottom: 16px; }
.contact-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--purple); box-shadow: var(--shadow-md); }
.contact-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--dark); margin-bottom: 4px; font-size: .95rem; }
.contact-info-card p, .contact-info-card a { color: var(--gray-500); font-size: .9rem; }
.contact-info-card a:hover { color: var(--purple); }
.contact-social-row { display: flex; gap: 12px; margin-top: 8px; }
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.contact-social-btn.ig { background: linear-gradient(135deg, #E1306C, #F77737); color: var(--white); }
.contact-social-btn.fb { background: #1877F2; color: var(--white); }
.contact-social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form-box h3 { color: var(--dark); margin-bottom: 6px; }
.contact-form-box > p { color: var(--gray-500); font-size: .9rem; margin-bottom: 28px; }

/* Brands index page */
.brands-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.brand-index-card {
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  display: block;
}
.brand-index-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-index-icon { font-size: 2.5rem; margin-bottom: 14px; }
.brand-index-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.brand-index-desc { font-size: .82rem; opacity: .75; }

/* Responsive new pages */
@media (max-width: 1024px) {
  .brand-products-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-brands-grid   { grid-template-columns: repeat(2, 1fr); }
  .brands-index-grid   { grid-template-columns: repeat(2, 1fr); }
  .other-brands-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .brand-hero { padding: 130px 0 60px; }
  .brand-products-grid { grid-template-columns: 1fr; }
  .brand-why-grid  { grid-template-columns: 1fr; }
  .prep-brands-grid { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px 20px; }
  .brand-highlight { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .brands-index-grid { grid-template-columns: 1fr 1fr; }
  .tools-brands-grid { grid-template-columns: 1fr 1fr; }
  .other-brands-grid { grid-template-columns: 1fr 1fr; }
}

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

:root {
  --purple:      #7B2FBE;
  --purple-dark: #5B1FA0;
  --purple-light:#F3EEFF;
  --orange:      #F97316;
  --orange-dark: #EA6C10;
  --dark:        #1A1035;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-200:    #E5E7EB;
  --gray-100:    #F3F4F6;
  --white:       #FFFFFF;
  --cream:       #FAFAF8;

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  all .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* --- Tipografia --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--gray-700); line-height: 1.75; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,47,190,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* --- Badge / Tag --- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-orange { background: rgba(249,115,22,.15); color: var(--orange-dark); }
.badge-purple { background: var(--purple-light); color: var(--purple); }

/* --- Section titles --- */
.section-label {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; }

/* --- Seção padrão --- */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--dark); }
.section-purple { background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,16,53,.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 10px 22px; font-size: .9rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1035 0%, #3B1C6E 50%, #5B2CA8 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-text { z-index: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(249,115,22,.2);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero-image { position: relative; }
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.diferencial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}
.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.diferencial-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--purple);
}
.diferencial-icon svg { width: 30px; height: 30px; }
.diferencial-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
}
.diferencial-card h3 { color: var(--purple); margin-bottom: 10px; font-size: 1.1rem; }
.diferencial-card p  { font-size: .9rem; color: var(--gray-500); }

/* =========================================
   SEGMENTOS
   ========================================= */
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.segmento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
}
.segmento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.segmento-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.segmento-body { padding: 24px; }
.segmento-body h3 { color: var(--dark); margin-bottom: 12px; }
.segmento-body p  { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; }

/* =========================================
   MARCAS
   ========================================= */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 48px;
}
.brand-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  aspect-ratio: 1.5;
}
.brand-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.brand-item img { max-height: 48px; object-fit: contain; filter: grayscale(40%); transition: filter .3s; }
.brand-item:hover img { filter: grayscale(0%); }

/* =========================================
   FORMULÁRIO DE LEADS
   ========================================= */
.lead-form-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 90px 0;
}
.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lead-form-text h2 { color: var(--white); margin-bottom: 16px; }
.lead-form-text p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.lead-form-bullets { list-style: none; }
.lead-form-bullets li {
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}
.lead-form-bullets li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(249,115,22,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--orange);
  flex-shrink: 0;
}
.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.lead-form-box h3 { margin-bottom: 8px; color: var(--dark); }
.lead-form-box p  { font-size: .9rem; color: var(--gray-500); margin-bottom: 28px; }

/* --- Form Fields --- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,47,190,.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form feedback */
.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-msg.success { background: #D1FAE5; color: #065F46; }
.form-msg.error   { background: #FEE2E2; color: #991B1B; }

/* =========================================
   MOTIVOS PARA COMPRAR
   ========================================= */
.motivos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.motivo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  gap: 16px;
}
.motivo-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.motivo-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.motivo-card h4 { color: var(--dark); margin-bottom: 8px; }
.motivo-card p  { font-size: .88rem; color: var(--gray-500); }

/* =========================================
   AVALIAÇÕES
   ========================================= */
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.avaliacao-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.avaliacao-card:hover { box-shadow: var(--shadow-md); }
.avaliacao-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 14px; }
.avaliacao-text { font-style: italic; color: var(--gray-500); margin-bottom: 18px; font-size: .95rem; }
.avaliacao-author { font-weight: 700; color: var(--dark); font-size: .9rem; }
.avaliacao-date   { font-size: .8rem; color: var(--gray-500); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--orange);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   LOCALIZAÇÃO
   ========================================= */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.localizacao-infos { display: flex; flex-direction: column; gap: 24px; }
.localizacao-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.localizacao-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.localizacao-item h4 { color: var(--dark); margin-bottom: 4px; font-size: 1rem; }
.localizacao-item p, .localizacao-item a {
  color: var(--gray-500);
  font-size: .95rem;
}
.localizacao-item a:hover { color: var(--purple); }
.localizacao-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  display: block;
}

/* =========================================
   SOBRE / QUEM SOMOS (page)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, #1A1035 0%, #3B1C6E 100%);
  padding: 160px 0 90px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.page-breadcrumb a { color: rgba(255,255,255,.6); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { color: var(--orange); }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.historia-text .section-label { margin-bottom: 8px; }
.historia-text h2 { margin-bottom: 20px; }
.historia-text p  { margin-bottom: 16px; }
.historia-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.edmilson-section {
  background: var(--dark);
  padding: 90px 0;
  overflow: hidden;
}
.edmilson-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.edmilson-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.edmilson-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: .75;
  object-fit: cover;
  object-position: top;
}
.edmilson-photos img:first-child {
  grid-column: 1;
  margin-top: 40px;
}
.edmilson-text h2 { color: var(--white); margin-bottom: 16px; }
.edmilson-text p  { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.edmilson-tag {
  display: inline-block;
  background: rgba(249,115,22,.2);
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.edmilson-quote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
}

.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.atuacao-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.atuacao-card:hover { border-color: var(--purple); box-shadow: var(--shadow-md); }
.atuacao-card .badge { margin-bottom: 16px; }
.atuacao-card h3 { color: var(--dark); margin-bottom: 10px; }
.atuacao-card p  { font-size: .9rem; color: var(--gray-500); }

/* =========================================
   PARA EMPRESAS (page)
   ========================================= */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cliente-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-700);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.cliente-card:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sistema-tinto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sistema-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.sistema-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.sistema-features li .feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.feat-text strong { display: block; color: var(--dark); font-size: .95rem; }
.feat-text span   { color: var(--gray-500); font-size: .85rem; }

.setores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.setor-item {
  background: var(--purple-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.setor-item:hover {
  background: var(--purple);
  color: var(--white);
}
.setor-icon { font-size: 1.8rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0F0820;
  padding: 70px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo img { height: 52px; margin-bottom: 16px; }
.footer-desc { font-size: .9rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.footer-contact-item .icon { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.7);
  transition: fill .2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-social a:hover svg { fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* =========================================
   AUTOMOTIVA
   ========================================= */
.auto-hero {
  background: linear-gradient(135deg, #003F87 0%, #0060CC 100%);
  padding: 80px 0 64px;
  color: var(--white);
}
.auto-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.auto-hero-text h1 { font-size: clamp(2rem,4vw,3rem); font-weight:900; color:var(--white); margin-bottom:14px; }
.auto-hero-text p { font-size:1.05rem; color:rgba(255,255,255,.85); max-width:560px; line-height:1.65; margin-bottom:28px; }
.auto-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.auto-hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  min-width: 220px;
}
.auto-card-top {
  background: rgba(0,0,0,.2);
  border-radius: 16px 16px 0 0;
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.auto-card-list {
  list-style: none;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auto-card-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  padding-left: 12px;
  position: relative;
}
.auto-card-list li::before { content:'•'; position:absolute; left:0; color:rgba(255,255,255,.5); }
.auto-weg-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.auto-weg-text h2 { font-size:1.9rem; margin-bottom:16px; }
.auto-weg-text p { font-size:1rem; color:#444; line-height:1.7; }
.auto-weg-features { display:flex; gap:24px; margin:24px 0; }
.auto-weg-feat { text-align:center; }
.auto-weg-feat strong { display:block; font-size:1.8rem; font-weight:900; color:var(--purple); }
.auto-weg-feat span { font-size:.8rem; color:#888; }
.auto-weg-card { background:#fff; border-radius:16px; padding:28px; box-shadow:var(--shadow-lg); }
.auto-weg-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:20px; color:#1a1a2e; }
.auto-steps { display:flex; flex-direction:column; gap:18px; }
.auto-step { display:flex; gap:16px; align-items:flex-start; }
.auto-step-num {
  width:32px; height:32px; border-radius:50%; background:var(--purple);
  color:#fff; font-weight:800; font-size:.9rem;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.auto-step strong { display:block; font-size:.9rem; margin-bottom:4px; color:#1a1a2e; }
.auto-step p { font-size:.82rem; color:#666; line-height:1.55; }
.auto-types-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:32px; }
.auto-type-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.07); transition:transform .25s; }
.auto-type-card:hover { transform:translateY(-4px); }
.auto-type-header { padding:24px 20px 20px; color:#fff; }
.auto-type-header h3 { font-size:1.1rem; font-weight:800; margin-bottom:4px; }
.auto-type-header span { font-size:.78rem; opacity:.8; }
.auto-type-body { padding:20px; }
.auto-type-body p { font-size:.875rem; color:#555; line-height:1.6; margin-bottom:14px; }
.auto-type-list { list-style:none; display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.auto-type-list li { font-size:.82rem; color:#444; padding-left:14px; position:relative; }
.auto-type-list li::before { content:'→'; position:absolute; left:0; color:var(--purple); font-size:.7rem; }

/* =========================================
   RESIDENCIAL
   ========================================= */
.res-hero {
  background: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: var(--white);
}
.res-hero h1 { font-size:clamp(2rem,4vw,3rem); font-weight:900; color:#fff; margin:12px 0 16px; }
.res-hero p { font-size:1.05rem; color:rgba(255,255,255,.9); max-width:640px; margin:0 auto 28px; line-height:1.65; }
.res-sistemas-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:32px; }
.res-sistema-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-lg); }
.res-sist-header { padding:28px 24px; color:#fff; }
.res-sist-header h3 { font-size:1.3rem; font-weight:800; margin-bottom:6px; }
.res-sist-header p { font-size:.85rem; opacity:.85; }
.res-sist-body { padding:24px; }
.res-sist-body p { font-size:.95rem; color:#444; line-height:1.7; margin-bottom:16px; }
.res-sist-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.res-sist-list li { font-size:.875rem; color:#333; padding-left:16px; position:relative; }
.res-sist-list li::before { content:'✓'; position:absolute; left:0; color:#2E7D32; font-weight:700; }
.res-beneficios { margin-top:48px; }
.res-beneficios h3 { font-size:1.3rem; font-weight:700; text-align:center; margin-bottom:24px; }

/* =========================================
   INDUSTRIAL
   ========================================= */
.ind-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2d50 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: var(--white);
}
.ind-hero h1 { font-size:clamp(2rem,4vw,3rem); font-weight:900; color:#fff; margin:12px 0 16px; }
.ind-hero p { font-size:1.05rem; color:rgba(255,255,255,.85); max-width:640px; margin:0 auto 28px; line-height:1.65; }
.ind-segmentos { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
.ind-seg-group { background:#fff; border-radius:14px; padding:24px; box-shadow:0 2px 10px rgba(0,0,0,.06); }
.ind-seg-group h3 { font-size:1rem; font-weight:700; color:#1a1a2e; margin-bottom:10px; }
.ind-seg-group p { font-size:.875rem; color:#555; line-height:1.65; }

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb-bar {
  background: #f0f0f8;
  border-bottom: 1px solid #e0dff0;
  padding: 10px 0;
}
.breadcrumb-bar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #888;
}
.breadcrumb-bar nav a { color: var(--purple); }
.breadcrumb-bar nav a:hover { text-decoration: underline; }
.breadcrumb-bar nav span { color: #aaa; }
.breadcrumb-bar nav span:last-child { color: #555; }

/* =========================================
   BRAND HERO
   ========================================= */
.brand-hero {
  padding: 80px 0 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}
.brand-hero .container { position: relative; z-index: 1; }
.brand-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.brand-group-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.brand-hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.brand-hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: .9;
  margin-bottom: 10px;
}
.brand-hero-desc {
  font-size: 1rem;
  opacity: .8;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.brand-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.brand-hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px 36px;
}
.brand-hero-icon { font-size: 3.5rem; }
.brand-hero-name-large {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}

/* Brand about */
.brand-about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.brand-about-text h2 { font-size: 1.9rem; margin-bottom: 16px; }
.brand-about-text p { font-size: 1.05rem; line-height: 1.75; color: #444; margin-bottom: 28px; }
.brand-about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.brand-card-icon { font-size: 3rem; margin-bottom: 10px; }
.brand-about-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.brand-about-card > p { font-size: .85rem; color: #888; }
.brand-card-divider { height: 1px; background: #eee; margin: 16px 0; }
.brand-card-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.brand-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: #333;
}
.feature-icon { font-size: 1.1rem; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.product-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.product-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; }
.product-card p { font-size: .875rem; color: #555; line-height: 1.6; flex: 1; }
.product-cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: auto;
  display: inline-block;
}
.product-cta:hover { color: var(--orange); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .875rem; color: #555; line-height: 1.6; }

/* Brand CTA */
.brand-cta {
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.brand-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
}
.brand-cta .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Other brands */
.other-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.other-brand-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.other-brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.other-brand-icon { font-size: 2rem; margin-bottom: 8px; }
.other-brand-card h4 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.other-brand-card p { font-size: .78rem; color: #888; margin-bottom: 10px; }
.other-brand-link { font-size: .78rem; font-weight: 600; color: var(--purple); }
.other-brand-all { background: linear-gradient(135deg, #f8f0ff, #ede0ff); border: 2px dashed #c0a0e0; }

/* =========================================
   BRANDS INDEX
   ========================================= */
.brands-index-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1060 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: var(--white);
}
.brands-index-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 16px;
}
.brands-index-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; line-height: 1.65; }
.brands-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.brand-index-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.brand-index-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bic-top {
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.bic-icon { font-size: 2.5rem; }
.bic-name { font-size: 1.3rem; font-weight: 800; }
.bic-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.bic-group { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 6px; display: block; }
.bic-tagline { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.bic-desc { font-size: .82rem; color: #666; line-height: 1.55; flex: 1; margin-bottom: 14px; }
.bic-cta { font-size: .82rem; font-weight: 700; color: var(--brand-color, var(--purple)); margin-top: auto; }

/* =========================================
   PREPARAÇÃO & FERRAMENTAS
   ========================================= */
.prep-hero {
  background: linear-gradient(135deg, #1B4332 0%, #2E7D32 50%, #388E3C 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: var(--white);
}
.tools-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1060 100%);
}
.prep-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 16px;
}
.prep-hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 28px; line-height: 1.65; }
.prep-hero-actions { display: flex; justify-content: center; gap: 12px; }
.prep-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.prep-tip {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s;
}
.prep-tip:hover { transform: translateY(-4px); }
.prep-tip-icon { margin-bottom: 12px; color: var(--purple); display: flex; justify-content: center; }
.prep-tip-icon svg { width: 42px; height: 42px; }
.prep-tip h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.prep-tip p { font-size: .875rem; color: #666; line-height: 1.6; }
.prep-brand-section { }
.prep-alt { background: #f8f8fc; }
.prep-brand-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 32px;
}
.prep-brand-badge {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  color: var(--white);
}
.prep-brand-icon { font-size: 2.5rem; }
.prep-brand-name { font-size: 1.3rem; font-weight: 800; }
.prep-brand-intro h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; color: #1a1a2e; }
.prep-brand-intro p { font-size: .95rem; color: #555; line-height: 1.65; margin-bottom: 18px; max-width: 680px; }
.tools-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tool-highlight {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s;
}
.tool-highlight:hover { transform: translateY(-4px); }
.tool-highlight-icon { margin-bottom: 12px; color: var(--purple); display: flex; justify-content: center; }
.tool-highlight-icon svg { width: 40px; height: 40px; }
.tool-highlight h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.tool-highlight p { font-size: .875rem; color: #666; line-height: 1.6; }

/* =========================================
   CONTATO
   ========================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1060 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: var(--white);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 16px;
}
.contact-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.contact-channel {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.contact-channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-whatsapp { border-left: 4px solid #25D366; }
.contact-whatsapp .cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-whatsapp .cc-icon svg { width: 24px; height: 24px; fill: var(--white); }
.cc-phone-icon, .cc-email-icon, .cc-location-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: #f0f0f8;
}
.cc-body { flex: 1; }
.cc-body h3 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.cc-body a, .cc-body p { font-size: .875rem; color: #555; }
.cc-body a { color: var(--purple); font-weight: 500; }
.cc-badge {
  font-size: .75rem;
  color: #888;
  margin-top: 4px;
  display: block;
}
.cc-action {
  font-size: .8rem;
  font-weight: 600;
  color: #25D366;
  margin-top: 6px;
  display: block;
}
.contact-form-section { }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 1.7rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: .95rem; color: #555; margin-bottom: 24px; }
.contact-info-wrap h2 { font-size: 1.7rem; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: .875rem; color: #555; line-height: 1.55; }
.contact-info-item a { color: var(--purple); }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s;
}
.faq-item:hover { transform: translateY(-3px); }
.faq-item h3 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.faq-item p { font-size: .875rem; color: #555; line-height: 1.65; }
.faq-item a { color: var(--purple); font-weight: 500; }

/* btn variants */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.2); }

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 1024px) {
  .diferenciais-grid  { grid-template-columns: repeat(2, 1fr); }
  .brands-grid        { grid-template-columns: repeat(4, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .clientes-grid      { grid-template-columns: repeat(3, 1fr); }
  .setores-grid       { grid-template-columns: repeat(2, 1fr); }
  .brands-index-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid      { grid-template-columns: repeat(2, 1fr); }
  .other-brands-grid  { grid-template-columns: repeat(3, 1fr); }
  .contact-channels   { grid-template-columns: repeat(2, 1fr); }
  .prep-tips-grid     { grid-template-columns: repeat(2, 1fr); }
  .tools-highlights   { grid-template-columns: repeat(2, 1fr); }
  .faq-grid           { grid-template-columns: repeat(2, 1fr); }
  .brand-about-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 36px; padding: 60px 0; }
  .hero-image { display: none; }
  .hero-btns  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .segmentos-grid { grid-template-columns: 1fr; }
  .lead-form-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .motivos-grid { grid-template-columns: 1fr 1fr; }
  .avaliacoes-grid { grid-template-columns: 1fr; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .historia-grid { grid-template-columns: 1fr; }
  .edmilson-grid { grid-template-columns: 1fr; }
  .edmilson-photos { margin-top: 32px; }
  .atuacao-grid { grid-template-columns: 1fr; }
  .sistema-tinto-grid { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .brand-hero-inner { grid-template-columns: 1fr; }
  .brand-hero-logo { display: none; }
  .auto-hero-inner { grid-template-columns: 1fr; }
  .auto-hero-card { display: none; }
  .auto-weg-grid { grid-template-columns: 1fr; }
  .auto-types-grid { grid-template-columns: 1fr 1fr; }
  .res-sistemas-grid { grid-template-columns: 1fr; }
  .ind-segmentos { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .other-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .prep-brand-header { grid-template-columns: 1fr; }
  .prep-tips-grid { grid-template-columns: 1fr 1fr; }
  .tools-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .motivos-grid { grid-template-columns: 1fr; }
  .brands-grid  { grid-template-columns: repeat(3, 1fr); }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
  .setores-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .lead-form-box { padding: 24px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .brands-index-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .prep-tips-grid { grid-template-columns: 1fr; }
  .tools-highlights { grid-template-columns: 1fr; }
  .other-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .auto-types-grid { grid-template-columns: 1fr; }
  .ind-segmentos { grid-template-columns: 1fr; }
  .auto-weg-features { flex-wrap: wrap; }
}
