
:root {
  --blue-950: #06101d;
  --blue-900: #081a2e;
  --blue-850: #0d243d;
  --blue-800: #123352;
  --blue-700: #17476d;
  --copper-700: #9f4e18;
  --copper-600: #b85f22;
  --copper-500: #d17332;
  --copper-400: #ec9652;
  --copper-300: #f2b370;
  --white: #ffffff;
  --ice: #f5f7f8;
  --line: #dde4ea;
  --line-soft: #e8eef2;
  --text: #23313d;
  --muted: #5b6875;
  --muted-soft: #6a7682;
  --shadow: 0 24px 70px rgba(6, 16, 29, 0.14);
  --shadow-soft: 0 18px 54px rgba(6,16,29,0.07);
  --radius: 28px;
  --container: 1180px;
  --header: 92px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 102px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--ice);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.72;
}
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 860;
}
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  line-height: 0.97;
  letter-spacing: -0.068em;
  color: var(--white);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 3.5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  color: inherit;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.3;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 16, 29, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,179,112,0.42), transparent);
}
.header-shell { padding: 14px 0; }

.header-content {
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo-area {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
}
.logo-area img {
  width: 208px;
  max-height: 70px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  font-weight: 760;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--copper-500), var(--copper-300));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a:hover::after { transform: scaleX(1); }

.top-whatsapp {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: #161616;
  background: linear-gradient(135deg, var(--copper-500), var(--copper-300));
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(209,115,50,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.top-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(209,115,50,0.26);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(209,115,50,0.18), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(236,150,82,0.10), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 52%, #040c16);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.97fr 1.03fr;
  gap: 52px;
  align-items: center;
  padding: 92px 0 92px;
}

.hero-copy { max-width: 620px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.hero-label img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.hero-label span {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin-bottom: 34px;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 840;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #151515;
  background: linear-gradient(135deg, var(--copper-500), var(--copper-300));
  box-shadow: 0 18px 42px rgba(209,115,50,0.22);
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-checks span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.hero-main-image { min-height: 564px; }
.hero-main-image img { min-height: 564px; }
.hero-side-stack {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}
.hero-side-card { min-height: 328px; }
.hero-side-card img { min-height: 328px; }

.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.06);
}
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6,16,29,0.76);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 760;
}
.hero-side-note {
  padding: 22px;
  border-radius: 24px;
  color: var(--text);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}
.hero-side-note strong {
  display: block;
  margin-bottom: 8px;
}
.hero-side-note p { color: var(--muted); }

.section { padding: 96px 0; }
.pretitle {
  margin-bottom: 14px;
  color: var(--copper-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pretitle.dark { color: var(--copper-600); }

.section-title {
  max-width: 820px;
  margin-bottom: 48px;
}
.section-title p {
  color: var(--muted-soft);
  line-height: 1.74;
}
.section-title.light p {
  color: rgba(255,255,255,0.74);
}

.brand-showcase,
.services-section,
.rolling-gallery-section,
.quote-section { background: var(--white); }

.visual-feature-section,
.applications-section,
.process-section { background: var(--ice); }

.brand-showcase-grid,
.intro-grid,
.two-column,
.quote-box,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.brand-showcase-card,
.visual-feature-card,
.service-card,
.technical-box,
.process-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.brand-showcase-copy p:last-child,
.intro-text p,
.visual-copy p,
.technical-box p,
.process-card p,
.service-card p {
  color: var(--muted-soft);
}

.brand-showcase-copy p:last-child,
.intro-text p + p {
  margin-top: 14px;
}

.brand-showcase-card img {
  width: 100%;
  object-fit: cover;
}

.visual-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.visual-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.visual-copy { padding: 28px; }
.visual-copy p { line-height: 1.7; }

.intro-grid { align-items: start; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card { padding: 30px; }

.service-index,
.process-card span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #151515;
  background: linear-gradient(135deg, var(--copper-500), var(--copper-300));
  font-weight: 950;
}

.service-card p {
  margin-bottom: 18px;
}

.service-card ul,
.technical-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card li,
.technical-box li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-soft);
  line-height: 1.48;
}
.service-card li::before,
.technical-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper-500);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.tag-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(6,16,29,0.04);
}

.technical-box { padding: 34px; }
.technical-box h3 { margin-bottom: 18px; }

.differentials-section,
.contact-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(209,115,50,0.18), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
}
.differentials-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.differentials-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

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

.differentials-grid article {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.differentials-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-300);
  font-size: 1.08rem;
}
.differentials-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.74);
}

.process-card {
  padding: 30px;
}
.process-card p { color: var(--muted-soft); }

.quote-box {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(209,115,50,0.08), transparent 38%), var(--ice);
  box-shadow: var(--shadow-soft);
}
.quote-list { display: grid; gap: 12px; }
.quote-list p {
  padding: 17px 18px;
  border-radius: 16px;
  color: var(--muted-soft);
  background: var(--white);
}
.quote-list strong { color: var(--blue-900); }

.contact-grid { grid-template-columns: 1fr 360px; }
.contact-grid p { color: rgba(255,255,255,0.77); }

.contact-card {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-link {
  color: var(--copper-300);
  font-weight: 850;
}
.contact-card span { color: rgba(255,255,255,0.78); }

.rolling-gallery-section { overflow: hidden; }
.rolling-gallery {
  position: relative;
  overflow: hidden;
  padding-top: 8px;
}
.rolling-gallery::before,
.rolling-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 86px;
  z-index: 2;
  pointer-events: none;
}
.rolling-gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255,255,255,0));
}
.rolling-gallery::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255,255,255,0));
}

.rolling-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: rollingGallery 34s linear infinite;
  padding: 0 20px;
}
.rolling-gallery:hover .rolling-track { animation-play-state: paused; }

.rolling-card {
  position: relative;
  width: 320px;
  flex: 0 0 320px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(6,16,29,0.08);
}
.rolling-card img {
  width: 100%;
  height: 232px;
  object-fit: cover;
}
.rolling-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(6,16,29,0.24), rgba(6,16,29,0.84));
  backdrop-filter: blur(10px);
}
.rolling-overlay strong { font-size: 1rem; }
.rolling-overlay span {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
}

@keyframes rollingGallery {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #07101d;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  font-weight: 950;
}

.footer {
  color: rgba(255,255,255,0.68);
  background: linear-gradient(180deg, #07111e, #040b14);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-premium {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 32px;
  padding: 44px 0 28px;
}
.footer-brand img {
  width: 178px;
  max-height: 64px;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer-brand p {
  max-width: 42ch;
  color: rgba(255,255,255,0.68);
}
.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links strong,
.footer-contact strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.95rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.74);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--copper-300);
}
.footer-mini-cta {
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #121212 !important;
  background: linear-gradient(135deg, var(--copper-500), var(--copper-300));
  font-weight: 850;
}
.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  color: rgba(255,255,255,0.56);
  font-size: 0.92rem;
}

@media (max-width: 1060px) {
  .header-content {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .hero-grid,
  .brand-showcase-grid,
  .intro-grid,
  .two-column,
  .quote-box,
  .contact-grid,
  .hero-media,
  .visual-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .services-grid,
  .differentials-grid,
  .process-grid,
  .footer-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-main-image,
  .hero-main-image img { min-height: 420px; }

  .hero-side-card,
  .hero-side-card img { min-height: 250px; }

  .logo-area img { width: 188px; }
}

@media (max-width: 720px) {
  :root { --header: 72px; }
  html { scroll-padding-top: 92px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }

  .header-shell { padding: 10px 0; }

  .header-content {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 10px 12px;
  }

  .logo-area { min-width: 0; }
  .logo-area img {
    width: 156px;
    max-height: 52px;
  }

  .top-whatsapp {
    justify-self: end;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 4px;
  }
  .nav-links a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
    background: rgba(255,255,255,0.055);
  }

  .hero-grid {
    gap: 34px;
    padding: 58px 0 74px;
  }

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

  h1 {
    font-size: clamp(2.18rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-label {
    margin-bottom: 20px;
    padding: 9px 14px 9px 10px;
  }
  .hero-label img {
    width: 24px;
    height: 24px;
  }
  .hero-label span {
    font-size: 0.84rem;
  }

  .hero-actions,
  .hero-checks {
    gap: 10px;
  }

  .btn,
  .hero-checks span {
    width: 100%;
  }

  .hero-media { gap: 14px; }

  .hero-main-image,
  .hero-main-image img { min-height: 300px; }

  .hero-side-stack { grid-template-columns: 1fr; }

  .hero-side-card,
  .hero-side-card img { min-height: 220px; }

  .image-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    font-size: 0.84rem;
  }

  .visual-image img { height: 220px; }

  .services-grid,
  .differentials-grid,
  .process-grid,
  .visual-feature-grid,
  .footer-premium {
    grid-template-columns: 1fr;
  }

  .quote-box,
  .technical-box,
  .contact-card {
    padding: 24px;
  }

  .rolling-gallery {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  .rolling-gallery::before,
  .rolling-gallery::after { display: none; }
  .rolling-track {
    animation: none;
    width: auto;
    padding: 0 4px 4px;
  }
  .rolling-card {
    width: 270px;
    flex-basis: 270px;
    scroll-snap-align: start;
  }
  .rolling-card img { height: 190px; }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .footer-premium {
    gap: 26px;
    padding: 36px 0 24px;
  }

  .footer-brand img { width: 156px; }

  .footer-bottom {
    padding: 16px 0 22px;
  }
}


/* ===== final hosting-ready adjustments ===== */

/* Removed brand-showcase section from HTML. Increase brand presence in header/footer. */
.logo-area img {
  width: 245px;
  max-height: 82px;
}

.header-shell {
  padding: 12px 0;
}

.header-content {
  gap: 30px;
}

.nav-links a {
  font-size: 0.94rem;
}

.top-whatsapp {
  min-height: 48px;
  padding: 0 24px;
}

.footer-brand img {
  width: 210px;
  max-height: 74px;
}

.footer-contact span {
  color: rgba(255,255,255,0.74);
}

/* Since the brand showcase was removed, tighten first white section transition */
.intro-section {
  padding-top: 90px;
}

/* Improve contact card spacing after real business data */
.contact-card span {
  line-height: 1.45;
}

/* Mobile refinements with larger logo */
@media (max-width: 1060px) {
  .logo-area img {
    width: 220px;
    max-height: 72px;
  }

  .header-content {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .logo-area img {
    width: 184px;
    max-height: 62px;
  }

  .header-content {
    grid-template-columns: 1fr auto;
  }

  .top-whatsapp {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .nav-links {
    padding-top: 6px;
  }

  .intro-section {
    padding-top: 72px;
  }

  .footer-brand img {
    width: 172px;
  }
}

@media (max-width: 390px) {
  .logo-area img {
    width: 166px;
  }

  .top-whatsapp {
    padding: 0 11px;
    font-size: 0.82rem;
  }
}


/* ===== final v2: transparent enlarged logo ===== */
.logo-area img {
  width: 270px;
  max-height: 92px;
  object-fit: contain;
}

.footer-brand img {
  width: 230px;
  max-height: 86px;
  object-fit: contain;
}

.hero-label img {
  width: 34px;
  height: 34px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.header-shell {
  padding: 10px 0;
}

.header-content {
  gap: 34px;
}

@media (max-width: 1060px) {
  .logo-area img {
    width: 235px;
    max-height: 82px;
  }

  .footer-brand img {
    width: 205px;
  }
}

@media (max-width: 720px) {
  .logo-area img {
    width: 196px;
    max-height: 68px;
  }

  .footer-brand img {
    width: 180px;
    max-height: 70px;
  }

  .hero-label img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 390px) {
  .logo-area img {
    width: 178px;
  }
}


/* ===== final v3: HQ transparent logo and proportional sizing ===== */

.logo-area img {
  width: 226px;
  max-height: 74px;
  object-fit: contain;
  image-rendering: auto;
}

.footer-brand img {
  width: 190px;
  max-height: 64px;
  object-fit: contain;
  image-rendering: auto;
}

.hero-label img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.header-shell {
  padding: 12px 0;
}

.header-content {
  gap: 28px;
}

.footer-brand p {
  margin-top: 0;
  max-width: 46ch;
}

@media (max-width: 1060px) {
  .logo-area img {
    width: 205px;
    max-height: 68px;
  }

  .footer-brand img {
    width: 178px;
    max-height: 60px;
  }
}

@media (max-width: 720px) {
  .logo-area img {
    width: 176px;
    max-height: 58px;
  }

  .footer-brand img {
    width: 162px;
    max-height: 56px;
  }

  .hero-label img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 390px) {
  .logo-area img {
    width: 164px;
  }

  .footer-brand img {
    width: 150px;
  }
}


/* ===== final v4: logo mais discreta, sem alterar o restante do site ===== */
.logo-area img {
  width: 200px;
  max-height: 66px;
}

.footer-brand img {
  width: 176px;
  max-height: 60px;
}

@media (max-width: 1060px) {
  .logo-area img {
    width: 184px;
    max-height: 62px;
  }

  .footer-brand img {
    width: 164px;
    max-height: 56px;
  }
}

@media (max-width: 720px) {
  .logo-area img {
    width: 160px;
    max-height: 54px;
  }

  .footer-brand img {
    width: 150px;
    max-height: 52px;
  }
}

@media (max-width: 390px) {
  .logo-area img {
    width: 150px;
  }
}


/* ===== final v5: controles laterais na galeria rolante ===== */
.rolling-gallery-wrap {
  position: relative;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.78);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(6,16,29,0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.gallery-control:hover {
  background: linear-gradient(135deg, var(--copper-600), var(--copper-400));
  color: #151515;
  transform: translateY(-50%) scale(1.04);
}

.gallery-control-prev {
  left: 22px;
}

.gallery-control-next {
  right: 22px;
}

.rolling-gallery {
  scroll-behavior: smooth;
}

/* pausa a animação quando o usuário interage */
.rolling-gallery.user-interacting .rolling-track {
  animation-play-state: paused;
}

@media (max-width: 720px) {
  .gallery-control {
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }

  .gallery-control-prev {
    left: 10px;
  }

  .gallery-control-next {
    right: 10px;
  }
}


/* ===== final v6: logo um pouco mais discreta ===== */
.logo-area img {
  width: 185px;
  max-height: 60px;
}

.footer-brand img {
  width: 162px;
  max-height: 54px;
}

@media (max-width: 1060px) {
  .logo-area img {
    width: 172px;
    max-height: 56px;
  }

  .footer-brand img {
    width: 154px;
    max-height: 52px;
  }
}

@media (max-width: 720px) {
  .logo-area img {
    width: 148px;
    max-height: 50px;
  }

  .footer-brand img {
    width: 142px;
    max-height: 48px;
  }
}

@media (max-width: 390px) {
  .logo-area img {
    width: 138px;
  }
}


/* ===== final v7: remoção de blocos genéricos ===== */
.compact-gallery {
  padding-top: 42px;
  padding-bottom: 86px;
}

.compact-gallery .rolling-gallery-wrap {
  margin-top: 0;
}

@media (max-width: 720px) {
  .compact-gallery {
    padding-top: 32px;
    padding-bottom: 72px;
  }
}
