:root {
  --c-magenta: #ec008c;
  --c-cyan:    #00aeef;
  --c-yellow:  #fff200;
  --c-dark:    #1f1f1f;
  --c-text:    #555;
  --c-muted:   #888;
  --c-bg:      #f4f4f4;
  --c-bg-soft: #fafafa;
  --c-border:  #e5e5e5;
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-magenta); text-decoration: none; }
a:hover { color: var(--c-cyan); }

/* ===== Header / Nav ===== */
.site-header { background: #fff; }
.site-header .navbar-brand img { display: block; }
.site-header .nav-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem !important;
  position: relative;
}
.site-header .nav-link.active,
.site-header .nav-link:hover { color: #fff !important; background: var(--c-cyan); }
.site-header .nav-link.active::after {
  content: ''; position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--c-cyan);
}
.header-divider { height: 4px; background: var(--c-dark); }

/* ===== Hero Carousel ===== */
.hero-carousel {
  background: #fff;
  text-align: center;
}
.hero-carousel .carousel-item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--c-magenta);
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #fff;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 5%;
}

/* ===== Hero ===== */
.hero {
  background: var(--c-bg);
  padding: 4rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.hero .hero-icon {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px dashed var(--c-muted);
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted);
}
.hero h1 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}
.hero h1 .pink { color: var(--c-magenta); }
.hero h1 .cyan { color: var(--c-cyan); }

/* ===== Section title ===== */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 2px;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--c-border);
  margin: 0 0 3rem;
}

/* ===== Serviços ===== */
.services { padding: 0 0 3rem; }
.service {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 2rem;
}
.service .icon {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
}
.service .icon.icon-img {
  background: transparent;
  width: 80px; height: 80px;
}
.service .icon.icon-img img {
  width: 100%; height: 100%; object-fit: contain;
}
.service h3 {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
  color: #444; margin: 0.4rem 0 0.6rem;
}
.service p { font-size: 0.9rem; line-height: 1.55; margin: 0; color: var(--c-text); }

/* ===== Promoções ===== */
.promotions { background: #fff; padding-bottom: 3rem; }
.promo-card { display: flex; gap: 1.5rem; align-items: flex-start; }
.promo-card .promo-img {
  flex: 0 0 220px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}
.promo-card .promo-img img { width: 100%; height: auto; display: block; }
.promo-card h3 {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
  color: #444; margin: 0 0 0.8rem;
}
.promo-card .specs { font-size: 0.85rem; line-height: 1.7; margin: 0 0 0.7rem; }
.promo-card .specs b { color: #333; }
.promo-card .preco { font-weight: 700; color: var(--c-magenta); font-size: 1rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--c-bg);
  border-top: 4px solid var(--c-dark);
  color: var(--c-text);
}
.contact-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; margin-bottom: 0.5rem;
}
.contact-list i {
  color: var(--c-dark); font-size: 1rem;
  background: #fff; width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list a { color: var(--c-text); }
.contact-list a:hover { color: var(--c-magenta); }
.social-icons a {
  display: inline-flex; width: 34px; height: 34px;
  background: #888; color: #fff; border-radius: 50%;
  align-items: center; justify-content: center;
  margin-right: 6px; transition: background 0.2s;
}
.social-icons a:hover { background: var(--c-magenta); color: #fff; }
.copy { font-size: 0.75rem; color: var(--c-muted); letter-spacing: 1px; }

/* ===== Páginas internas ===== */
.page-title-bar {
  background: var(--c-bg);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}
.page-title-bar h1 {
  font-size: 1.8rem; font-weight: 700;
  color: #444; letter-spacing: 1px; margin: 0;
}
.page-title-bar .breadcrumb {
  justify-content: center; margin: 0.5rem 0 0;
  font-size: 0.85rem;
}
.page-title-bar .breadcrumb a { color: var(--c-muted); }

.content-section { padding: 3rem 0; }
.content-section h2 {
  font-size: 1.3rem; font-weight: 700; color: #444;
  letter-spacing: 1px; margin-bottom: 1.2rem;
}

/* ===== Clientes ===== */
.client-logo {
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.client-logo:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.client-logo img {
  max-width: 100%; max-height: 70px;
  filter: grayscale(100%); opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logo:hover img { filter: none; opacity: 1; }

/* ===== Contato ===== */
.contact-card {
  background: #fff; border: 1px solid var(--c-border);
  padding: 2rem; margin-bottom: 1.5rem;
}
.contact-card .icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-cyan); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-card.magenta .icon-circle { background: var(--c-magenta); }
.contact-card.dark .icon-circle { background: var(--c-dark); }
.contact-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: 1px; color: #444; }
.contact-card a { color: var(--c-text); word-break: break-word; }
.contact-card a:hover { color: var(--c-magenta); }

.btn-whatsapp {
  background: #25d366; color: #fff; border: none;
  padding: 0.8rem 1.8rem; font-weight: 600;
  border-radius: 50px; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-whatsapp:hover { background: #1ebe57; color: #fff; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== Página de processos / canais ===== */
.process-row {
  display: flex; gap: 1.2rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--c-border);
}
.process-row:last-child { border-bottom: none; }
.process-row .process-icon {
  flex: 0 0 80px; width: 80px; height: 80px; object-fit: contain;
}
.process-row h3 {
  font-size: 1.2rem; font-weight: 700; color: #444;
  margin: 0 0 0.5rem;
}
.process-row p { margin-bottom: 0.6rem; font-size: 0.92rem; line-height: 1.55; }

/* ===== Sidebar Outros Serviços ===== */
.sidebar-title {
  font-size: 1.15rem; font-weight: 700; color: #444;
  letter-spacing: 1px; margin-bottom: 1.2rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--c-magenta);
}
.sidebar-item {
  display: flex; gap: 0.8rem; margin-bottom: 1.5rem;
}
.sidebar-item .num {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-magenta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.sidebar-item h5 {
  font-size: 0.95rem; font-weight: 700; color: #444;
  margin: 0.3rem 0 0.4rem;
}
.sidebar-item p { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.4rem; }
.sidebar-item a { font-size: 0.85rem; font-weight: 600; }

/* ===== Galeria (Franquias / PDV / Didático) ===== */
.gallery-item {
  display: block; background: #fff;
  border: 1px solid var(--c-border);
  padding: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%; height: 160px; object-fit: cover; display: block;
}

/* ===== Process detail cards ===== */
.process-card {
  background: #fff; border: 1px solid var(--c-border);
  padding: 2rem; margin-bottom: 1.5rem; height: 100%;
  text-align: center;
}
.process-card .icon-big {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--c-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; margin: 0 auto 1.2rem;
}
.process-card h3 {
  font-size: 1.15rem; font-weight: 700; letter-spacing: 1px;
  color: #444; margin-bottom: 1rem;
}
.process-card p { font-size: 0.9rem; line-height: 1.6; }

/* Responsivo */
@media (max-width: 991px) {
  .site-header .nav-link.active::after { display: none; }
  .promo-card { flex-direction: column; }
  .promo-card .promo-img { flex: 0 0 auto; width: 100%; max-width: 280px; }
}
