:root {
  --bg: #07101f;
  --bg-2: #0b1528;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #edf2ff;
  --muted: #afbdd5;
  --cyan: #67e8f9;
  --blue: #60a5fa;
  --fuchsia: #d946ef;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 70, 239, 0.12), transparent 24%),
    linear-gradient(180deg, #07101f 0%, #091427 44%, #060d18 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 340px;
  height: 340px;
  left: -90px;
  top: -60px;
  background: rgba(34, 211, 238, 0.22);
}

.orb-2 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 140px;
  background: rgba(217, 70, 239, 0.18);
}

.orb-3 {
  width: 280px;
  height: 280px;
  left: 35%;
  bottom: -80px;
  background: rgba(96, 165, 250, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  backdrop-filter: blur(20px);
  background: rgb(5 11 20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-wrap {
  min-height: 96px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1;
  padding-top: 10px;
}

.brand-mark {
  display: block;
}

.brand-logo {
  display: block;
  width: 200px;
  height: auto;
  mix-blend-mode: screen;
}

.brand-name {
  display: none;
}

.brand-tag {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 0;
  white-space: nowrap;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  max-width: 100%;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.highlight-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 100%;
}

.hero p,
.section-heading p,
.card p,
.highlight-card p,
.contact-list p,
.contact-list a {
  color: var(--muted);
  line-height: 1.8;
}

.hero p {
  font-size: 1.08rem;
  max-width: 100%;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #dff7ff 100%);
  color: #07101f;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #fff;
}

.hero-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.highlight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  background: rgba(255, 255, 255, 0.045);
  padding: 28px;
}

.glass-card {
  backdrop-filter: blur(14px);
}

.card h2,
.card h3,
.highlight-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.values-card ul,
.check-list,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.values-card li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.values-card li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--fuchsia));
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.08);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding-top: 34px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-heading p {
  margin-top: 18px;
  font-size: 1.04rem;
}

#produtos .section-heading,
#servicos .section-heading,
#contato .section-heading,
.hero-copy.section-heading {
  max-width: 100%;
}

.hero-title {
  margin-bottom: 0;
}

#sobre .section-heading {
  max-width: 100%;
}

#sobre .section-heading p {
  text-align: justify;
  text-justify: inter-word;
}

#produtos .section-heading p {
  text-align: justify;
  text-justify: inter-word;
}

.grid-2,
.grid-3,
.grid-4,
.mini-grid {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card p {
  flex: 1;
}

.product-link {
  margin-top: 14px;
  width: 100%;
}

.product-badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-item strong {
  color: var(--cyan);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.step-item span {
  color: var(--text);
  line-height: 1.7;
}

.highlight-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(217, 70, 239, 0.08)),
    rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
}

.highlight-card p {
  margin-top: 16px;
}

.product-page-main {
  padding: 84px 0 72px;
}

.product-page-hero {
  max-width: 100%;
  margin-bottom: 34px;
}

.product-page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  max-width: 100%;
}

.product-page-hero p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
  text-align: justify;
  text-justify: inter-word;
}

.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.orelha-page {
  padding-top: 56px;
  --orelha-ink: #20311f;
  --orelha-copy: #52624f;
  --orelha-green: #244528;
  --orelha-green-2: #3b6b40;
  --orelha-gold: #c79c40;
}

.orelha-page .product-breadcrumb {
  color: rgba(237, 242, 255, 0.78);
}

.orelha-page .product-breadcrumb:hover {
  color: #fff;
}

.orelha-hero-section {
  background:
    radial-gradient(circle at top left, rgba(202, 156, 56, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(36, 74, 42, 0.22), transparent 24%),
    linear-gradient(180deg, #07101f 0%, #0b1626 52%, #09111e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.orelha-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  padding: 12px 0 24px;
}

.orelha-hero-copy {
  color: var(--text);
}

.orelha-hero-copy .eyebrow {
  color: var(--cyan);
  margin-bottom: 12px;
}

.orelha-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
  max-width: 100%;
}

.orelha-hero-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 100%;
  text-align: justify;
  text-justify: inter-word;
}

.orelha-value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.orelha-value-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
}

.orelha-page .btn-primary {
  background: linear-gradient(135deg, #244a2a 0%, #ca9c38 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(36, 69, 40, 0.18);
}

.orelha-page .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.orelha-hero-media {
  max-width: 920px;
}

.orelha-hero-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(23, 31, 17, 0.22);
}

.orelha-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.orelha-capability-item {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.orelha-capability-item h2 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.25;
}

.orelha-capability-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}

.orelha-story-section {
  padding-top: 72px;
}

.orelha-section-intro {
  max-width: 100%;
  margin-bottom: 28px;
}

.orelha-section-intro p {
  text-align: justify;
  text-justify: inter-word;
}

.orelha-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.orelha-story-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.orelha-story-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.orelha-story-copy .eyebrow {
  margin-bottom: 12px;
}

.orelha-story-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.orelha-story-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.orelha-cta-section {
  padding-top: 12px;
}

.orelha-cta-band {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(31, 65, 38, 0.94) 0%, rgba(140, 107, 33, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.orelha-cta-band .eyebrow {
  color: #dfefc1;
  margin-bottom: 14px;
}

.orelha-cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.orelha-cta-band p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  max-width: 68ch;
  text-align: justify;
  text-justify: inter-word;
}

.orelha-cta-band .product-page-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.orelha-cta-band .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f2dfaa 100%);
  color: #223320;
  box-shadow: none;
}

.orelha-cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

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

.mini-grid > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-grid h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.contact-phone-list {
  display: grid;
  gap: 6px;
}

.contact-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .orelha-hero-grid,
  .orelha-cta-band {
    grid-template-columns: 1fr;
  }

  .orelha-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-card,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 22px;
    background: rgba(9, 20, 39, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .grid-2,
  .hero-panels,
  .grid-4,
  .highlight-card,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .orelha-brand-lockup,
  .orelha-story-grid,
  .orelha-capability-grid {
    grid-template-columns: 1fr;
  }

  .orelha-hero-copy h1 {
    max-width: 100%;
  }

  .orelha-cta-band .product-page-actions {
    justify-content: flex-start;
  }

  .header-wrap,
  .footer-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-wrap {
    min-height: 82px;
  }

  .brand-logo {
    width: 150px;
    height: auto;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-tag {
    margin-left: 0;
  }

  .card,
  .highlight-card {
    padding: 22px;
    border-radius: 24px;
  }

  .orelha-hero-grid {
    gap: 24px;
  }

  .orelha-story-card,
  .orelha-cta-band {
    padding: 22px;
  }

  .orelha-product-logo {
    width: 112px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 40px;
  }
}


.product-shell {
  display: grid;
  gap: 22px;
}

.product-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.product-breadcrumb:hover {
  color: #fff;
}

.product-hero-card {
  max-width: 100%;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(96, 165, 250, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.product-hero-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 100%;
}

.product-hero-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
  text-align: justify;
  text-justify: inter-word;
}

.product-lead {
  font-size: 1.28rem !important;
  color: var(--text) !important;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.product-summary-card h2 {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.product-summary-list {
  display: grid;
  gap: 12px;
}

.product-summary-list p {
  margin: 0;
  line-height: 1.7;
}

.product-detail-grid {
  align-items: stretch;
}

.product-detail-grid .card,
.product-summary-card {
  height: 100%;
}

@media (min-width: 981px) {
  .brand-logo {
    width: 220px;
    height: auto;
  }

  .brand-tag {
    margin-left: 0;
  }

  .header-wrap {
    min-height: 108px;
  }
}

@media (max-width: 980px) {
  .product-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-hero-card {
    padding: 24px;
  }

  .product-hero-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .product-lead {
    font-size: 1.08rem !important;
  }
}
