*, *::before, *::after {box-sizing: border-box;margin: 0;padding: 0;}

:root {
  --yellow: #F5C400;
  --black: #1a1a1a;
  --gray: #555;
  --light: #f7f6f3;
  --white: #fff;
  --border: #e5e5e5;
  --nav-height: 136px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 900; }

/* NAV */
nav {
  position: relative; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 92px;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
}

nav > a { display: flex; align-items: center; }
.nav-logo {
  display: block;
  width: auto;
  height: 104px;
  max-width: 460px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--gray); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-links .cta {
  background: var(--yellow); color: var(--white);
  padding: 9px 22px; font-weight: 700; font-size: 13px;
  border-radius: 3px;
}
.nav-links .cta:hover { background: #e0b200; color: var(--white); }

/* HERO */
.hero-cover {
  position: relative;
  margin-top: 0;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.04) 100%),
    url('fundo3.png') center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-cover-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 58px;
  line-height: 1.02;
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--yellow); }

.hero-content p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-content .section-label { color: var(--yellow); }
.hero-content .btn-border { border-color: var(--white); color: var(--white); }
.hero-content .btn-border:hover { background: var(--white); color: var(--black); }

.hero {
  margin-top: 0;
  background: var(--light);
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  margin-top: 0;
}

.hero-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

.hero h1 { font-size: 52px; line-height: 1.05; margin-bottom: 16px; }
.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 15px; color: var(--gray); line-height: 1.7;
  margin-bottom: 32px; max-width: 420px;
}

.hero-img img {
  width: 100%; max-width: 480px;
  display: block; margin: 0 auto;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 12px 28px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-yellow { background: var(--yellow); color: var(--white); }
.btn-yellow:hover { background: #e0b200; }
.btn-border { border: 2px solid var(--black); color: var(--black); margin-left: 12px; }
.btn-border:hover { background: var(--black); color: var(--white); }

/* STRIP */
.strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  display: flex; gap: 40px; flex-wrap: wrap;
  justify-content: center;
}
.strip span {
  font-size: 15px;
  font-weight: 500;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family:
  'Roboto', sans-serif;
}
.strip span::before {
  /* content: ''; */
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 72px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.section-title { font-size: 36px; margin-bottom: 12px; line-height: 1.1; }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }

/* PAIN POINTS */
.feridas {
  background: var(--light);
  color: var(--black);
}

.section-heading-center {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading-center .section-sub {
  margin: 0 auto;
  color: var(--gray);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pain-card {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  background: var(--white);
  overflow: hidden;
}

.pain-card::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.16);
}

.pain-card span {
  display: block;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 52px;
}

.pain-card h3 {
  color: var(--black);
  font-size: 19px;
  line-height: 1.18;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pain-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

/* COMPARISON */
.comparacao { background: var(--light); }

.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 40px; }
.comp-table th {
  padding: 14px 18px; text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
}
.comp-table th:first-child { background: var(--light); }
.comp-table th:nth-child(2) { background: var(--black); color: var(--white); }
.comp-table th:nth-child(3) { background: var(--yellow); color: var(--white); }

.comp-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}
.comp-table tr:nth-child(even) td { background: #fafaf8; }
.comp-table td:first-child { font-weight: 500; color: var(--black); font-family: 'Roboto', sans-serif; }

.yes { color: #2a9d5c; font-weight: 700; }
.no { color: #ccc; }

/* PRODUCT CARDS */
.fornos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.forno-card {
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  background: var(--white);
}

.forno-img {
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  height: 280px; position: relative;
  overflow: hidden;
}
.forno-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forno-badge {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  background: var(--yellow); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  font-family: 'Roboto', sans-serif;
}

.forno-body { padding: 28px 28px 32px; }

.forno-body h3 { font-size: 26px; margin-bottom: 10px; }
.forno-body h3 span { color: var(--yellow); }

.forno-body p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }

.features { list-style: none; margin-bottom: 8px; }
.features li {
  font-size: 13px; color: var(--black);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.features li:last-child { border-bottom: none; }
.features li::before { content: '✓'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

.disclaimer { font-size: 11px; color: #aaa; margin: 14px 0 20px; font-style: italic; }

/* CONTACT */
.contacto { background: var(--white); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

.contact-info h2 { font-size: 32px; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }

.contact-box {
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  padding: 18px 20px; margin-bottom: 16px; border-radius: 2px;
}
.contact-box-label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; font-family: 'Roboto', sans-serif; }
.contact-box-value { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; }
.contact-box-value a { color: var(--black); text-decoration: none; }
.contact-box-value a:hover { color: var(--yellow); }

/* FORM */
.form-card {
  border: 1px solid var(--border); border-radius: 4px; padding: 32px;
}
.form-card h3 { font-size: 20px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; font-family: 'Roboto', sans-serif; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); border-radius: 3px;
  padding: 10px 12px; font-size: 14px; color: var(--black);
  font-family: 'Roboto', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%; background: var(--yellow); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 14px; border: none; border-radius: 3px;
  cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 6px; transition: background 0.2s;
}
.btn-submit:hover { background: #e0b200; }

/* FOOTER */
footer {
  background: var(--black); color: #666;
  text-align: center; padding: 24px 48px;
  font-size: 12px; font-family: 'Roboto', sans-serif;
}

footer a { color: var(--yellow); text-decoration: none; }

/* STICKY */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  padding: 12px 48px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 99; border-top: 2px solid #e0b200;
}
.sticky p { color: var(--white); font-size: 14px; font-weight: 700; font-family: 'Roboto', sans-serif; }
.sticky a {
  background: var(--black); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 9px 22px; border-radius: 3px;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  :root { --nav-height: 96px; }
  nav { padding: 0 28px; }
  .nav-logo { height: 72px; max-width: 320px; }
  .nav-links { display: none; }
  .hero-cover { min-height: 640px; background-position: 58% center; }
  .hero-cover-inner { padding: 64px 20px; }
  .hero-content h1 { font-size: 42px; }
  .hero-content p { font-size: 15px; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero h1 { font-size: 38px; }
  .fornos-grid { grid-template-columns: 1fr; }
  .section-heading-center { text-align: left; margin-bottom: 30px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: auto; }
  .pain-card span { margin-bottom: 28px; }
  .comparacao .container { overflow-x: auto; }
  .comp-table { min-width: 680px; }
  section { padding: 56px 20px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .strip { padding: 14px 20px; gap: 16px; }
  .sticky { padding: 12px 20px; }
  footer { padding: 20px; }
}
