/* ========================================
   BIG AMERICAN - Site Institucional
   CSS Principal (conversão de Tailwind)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

html {
  overflow-x: hidden
}

/* ---- Custom Scrollbar (Desktop) ---- */
@media (min-width: 769px) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--red) #000;
  }

  *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  *::-webkit-scrollbar-track {
    background: #000;
  }

  *::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 9999px;
  }

  *::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 104px;
}

img {
  max-width: 100%;
  display: block
}
/* Correção da Logo no Header */
.header .logo {
    display: flex;
    align-items: center;
    height: 40px; /* Define a altura máxima do container da logo */
}



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

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: 'Poppins', sans-serif
}

/* ---- CSS Variables ---- */
:root {
  --red: #ff2e17;
  --red-dark: #cc0000;
  --black: #000;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --bg-header: rgba(238, 238, 238, 0.93);
  --transition: all 0.3s ease;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.flex {
  display: flex
}

.flex-col {
  flex-direction: column
}

.items-center {
  align-items: center
}

.items-start {
  align-items: start
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.gap-2 {
  gap: 8px
}

.gap-3 {
  gap: 12px
}

.gap-4 {
  gap: 16px
}

.gap-5 {
  gap: 20px
}

.gap-6 {
  gap: 24px
}

.gap-8 {
  gap: 32px
}

.gap-10 {
  gap: 40px
}

.gap-12 {
  gap: 48px
}

.gap-16 {
  gap: 64px
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.w-full {
  width: 100%
}

.relative {
  position: relative
}

.overflow-hidden {
  overflow: hidden
}

.hidden {
  display: none
}

.block {
  display: block
}

.inline-flex {
  display: inline-flex
}

.inline-block {
  display: inline-block
}

.grid {
  display: grid
}

.grid-cols-1 {
  grid-template-columns: 1fr
}

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

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

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr)
}

.row-span-2 {
  grid-row: span 2
}

.rounded-lg {
  border-radius: 8px
}

.rounded-xl {
  border-radius: 12px
}

.rounded-2xl {
  border-radius: 16px
}

.rounded-3xl {
  border-radius: 24px
}

.rounded-full {
  border-radius: 9999px
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1)
}

.shadow-lg {
  box-shadow: var(--shadow-lg)
}

.shadow-xl {
  box-shadow: var(--shadow-xl)
}

.shadow-2xl {
  box-shadow: var(--shadow-2xl)
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.object-cover {
  object-fit: cover
}

.object-contain {
  object-fit: contain
}

.pointer-events-none {
  pointer-events: none
}

.whitespace-nowrap {
  white-space: nowrap
}

.flex-shrink-0 {
  flex-shrink: 0
}

.flex-1 {
  flex: 1
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

/* ============================================
   HEADER
   ============================================ */
   
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}



.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bg-header);
  transition: transform .3s ease-in-out;
}

.site-header-wrapper.header-hidden {
  transform: translateY(-100%)
}

.site-header {
  background: var(--bg-header);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 12px 48px;
  position: relative;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 240px;
  height: 40px;
}

.header-logo img {
  height: 40px;     /* controla o tamanho real */
  width: auto;      /* mantém proporção */
  max-width: 180px; /* evita ficar gigante */
  object-fit: contain;
}
/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  z-index: 50;
  transition: color .3s;
}

.mobile-menu-btn:hover {
  color: var(--red)
}

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

/* Desktop Navigation */
.desktop-nav {
  background: var(--bg-header);
  height: 44px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.desktop-nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}

.nav-link {
  font-weight: 500;
  color: #000;
  transition: color .3s;
  font-size: 13px;
}

.nav-link:hover {
  color: red
}

.nav-link-red {
  font-weight: 700;
  color: red;
  transition: color .3s;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-red:hover {
  color: var(--red-dark)
}

.nav-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-social-icons a,
.nav-social-icons svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* Dropdown */
.equipamentos-dropdown {
  position: relative
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  transition: color .3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.dropdown-trigger:hover {
  color: red
}

.dropdown-trigger .chevron {
  transition: transform .3s;
  width: 12px;
  height: 12px;
}

.dropdown-trigger.open .chevron {
  transform: rotate(180deg)
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  overflow: hidden;
  min-width: 310px;
  z-index: 50;
  max-height: 550px;
  overflow-y: auto;
}

.dropdown-menu.show {
  display: block
}

.dropdown-category {
  border-bottom: 1px solid #f3f4f6
}

.dropdown-category:last-of-type {
  border-bottom: none
}

.dropdown-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transition: background .3s;
  cursor: pointer;
}

.dropdown-category-header:hover {
  background: rgba(255, 46, 23, .05)
}

.dropdown-category-header a {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  transition: color .3s;
}

.dropdown-category-header a:hover {
  color: var(--red)
}

.dropdown-category-header .chevron {
  transition: transform .3s;
  width: 14px;
  height: 14px;
}

.dropdown-category-header.expanded .chevron {
  transform: rotate(180deg)
}

.dropdown-items {
  display: none;
  background: #f9fafb;
  padding: 4px 0;
}

.dropdown-items.show {
  display: block
}

.dropdown-items a {
  display: block;
  padding: 14px 28px;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray-700);
  transition: all .3s;
  border-left: 2px solid transparent;
}

.dropdown-items a:hover {
  background: #fff;
  color: var(--red);
  border-left-color: var(--red);
}

.dropdown-all-link {
  display: block;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  transition: background .3s;
  border-top: 1px solid var(--gray-200);
  margin-top: 4px;
}

.dropdown-all-link:hover {
  background: rgba(255, 46, 23, .1)
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  animation: fadeIn .3s;
}

.mobile-overlay.show {
  display: block
}

.mobile-sidebar {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: #fff;
  z-index: 9999;
  box-shadow: var(--shadow-2xl);
  overflow-y: auto;
  transition: right .3s ease;
}

.mobile-sidebar.show {
  display: block;
  right: 0
}

.mobile-sidebar-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.mobile-sidebar-header h2 {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.mobile-sidebar-header .accent-bar {
  width: 4px;
  height: 32px;
  background: #fff;
  border-radius: 9999px
}

.mobile-sidebar-close {
  color: #fff;
  padding: 8px;
  border-radius: 9999px;
  transition: background .3s;
}

.mobile-sidebar-close:hover {
  background: rgba(255, 255, 255, .2)
}

.mobile-sidebar-close svg {
  width: 28px;
  height: 28px
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 4px
}

.mobile-nav-link {
  font-weight: 700;
  font-size: 17px;
  color: #000;
  padding: 16px;
  border-radius: 12px;
  transition: background .3s;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link:hover {
  background: #f9fafb
}

.mobile-equip-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 17px;
  color: #000;
  padding: 16px;
  border-radius: 12px;
  transition: background .3s;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-equip-toggle:hover {
  background: #f9fafb
}

.mobile-equip-toggle .chevron {
  color: var(--red);
  transition: transform .3s
}

.mobile-equip-toggle.open .chevron {
  transform: rotate(180deg)
}

.mobile-categories {
  display: none;
  padding-left: 8px;
  gap: 8px;
  margin-top: 8px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px;
}

.mobile-categories.show {
  display: flex;
  flex-direction: column
}

.mobile-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: background .3s;
}

.mobile-cat-btn:hover {
  background: #f9fafb
}

.mobile-cat-btn .chevron {
  color: var(--red);
  transition: transform .3s
}

.mobile-cat-btn.open .chevron {
  transform: rotate(180deg)
}

.mobile-cat-items {
  display: none;
  padding: 0 8px 8px
}

.mobile-cat-items.show {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.mobile-cat-items a {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all .3s;
  margin-left: 8px;
  border-left: 3px solid transparent;
}

.mobile-cat-items a:hover {
  color: var(--red);
  background: rgba(255, 46, 23, .05);
  border-left-color: var(--red)
}

.mobile-all-equip {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  padding: 16px;
  margin-top: 12px;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
  box-shadow: var(--shadow-lg);
}

.mobile-all-equip:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.02)
}

.mobile-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  padding: 20px 16px;
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: var(--shadow-lg);
  transition: all .3s;
}

.mobile-cta-whatsapp:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.02)
}

.mobile-social {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.mobile-social p {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px
}

.mobile-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.mobile-social-grid a {
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f3f4f6, #f9fafb);
  box-shadow: var(--shadow-md);
  transition: all .3s;
}

.mobile-social-grid a:hover {
  background: linear-gradient(to bottom right, var(--red), var(--red-dark));
  box-shadow: var(--shadow-lg);
}

.mobile-social-grid a svg {
  color: var(--red);
  width: 22px;
  height: 22px;
  transition: color .3s
}

.mobile-social-grid a:hover svg {
  color: #fff
}

.mobile-contact {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  padding-bottom: 24px;
}

.mobile-contact p {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .3s;
  margin-bottom: 8px;
}

.mobile-contact a:hover {
  color: var(--red)
}

.mobile-contact a svg {
  flex-shrink: 0;
  color: var(--red);
}

/* Mobile Sidebar Footer */
.mobile-sidebar-footer {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-footer-logo {
  display: inline-block;
  width: 100%;
}

.mobile-footer-logo img {
  width: 100%;
  height: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #000;
  width: 100%
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 48px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.footer-logo {
  width: 300px
}

.footer-logo img {
  width: 100%;
  height: auto
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-contact-links a {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  transition: color .3s;
}

.footer-contact-links a:hover {
  color: var(--red)
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-nav h3 {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px
}

.footer-nav a {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  transition: color .3s;
}

.footer-nav a:hover {
  color: #fff
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-social h3 {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px
}

.footer-social-icons {
  display: flex;
  gap: 16px
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  color: #fff;
  padding: 8px;
  border-radius: 9999px;
  transition: all .3s;
}

.footer-social-icons a:hover {
  color: var(--red);
  background: rgba(255, 255, 255, .1)
}

.footer-social-icons svg {
  width: 26px;
  height: 26px
}

.footer-copyright {
  text-align: center
}

.footer-copyright p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  padding: 16px;
  box-shadow: var(--shadow-2xl);
  transition: all .3s;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1)
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  font-weight: 500;
  font-size: 14px;
}

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

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-dark {
  background: linear-gradient(to right, #000, var(--gray-900));
  padding: 96px 32px;
}

.hero-dark h1 {
  font-weight: 700;
  font-size: 64px;
  color: var(--red);
  letter-spacing: -1.28px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-dark p {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  line-height: 1.45;
  max-width: 768px;
}

/* Home Hero */
.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 64px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.home-hero-bg .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #000, var(--gray-900), #000);
}

.home-hero-bg .bg-image {
  position: absolute;
  inset: 0;
  opacity: .25;
}

.home-hero-bg .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.home-hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .5), transparent);
}

.home-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.home-hero-text h1 {
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1.4px;
  line-height: 1.15;
  font-size: 64px;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .15));
}

.home-hero-text .subtitle {
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  letter-spacing: -.12px;
  font-size: 16px;
}

.home-hero-sep {
  display: flex;
  align-items: center;
  gap: 12px
}

.home-hero-sep .line {
  height: 3px;
  width: 64px;
  background: var(--red);
  border-radius: 9999px
}

.home-hero-sep .keywords {
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  letter-spacing: -.12px;
}

.home-hero-image {
  position: relative;
  height: 578px;
}

.home-hero-image .img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  transition: box-shadow .5s;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8
}

/* CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 36px;
  border-radius: 12px;
  border: 2px solid var(--red);
  transition: all .3s;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-primary svg {
  width: 20px;
  height: 20px
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff
}

.btn-secondary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 20px 48px;
  border-radius: 8px;
  transition: background .3s;
}

.btn-secondary:hover {
  background: var(--red-dark)
}

.btn-black {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background .3s;
}

.btn-black:hover {
  background: var(--gray-800)
}

/* ============================================
   QUEM SOMOS SECTION (Home)
   ============================================ */
.quem-somos {
  background: linear-gradient(to bottom right, #000, var(--gray-900), #000);
  padding: 48px 64px;
  position: relative;
}

.quem-somos .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background: linear-gradient(to right, rgba(255, 46, 23, .063) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 46, 23, .063) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.quem-somos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.section-icon-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-icon-divider .line {
  height: 3px;
  width: 48px;
  background: var(--red);
  border-radius: 9999px
}

.section-icon-divider svg {
  width: 40px;
  height: 40px;
  color: var(--red)
}

.quem-somos h2 {
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  text-align: center;
  letter-spacing: -1.12px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.quem-somos .section-subtitle {
  font-weight: 600;
  font-size: 16px;
  color: var(--red);
  text-align: center;
}

.quem-somos-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-2xl);
}

.quem-somos-card p {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.75;
  margin-bottom: 16px;
}

.quem-somos-card .highlight {
  color: var(--red);
  font-weight: 700
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(to bottom right, var(--red), var(--red-dark));
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  transition: all .3s;
}

.stat-card:hover {
  transform: scale(1.05)
}

.stat-card svg {
  margin: 0 auto 20px;
  color: #fff;
  width: 48px;
  height: 48px
}

.stat-card h3 {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  margin-bottom: 12px
}

.stat-card p {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, .9)
}

/* ============================================
   POR QUE ESCOLHER (Home)
   ============================================ */
.porque-section {
  background: linear-gradient(to bottom right, var(--gray-50), var(--gray-100), var(--gray-50));
  padding: 64px;
  position: relative;
}

.porque-section .dot-pattern {
  position: absolute;
  inset: 0;
  opacity: .3;
  background: radial-gradient(circle at 1px 1px, rgba(255, 46, 23, .08) 1px, transparent 0);
  background-size: 40px 40px;
}

.porque-header {
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  z-index: 10
}

.porque-header h2 {
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1.28px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-size: 48px;
}

.porque-header p {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  transition: all .5s;
}

.feature-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: scale(1.02)
}

.feature-card .card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px
}

.feature-card .card-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform .7s;
}

.feature-card:hover .card-bg img {
  transform: scale(1.1)
}

.feature-card .card-bg .overlay-dark {
  position: absolute;
  inset: 0;
  border-radius: 24px;
}

.feature-card .card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.card-content p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-card .icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.feature-card .icon-title svg {
  color: var(--red);
  width: 38px;
  height: 38px
}

.feature-card .icon-title h3 {
  font-weight: 700;
  color: #fff;
  font-size: 36px;
  letter-spacing: -.6px
}

.feature-card .card-content>p {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, .95);
  letter-spacing: -.12px;
  line-height: 1.7;
}

.feature-card.confianca {
  min-height: 380px
}

.feature-card.confianca .overlay-dark {
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent)
}

.feature-card.confianca .card-bg .gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #000, var(--gray-900));
  border-radius: 24px;
}

.feature-card.confianca .card-bg img {
  opacity: .25
}

.feature-card.feito-durar {
  min-height: 766px
}

.feature-card.feito-durar .overlay-dark {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, .8), rgba(0, 0, 0, .6));
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.bullet-list .bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.bullet-list .dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0
}

.bullet-list .bullet-item strong {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 8px
}

.bullet-list .bullet-item span {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6
}

.feature-card.lider {
  min-height: 362px
}

.feature-card.lider .overlay-dark {
  background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .7));
}

/* ============================================
   CONTACT FORM (Home)
   ============================================ */
.contact-section {
  background: linear-gradient(to bottom right, #fff, var(--gray-50));
  padding: 48px 64px;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px
}

.contact-header h2 {
  font-weight: 700;
  font-size: 64px;
  color: #000;
  letter-spacing: -1.28px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-header p {
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-600)
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  padding: 32px;
  border: 1px solid var(--gray-100);
  max-width: 960px;
  margin: 0 auto;
}

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

.form-group label {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.form-group label svg {
  color: var(--red);
  width: 22px;
  height: 22px
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gray-50);
  width: 100%;
  padding: 0 24px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  font-size: 16px;
  transition: all .3s;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  outline: none;
  background: #fff;
}

.form-group input,
.form-group select {
  height: 70px
}

.form-group textarea {
  height: 180px;
  padding-top: 20px;
  padding-bottom: 20px;
  resize: none
}

.form-submit {
  width: 100%;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  padding: 24px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transition: all .3s;
  cursor: pointer;
}

.form-submit:hover {
  box-shadow: var(--shadow-2xl);
  transform: scale(1.02)
}

.form-submit svg {
  width: 24px;
  height: 24px
}

/* ============================================
   EQUIPAMENTOS PAGE
   ============================================ */
.equip-grid {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.equip-item {
  display: flex;
  gap: 48px;
  align-items: center
}

.equip-item.reverse {
  flex-direction: row-reverse
}

.equip-item .equip-img {
  width: 50%
}

.equip-item .equip-img .img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  height: 400px;
}

.equip-item .equip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.equip-item .equip-info {
  width: 50%
}

.equip-item .equip-info h2 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  letter-spacing: -.84px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.equip-item .equip-info p {
  font-weight: 500;
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 24px;
}

.equip-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px
}

.equip-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.equip-features .check {
  color: var(--red);
  font-size: 20px;
  margin-top: 4px
}

.equip-features span {
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-700)
}

.equip-buttons {
  display: flex;
  gap: 16px
}

/* CTA Section */
.cta-section {
  background: var(--bg-header);
  padding: 80px 32px;
  text-align: center;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  letter-spacing: -.96px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-section p {
  font-weight: 500;
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 32px;
}

.cta-section-dark {
  background: #000;
  padding: 80px 32px;
  text-align: center;
}

.cta-section-dark h2 {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  letter-spacing: -.96px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-section-dark p {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  margin-bottom: 32px;
}

/* Contact Section (inner pages) */
.page-contact {
  background: #fff;
  padding: 80px 32px
}

.page-contact h2 {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  text-align: center;
  letter-spacing: -.96px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.page-contact form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto
}

.page-contact .rdstation-form-container {
  max-width: 960px;
  margin: 0 auto
}

.page-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.page-contact label {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  display: block;
  margin-bottom: 8px;
}

.page-contact input,
.page-contact textarea,
.page-contact select {
  background: var(--bg-header);
  height: 60px;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid var(--gray-300);
  font-size: 16px;
  transition: border-color .3s;
}

.page-contact input:focus,
.page-contact textarea:focus,
.page-contact select:focus {
  border-color: var(--red);
  outline: none;
}

.page-contact textarea {
  height: 150px;
  padding: 16px;
  resize: none
}

.page-contact button[type="submit"] {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 16px;
  border-radius: 8px;
  border: none;
  transition: background .3s;
  cursor: pointer;
}

.page-contact button[type="submit"]:hover {
  background: var(--red-dark)
}

/* ============================================
   EQUIPAMENTO DETALHES PAGE
   ============================================ */
.equip-detail-hero {
  background: linear-gradient(to right, #000, var(--gray-900));
  padding: 80px 32px;
}

.equip-detail-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.equip-detail-hero .breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .3s
}

.equip-detail-hero .breadcrumb a:hover {
  color: #fff
}

.equip-detail-hero h1 {
  font-weight: 700;
  font-size: 48px;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.equip-detail-hero .subtitle {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, .7);
}

.equip-detail-content {
  padding: 64px 32px
}

.equip-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.equip-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  height: 400px
}

.equip-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.equip-detail-info h2 {
  font-weight: 700;
  font-size: 32px;
  color: #000;
  margin-bottom: 16px
}

.equip-detail-info p {
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px
}

.specs-section {
  padding: 64px 32px;
  background: var(--gray-50)
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.spec-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.spec-card h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 46, 23, .2);
}

.spec-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.spec-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.spec-card li::before {
  content: "•";
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  margin-top: -2px;
}

/* Config/Params Table */
.config-table {
  max-width: 1280px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.config-table table {
  width: 100%;
  border-collapse: collapse
}

.config-table th {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 16px;
  text-align: left;
}

.config-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.config-table tr:last-child td {
  border-bottom: none
}

.config-table tr:nth-child(even) {
  background: var(--gray-50)
}

/* ============================================
   CONSUMIVEIS PAGE
   ============================================ */
.consumiveis-hero {
  background: linear-gradient(to right, #000, var(--gray-900));
  padding: 96px 32px;
}

.consumiveis-grid-section {
  padding: 80px 32px;
  background: #fff
}

.product-card {
  background: rgba(238, 238, 238, .5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow .3s;
}

.product-card:hover {
  box-shadow: var(--shadow-2xl)
}

.product-card .card-image {
  height: 280px;
  overflow: hidden
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-card .card-body {
  padding: 24px;
  text-align: center
}

.product-card h4 {
  font-weight: 700;
  font-size: 28px;
  color: #000;
  margin-bottom: 12px
}

.product-card p {
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6
}

.alt-section {
  padding: 80px 32px;
  background: rgba(238, 238, 238, .3)
}

.alt-section .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.alt-section .section-grid.reverse {
  direction: rtl
}

.alt-section .section-grid.reverse>* {
  direction: ltr
}

.alt-section .section-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  height: 450px
}

.alt-section .section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.alt-section .section-text h3 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  letter-spacing: -.84px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.alt-section .section-text h3.red {
  color: var(--red)
}

.alt-section .section-text p {
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================
   ASSISTANCIA TECNICA PAGE
   ============================================ */
.info-box {
  background: var(--bg-header);
  border-radius: 16px;
  padding: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.info-box p {
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-box .bullet-red {
  color: var(--red);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: rgba(238, 238, 238, .5);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}

.service-card:hover {
  box-shadow: var(--shadow-2xl)
}

.service-card svg {
  margin-bottom: 24px;
  color: var(--red);
  width: 64px;
  height: 64px
}

.service-card h3 {
  font-weight: 700;
  font-size: 32px;
  color: #000;
  letter-spacing: -.64px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-card p {
  font-weight: 500;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 24px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-700);
}

.service-card .check {
  color: var(--red);
  font-size: 20px;
  margin-top: 2px
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.coverage-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow .3s;
}

.coverage-item:hover {
  box-shadow: var(--shadow-xl)
}

.coverage-item span {
  font-weight: 600;
  font-size: 20px;
  color: var(--red)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.why-item {
  text-align: center
}

.why-item svg {
  margin: 0 auto 16px;
  color: var(--red);
  width: 48px;
  height: 48px
}

.why-item h3 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 12px;
  white-space: nowrap
}

.why-item p {
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.5
}

/* ============================================
   NOTICIAS PAGE
   ============================================ */
.news-filter {
  background: rgba(238, 238, 238, .5);
  padding: 10px 0px;
  position: sticky;
  top: 0px;
  z-index: 80;
  border-bottom: 1px solid var(--gray-200);
}

.news-filter .filter-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  overflow-x: auto;
  max-width: 1280px;
  margin: 0 auto;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: all .3s;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-700);
}

.filter-btn:hover {
  background: var(--gray-100)
}

.filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.featured-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.featured-news .news-image {
  border-radius: 16px;
  overflow: hidden;
  height: 500px
}

.featured-news .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.featured-news .news-content {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.news-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  width: fit-content;
}

.news-badge.primary {
  background: var(--red);
  color: #fff
}

.news-badge.light {
  background: rgba(255, 46, 23, .1);
  color: var(--red)
}

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

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow .3s;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: var(--shadow-2xl)
}

.news-card .card-image {
  height: 240px;
  overflow: hidden
}

.news-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.news-card:hover .card-image img {
  transform: scale(1.1)
}

.news-card .card-body {
  padding: 24px
}

.news-card h3 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  letter-spacing: -.4px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-card p {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px
}

.news-card .date {
  font-weight: 500;
  font-size: 12px;
  color: var(--gray-500)
}

.newsletter-section {
  background: #000;
  padding: 80px 32px;
  text-align: center
}

.newsletter-section h2 {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  letter-spacing: -.96px;
  margin-bottom: 24px
}

.newsletter-section p {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto
}

.newsletter-form input {
  flex: 1;
  background: #fff;
  height: 60px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
}

.newsletter-form input:focus {
  outline: 2px solid var(--red)
}

.newsletter-form button {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .3s;
  border: none;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--red-dark)
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.cat-btn {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.cat-btn:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05)
}

.cat-btn svg {
  color: var(--red);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cat-btn p {
  font-weight: 600;
  font-size: 16px;
  color: #000
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-content-section {
  padding: 80px 32px
}

.blog-layout {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-layout .blog-image {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  height: 500px
}

.blog-layout .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.blog-layout .blog-text {
  width: 50%
}

.blog-layout .blog-text p {
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.coming-soon-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.coming-soon-card svg {
  margin: 0 auto 24px;
  color: var(--red)
}

.coming-soon-card h3 {
  font-weight: 600;
  font-size: 28px;
  color: #000;
  margin-bottom: 16px
}

.coming-soon-card p {
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ============================================
   GENERIC SECTIONS (Acabamentos, Facaria, Conversao, Embalagens)
   ============================================ */
.category-page-intro {
  padding: 80px 32px;
  background: #fff
}

.category-equip-list {
  padding: 64px 32px;
  background: var(--gray-50)
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .home-hero {
    padding: 48px 32px
  }

  .home-hero-content {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .home-hero-image {
    display: none
  }

  .home-hero-text h1 {
    font-size: 48px
  }

  .porque-section {
    padding: 48px 32px
  }

  .porque-header h2 {
    font-size: 38px
  }

  .porque-grid {
    grid-template-columns: 1fr
  }

  .feature-card.feito-durar {
    min-height: 640px
  }

  .quem-somos {
    padding: 40px 32px
  }

  .quem-somos h2 {
    font-size: 48px
  }

  .contact-section {
    padding: 40px 32px
  }

  .contact-header h2 {
    font-size: 48px
  }

  .hero-dark h1 {
    font-size: 48px
  }

  .hero-dark p {
    font-size: 20px
  }

  .equip-item {
    flex-direction: column !important
  }

  .equip-item .equip-img,
  .equip-item .equip-info {
    width: 100%
  }

  .alt-section .section-grid {
    grid-template-columns: 1fr
  }

  .alt-section .section-grid.reverse {
    direction: ltr
  }

  .services-grid {
    grid-template-columns: 1fr
  }

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

  .featured-news {
    grid-template-columns: 1fr
  }

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

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

  .blog-layout {
    flex-direction: column
  }

  .blog-layout .blog-image,
  .blog-layout .blog-text {
    width: 100%
  }

  .equip-detail-grid {
    grid-template-columns: 1fr
  }

  .specs-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center
  }

  .footer-social-icons {
    justify-content: center
  }
}

@media (max-width:768px) {
  .desktop-nav {
    display: none
  }

  .mobile-menu-btn {
    display: block
  }

  .header-logo {
    width: 180px;
    height: 32px;
    top: 14px
  }

  .site-header {
    padding: 12px 16px
  }

  body {
    padding-top: 60px;
  }

  .home-hero {
    padding: 48px 20px;
    min-height: auto
  }

  .home-hero-text h1 {
    font-size: 44px
  }

  .home-hero-text .subtitle {
    font-size: 17px
  }

  .home-hero-sep .keywords {
    font-size: 15px
  }

  .btn-primary {
    font-size: 17px;
    padding: 20px 36px
  }

  .quem-somos {
    padding: 64px 20px
  }

  .quem-somos h2 {
    font-size: 46px
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .stat-card {
    padding: 40px
  }

  .stat-card h3 {
    font-size: 56px
  }

  .porque-section {
    padding: 64px 20px
  }

  .porque-header h2 {
    font-size: 36px
  }

  .feature-card .icon-title h3 {
    font-size: 38px
  }

  .feature-card.confianca {
    min-height: 380px
  }

  .feature-card.feito-durar {
    min-height: 680px
  }

  .feature-card.lider {
    min-height: 360px
  }

  .contact-section {
    padding: 64px 20px
  }

  .contact-header h2 {
    font-size: 44px
  }

  .contact-header p {
    font-size: 17px
  }

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

  .form-submit {
    font-size: 18px
  }

  .hero-dark {
    padding: 48px 16px
  }

  .hero-dark h1 {
    font-size: 40px
  }

  .hero-dark p {
    font-size: 16px
  }

  .page-contact {
    padding: 48px 16px
  }

  .page-contact .form-grid {
    grid-template-columns: 1fr
  }

  .cta-section h2,
  .cta-section-dark h2 {
    font-size: 36px
  }

  .coverage-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .news-filter {
    top: 0px
  }

  .news-grid {
    grid-template-columns: 1fr
  }

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

  .newsletter-form {
    flex-direction: column
  }

  .newsletter-form button {
    padding: 16px
  }

  .footer-inner {
    padding: 40px 20px
  }

  .footer-logo {
    width: 240px;
    margin: 0 auto
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px
  }

  .equip-detail-hero h1 {
    font-size: 36px
  }

  .config-table {
    overflow-x: auto
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%)
  }

  to {
    transform: translateX(0)
  }
}