/* =========================================
   ROTOPEÇAS ABRASIVOS LTDA — style.css
   Industrial / Precision Aesthetic
   Fonts: Barlow Condensed (display) + Roboto (body)
   ========================================= */

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

/* --- CSS Variables --- */
:root {
  --black:    #231f20;
  --red:      #ed1c24;
  --orange:   #f58220;
  --white:    #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999999;
  --gray-700: #444444;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.20);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  /* Melhorias para compatibilidade */
  scroll-padding-top: 0;
  scroll-margin-top: 0;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  /* Garantir rolagem suave em todos os navegadores */
  scroll-behavior: smooth;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 120px;
}
.navbar__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.navbar__logo span:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.navbar__logo span:last-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}
.navbar__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.navbar__links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-200);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 4px 20px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}
.navbar__cta:hover { background: #c4141a !important; transform: translateY(-1px); }
.navbar__cta::after { display: none !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all var(--transition);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
  line-height: 1;
}
.btn--red   { background: var(--red);    color: var(--white); }
.btn--red:hover { background: #c4141a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(237,28,36,0.35); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: #d96f15; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,130,32,0.35); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--black); }
.btn--outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline-red:hover { background: var(--red); color: var(--white); }
.btn--lg { font-size: 1.15rem; padding: 18px 40px; }
.btn--xl { font-size: 1.3rem; padding: 22px 56px; }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section { padding: 80px 5vw; }
.section--dark { background: var(--black); color: var(--white); }
.section--gray { background: var(--gray-100); }
.section__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section__title em { font-style: normal; color: var(--red); }
.section__title--light em { color: var(--orange); }
.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section__subtitle { color: var(--gray-400); }

/* =========================================
   IMAGE PLACEHOLDER
   ========================================= */
.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
}
.img-placeholder svg { opacity: 0.3; }
.img-placeholder span { opacity: 0.5; }

/* =========================================
   HERO — INDEX
   ========================================= */
.hero {
  min-height: 92vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero__content {
  padding: 80px 5vw 80px 5vw;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--orange);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em { font-style: normal; color: var(--red); display: block; }
.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image {
  height: 92vh;
  position: relative;
}
.hero__image .img-placeholder {
  height: 100%;
  width: 100%;
}
.hero__image::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--black), transparent);
  pointer-events: none;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--red);
  padding: 0 5vw;
  display: flex;
  gap: 0;
  overflow: hidden;
}
.stats-bar__item {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.stats-bar__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   ABORDAGEM — INDEX
   ========================================= */
.abordagem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.abordagem__image {
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.abordagem__image .img-placeholder { height: 100%; }
.abordagem__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 24px;
  line-height: 1.3;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.abordagem__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}
.abordagem__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.abordagem__point-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.abordagem__point-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2px;
}
.abordagem__point-text p { font-size: 0.92rem; color: var(--gray-700); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--black);
  padding: 72px 5vw 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

.page-hero__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero__label::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--orange);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  max-width: 800px;
}
.page-hero__title em { font-style: normal; color: var(--red); }
.page-hero__sub {
  font-size: 1rem;
  color: var(--gray-400);
  margin-top: 16px;
  max-width: 600px;
}

/* =========================================
   SOLUCOES PAGE
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red);
  padding: 42px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  border-radius: 2px;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-card:nth-child(2) { border-top-color: var(--red); }
.step-card:nth-child(3) { border-top-color: var(--red); }
.step-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--gray-200);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.step-card__icon {
  width: 52px; height: 52px;
  background: var(--black);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.step-card__desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.step-card__detail-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card__detail-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}
.step-card__detail-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.55rem;
  top: 5px;
}

/* Consultivo full section */
.consultivo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.consultivo__image {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
}
.consultivo__image .img-placeholder { height: 100%; }
.highlight-box {
  background: var(--black);
  color: var(--white);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}
.highlight-box p em { font-style: normal; color: var(--orange); }

/* =========================================
   PRODUTOS PAGE
   ========================================= */
.granulometria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 48px;
}
.gran-tag {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 2px;
  border-bottom: 3px solid var(--red);
  transition: all var(--transition);
}
.gran-tag:hover { background: var(--red); border-bottom-color: #900; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.section-subtitle-full {
  text-align: left;
  margin: 0 0 30px 0;
  color: var(--gray-600);
  width: 100%;
}
.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}
.tech-table thead {
  background: var(--black);
  color: var(--white);
}
.tech-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.tech-table thead th:last-child { border-right: none; }
.tech-table tbody tr { border-bottom: 1px solid var(--gray-200); transition: background var(--transition); }
.tech-table tbody tr:last-child { border-bottom: none; }
.tech-table tbody tr:hover { background: #fff5f5; }
.tech-table tbody td {
  padding: 14px 18px;
  color: var(--gray-700);
  border-right: 1px solid var(--gray-200);
  vertical-align: middle;
}
.tech-table tbody td:last-child { border-right: none; }
.tech-table tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  white-space: nowrap;
}
.tech-table .td-badge {
  display: inline-block;
  background: var(--gray-100);
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--black);
}
.liga-304 { color: var(--red); }
.liga-430 { color: var(--orange); }
.liga-410 { color: var(--gray-700); }

.table-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}
.table-section-title::before {
  content: '';
  width: 8px; height: 24px;
  background: var(--red);
  border-radius: 1px;
  display: block;
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.spec-card {
  background: var(--black);
  color: var(--white);
  padding: 28px 24px;
  border-radius: 4px;
  border-bottom: 3px solid var(--red);
  text-align: center;
}
.spec-card:nth-child(2) { border-bottom-color: var(--red); }
.spec-card__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.spec-card__label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   CONTATO PAGE
   ========================================= */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contato-info__block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contato-info__icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contato-info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.contato-info__value {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.6;
  font-weight: 500;
}
.contato-info__value a { color: var(--black); transition: color var(--transition); }
.contato-info__value a:hover { color: var(--red); }

.wpp-card {
  background: var(--black);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
.wpp-card__icon {
  width: 80px; height: 80px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.wpp-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.wpp-card__sub {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
.wpp-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #25D366;
  margin-bottom: 28px;
}
.btn--wpp {
  background: #25D366;
  color: var(--white) !important;
  width: 100%;
  justify-content: center;
  font-size: 1.15rem;
  padding: 18px;
  border-radius: 4px;
  transition: all var(--transition);
}
.btn--wpp:hover { background: #1da851; transform: scale(1.02); box-shadow: 0 8px 32px rgba(37,211,102,0.35); }

/* Map placeholder */
.map-placeholder {
  height: 280px;
  background: var(--gray-100);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #ccc;
  margin-top: 32px;
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background: var(--red);
  padding: 64px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.cta-strip__text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #141011;
  padding: 56px 5vw 32px;
  color: var(--gray-400);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

/* --- Adicionado aqui para colocar logo e texto lado a lado --- */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__brand img {
  flex-shrink: 0; /* Garante que a logo não amasse */
}
/* ------------------------------------------------------------- */

.footer__brand span:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.footer__brand span:last-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer__brand p { 
  font-size: 0.88rem; 
  line-height: 1.7; 
  max-width: 300px; 
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer__contact-item svg { min-width: 16px; color: var(--red); margin-top: 2px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #555;
}
.footer__bottom a { color: #555; transition: color var(--transition); }
.footer__bottom a:hover { color: var(--orange); }

/* =========================================
   FOOTER SIGNATURE
   ========================================= */
.footer__signature {
  text-align: center;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.footer__signature a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.footer__signature a:hover {
  color: var(--orange);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   QUICK LINKS
   ========================================= */
.quick-links {
  margin-top: 24px;
  background: var(--gray-100);
  border-radius: 4px;
  padding: 28px 24px;
}
.quick-links__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.quick-links__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
  text-decoration: none;
}
.quick-link:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}
.quick-link__arrow {
  color: #25D366;
}

/* =========================================
   WHATSAPP CTA GIANT
   ========================================= */
.wpp-cta-giant {
  background: var(--black);
  padding: 80px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.wpp-cta-giant__icon {
  width: 100px;
  height: 100px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(37,211,102,0.35);
  animation: pulse-wpp 2.2s ease-in-out infinite;
}
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 0 40px rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 0 80px rgba(37,211,102,0.55), 0 0 140px rgba(37,211,102,0.15); }
}
.wpp-cta-giant__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #25D366;
}
.wpp-cta-giant__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  max-width: 700px;
}
.wpp-cta-giant__title em { font-style:normal; color: #25D366; }
.wpp-cta-giant__sub {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}
.wpp-cta-giant__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.wpp-btn-giant {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 22px 56px;
  border-radius: 6px;
  transition: all 0.28s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
.wpp-btn-giant:hover {
  background: #1ebe5d;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.wpp-hint {
  font-size: 0.82rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* =========================================
   INLINE STYLES FROM HTML
   ========================================= */
.img-placeholder--height-420 {
  height: 420px;
}
.img-placeholder--height-460 {
  height: 460px;
}
.abordagem__image--relative {
  position: relative;
}
.text-highlight {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}
.section-centered {
  text-align: center;
  margin-bottom: 12px;
}
.section-centered-title {
  max-width: 700px;
  margin: 0 auto;
}
.section-centered-title-light {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}
.section-centered-subtitle {
  margin: 0 auto;
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.feature-card {
  background: #1a1617;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  border-radius: 2px;
  text-align: center;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-subtitle {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.td-badge--red {
  background: #fff0f0;
  color: var(--red);
}
.td-badge--orange {
  background: #fff5eb;
  color: var(--orange);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image { height: 380px; }
  .hero__image::after { width: 0; }
  .abordagem { grid-template-columns: 1fr; }
  .consultivo { grid-template-columns: 1fr; }
  .contato-layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .formato-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .formato-features-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-bar { flex-wrap: wrap; }
  .stats-bar__item { flex: 1 1 45%; }
  .navbar__links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--black); padding: 24px 5vw; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .navbar__links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer__top { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .wpp-card { padding: 36px 24px; }
  .hero__content { padding: 60px 5vw; }
}

/* =========================================
   PRIVACY CONTAINER
   ========================================= */
.privacy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
  line-height: 1.6;
  color: var(--black);
}

.privacy-container p {
  margin-bottom: 20px;
}

.privacy-intro {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 30px;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 12px;
}

.privacy-section__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* =========================================
   FORMATO FEATURES GRID
   ========================================= */
.formato-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.formato-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.formato-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.formato-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
}

.formato-feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.formato-feature__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .formato-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  
  .formato-feature {
    padding: 20px;
    gap: 16px;
  }
  
  .formato-feature__icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  
  .formato-feature__title {
    font-size: 1rem;
  }
  
  .formato-feature__desc {
    font-size: 0.9rem;
  }
}

/* =========================================
   RESULTADOS FLEX
   ========================================= */
.resultados-flex {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 32px 0 48px;
  align-items: flex-start;
}

.resultado-item {
  flex: 0 1 auto;
  max-width: 100%;
}

.resultado-item img {
  width: auto;
  max-width: 100%;
  height: 50vh;
  min-height: 300px;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.resultado-item img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Responsive: mantém flexbox em todas as telas */
@media (max-width: 768px) {
  .resultados-flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 24px 0 32px;
  }
  
  .resultado-item img {
    height: 40vh;
    min-height: 250px;
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .resultado-item img {
    height: 35vh;
    min-height: 220px;
    max-height: 350px;
  }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(35, 31, 31, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
  border-top: 3px solid var(--red);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__actions {
  flex: 0;
}

.cookie-banner__actions .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-banner__text {
    font-size: 0.9rem;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}