/* =============================================
   C&R FUNDIDOS - Stylesheet Principal (VERSÃO CORRIGIDA)
   Cores: Laranja #E8720C / Cinza #3D4A5C / Escuro #1A1E2E
   
   INSTRUÇÕES PARA WORDPRESS:
   Substitua os URLs abaixo pelos links reais das imagens da sua Biblioteca de Mídia
   ============================================= */

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

.section-tag {
  display: inline-block;
  background: rgba(232, 114, 12, 0.12);
  color: #E8720C;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border-left: 3px solid #E8720C;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-left-color: #E8720C;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1A1E2E;
  margin-bottom: 20px;
}

.section-title strong { color: #E8720C; }

.section-title-light { color: #fff; }
.section-title-light strong { color: #E8720C; }

.section-desc {
  color: #666;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #E8720C;
  color: #fff;
  border-color: #E8720C;
}

.btn-primary:hover {
  background: #c55f08;
  border-color: #c55f08;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 114, 12, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #1A1E2E;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar {
  background: #1A1E2E;
  color: #ccc;
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span, .topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
}

.topbar-left i, .topbar-right i { color: #E8720C; }

.topbar-right a:hover { color: #E8720C; }

/* ===== HEADER ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3D4A5C;
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #E8720C;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after { transform: scaleX(1); }

.navbar ul li a:hover,
.navbar ul li a.active { color: #E8720C; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #3D4A5C;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

/* 
  INSTRUÇÕES PARA WORDPRESS - IMAGENS DO HERO:
  
  Substitua os URLs abaixo pelos links reais das imagens:
  - hero_bg.jpg: Link da imagem de fundo do slider 1
  - hero_bg2.jpg: Link da imagem de fundo do slider 2
  - hero_bg3.jpg: Link da imagem de fundo do slider 3
  
  Exemplo: background-image: url('https://seusite.com.br/wp-content/uploads/2025/03/hero_bg.jpg');
*/

.hero-slide:nth-child(1) {
  background-image: url('SUBSTITUIR_AQUI_HERO_BG_1');
}

.hero-slide:nth-child(2) {
  background-image: url('SUBSTITUIR_AQUI_HERO_BG_2');
}

.hero-slide:nth-child(3) {
  background-image: url('SUBSTITUIR_AQUI_HERO_BG_3');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 30, 46, 0.88) 0%,
    rgba(26, 30, 46, 0.65) 50%,
    rgba(232, 114, 12, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  color: #E8720C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span { color: #E8720C; }

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ===== CTA STRIP ===== */
.cta-strip {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: relative;
  z-index: 3;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.cta-item:last-child { border-right: none; }
.cta-item:hover { background: #fafafa; }

.cta-item > i {
  font-size: 2rem;
  color: #E8720C;
  flex-shrink: 0;
}

.cta-item div strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1E2E;
}

.cta-item div span {
  font-size: 0.82rem;
  color: #888;
}

.cta-orcamento {
  background: #E8720C;
}

.cta-orcamento a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  color: #fff;
}

.cta-orcamento i { color: #fff !important; font-size: 2rem; }

.cta-orcamento div strong { color: #fff; font-size: 1rem; }
.cta-orcamento div span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.cta-orcamento:hover { background: #c55f08; }

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: #f8f9fb;
}

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

.sobre-text p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.sobre-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #E8720C;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.sobre-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.sobre-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sobre-img-wrapper:hover img { transform: scale(1.03); }

.sobre-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #E8720C;
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(232, 114, 12, 0.4);
}

.sobre-badge i { font-size: 1.5rem; }

/* ===== PRODUTOS ===== */
.produtos {
  padding: 100px 0;
  background: #fff;
}

.produtos-header {
  text-align: center;
  margin-bottom: 50px;
}

.produtos-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  background: transparent;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E8720C;
  border-color: #E8720C;
  color: #fff;
}

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

.produto-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.produto-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produto-card:hover .produto-img img { transform: scale(1.08); }

.produto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 30, 46, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-card:hover .produto-overlay { opacity: 1; }

.produto-info {
  padding: 20px;
}

.produto-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1E2E;
  margin-bottom: 8px;
}

.produto-info p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

.produtos-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, #1A1E2E 0%, #2d3450 100%);
  border-radius: 12px;
  color: #fff;
}

.produtos-cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 100px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* 
  INSTRUÇÕES PARA WORDPRESS - FUNDO DA SEÇÃO DIFERENCIAIS:
  
  Substitua o URL abaixo pelo link real da imagem de fundo:
  - Você pode usar qualquer uma das imagens industriais ou deixar apenas o gradiente
  
  Exemplo: background: linear-gradient(135deg, #1A1E2E 0%, #2d3450 60%, #1A1E2E 100%), url('https://seusite.com.br/wp-content/uploads/2025/03/diferenciais_bg.jpg');
*/

.diferenciais-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1E2E 0%, #2d3450 60%, #1A1E2E 100%);
  z-index: 0;
  /* OPCIONAL: Adicione uma imagem de fundo aqui se desejar */
  /* background-image: url('SUBSTITUIR_AQUI_DIFERENCIAIS_BG'); */
  /* background-size: cover; */
  /* background-position: center; */
}

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

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.diferencial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.diferencial-card:hover {
  background: rgba(232, 114, 12, 0.15);
  border-color: rgba(232, 114, 12, 0.4);
  transform: translateY(-4px);
}

.diferencial-icon {
  width: 70px;
  height: 70px;
  background: rgba(232, 114, 12, 0.15);
  border: 2px solid rgba(232, 114, 12, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
  background: #E8720C;
  border-color: #E8720C;
}

.diferencial-icon i {
  font-size: 1.6rem;
  color: #E8720C;
  transition: color 0.3s ease;
}

.diferencial-card:hover .diferencial-icon i { color: #fff; }

.diferencial-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.diferencial-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
  padding: 100px 0;
  background: #f8f9fb;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contato-info p {
  color: #666;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contato-icon {
  width: 46px;
  height: 46px;
  background: #E8720C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon i { color: #fff; font-size: 1rem; }

.contato-item div strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1A1E2E;
}

.contato-item div span {
  font-size: 0.9rem;
  color: #666;
}

.contato-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1A1E2E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-btn:hover { background: #E8720C; transform: translateY(-3px); }
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1da851; }

/* ===== FORM ===== */
.contato-form {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contato-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1A1E2E;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8720C;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3D4A5C;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s ease;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #E8720C;
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: #d4edda;
  color: #155724;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== FOOTER ===== */
.footer { background: #1A1E2E; color: #ccc; }

.footer-top { padding: 70px 0 50px; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand img {
  height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-links h4,
.footer-contato h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E8720C;
  display: inline-block;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a::before {
  content: '›';
  color: #E8720C;
  font-size: 1.1rem;
}

.footer-links ul li a:hover { color: #E8720C; padding-left: 4px; }

.footer-contato p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-contato i { color: #E8720C; width: 16px; }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1A1E2E;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #E8720C;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 114, 12, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover { background: #c55f08; transform: translateY(-3px); }

/* ===== HIDDEN (filter) ===== */
.produto-card.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cta-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 50px; }
  .sobre-image { order: -1; }
  .sobre-img-wrapper img { height: 360px; }
  .contato-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }

  .hamburger { display: flex; }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1A1E2E;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .navbar.open { right: 0; }

  .navbar ul { flex-direction: column; gap: 4px; }

  .navbar ul li a {
    color: #fff;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
  }

  .navbar ul li a::after { display: none; }
  .navbar ul li a:hover { color: #E8720C; padding-left: 8px; }

  .section-title { font-size: 1.7rem; }
  .hero-title { font-size: 2rem; }

  .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-item { border-right: none; border-bottom: 1px solid #f0f0f0; }

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

  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-top-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .produtos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .sobre-stats { gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .contato-form { padding: 24px; }
}
