﻿:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #f0ebe4;
  --text: #171717;
  --muted: #6d6a64;
  --border: #e2ddd5;
  --accent: #d96b3b;
  --accent-dark: #a94722;
  --accent-soft: #fff0e8;
  --shadow: 0 24px 70px rgba(40, 32, 24, 0.10);
  --radius: 28px;
}

body.dark {
  --bg: #0f1115;
  --surface: #171a21;
  --surface-soft: #20242d;
  --text: #f4f1ec;
  --muted: #aaa49b;
  --border: #2c313b;
  --accent: #ff8655;
  --accent-dark: #ffb088;
  --accent-soft: rgba(255, 134, 85, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

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

button,
input,
textarea {
  font-family: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
}

.nav-wrapper {
  width: min(1180px, 100%);
  margin: 0 auto;
  height: 68px;
  padding: 0 12px 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--text);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
  letter-spacing: 0.8px;
}

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

.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

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

.theme-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.theme-toggle span {
  position: absolute;
  transition: 0.3s ease;
  font-size: 18px;
}

.theme-toggle .moon {
  opacity: 0;
  transform: translateY(18px);
}

body.dark .theme-toggle .sun {
  opacity: 0;
  transform: translateY(-18px);
}

body.dark .theme-toggle .moon {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-cta:hover,
.btn:hover,
.shop-price button:hover,
.contact-form button:hover {
  transform: translateY(-3px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

.mobile-menu-btn span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

.mobile-menu-btn span:first-child {
  top: 17px;
}

.mobile-menu-btn span:last-child {
  bottom: 17px;
}

.hero {
  padding: 90px 20px 60px;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-heading span,
.contact-card span {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

h1 {
  max-width: 740px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero-description {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 26px;
}

.hero-stats div {
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.product-showcase {
  width: min(460px, 100%);
  min-height: 560px;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 70% 20%, var(--accent-soft), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.showcase-top span {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 3px;
}

.showcase-object {
  height: 320px;
  position: relative;
  display: grid;
  place-items: center;
}

.cube {
  position: absolute;
  border-radius: 28px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 75%, white), var(--accent-dark));
  box-shadow: 0 20px 50px rgba(217, 107, 59, 0.22);
  transform: rotate(45deg);
}

.cube-one {
  width: 150px;
  height: 150px;
  animation: floatOne 5s ease-in-out infinite;
}

.cube-two {
  width: 92px;
  height: 92px;
  left: 45px;
  bottom: 40px;
  opacity: 0.72;
  animation: floatTwo 6s ease-in-out infinite;
}

.cube-three {
  width: 66px;
  height: 66px;
  right: 60px;
  top: 35px;
  opacity: 0.55;
  animation: floatThree 7s ease-in-out infinite;
}

.showcase-bottom {
  padding: 20px;
  border-radius: 24px;
  background: var(--surface-soft);
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 95px 20px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.section-heading p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.service-grid,
.shop-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.shop-card,
.contact-card,
.process-list {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 32px;
  transition: 0.25s ease;
}

.service-card:hover,
.shop-card:hover {
  transform: translateY(-8px);
}

.service-card span {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 42px;
}

.service-card h3,
.shop-info h3,
.process-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.shop-info p,
.process-item p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-card {
  overflow: hidden;
  transition: 0.25s ease;
}

.shop-image {
  height: 230px;
  background:
    radial-gradient(circle at 35% 25%, var(--accent-soft), transparent 36%),
    var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--accent-dark);
}

.shop-info {
  padding: 24px;
}

.shop-price {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-price strong {
  color: var(--accent-dark);
}

.shop-price button,
.contact-form button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  padding: 13px 17px;
  transition: 0.25s ease;
}

.process-list {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 12px;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--border);
}

.process-item:last-child {
  border-bottom: 0;
}

.process-item strong {
  color: var(--accent-dark);
  font-size: 18px;
}

.contact-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 18px;
  padding: 16px;
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

.contact-form button {
  padding: 16px 22px;
}

.footer {
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

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

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

@keyframes floatOne {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(-18px) rotate(45deg);
  }
}

@keyframes floatTwo {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(16px) rotate(45deg);
  }
}

@keyframes floatThree {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(-12px) rotate(45deg);
  }
}

@media (max-width: 940px) {
  .nav-wrapper {
    height: 64px;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .hero-stats div {
    border-right: 0;
    padding-right: 0;
  }

  .service-grid,
  .shop-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    min-height: 440px;
  }

  .showcase-object {
    height: 240px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  h1 {
    letter-spacing: -1.6px;
  }

  .section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-card {
    padding: 26px;
  }

  .shop-price {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Logo MARS no menu */
.brand-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 48px;
  min-width: 155px;
  overflow: hidden;
}

.site-logo {
  width: 155px;
  height: auto;
  display: block;
}

@media (max-width: 560px) {
  .brand-logo-link {
    width: 120px;
    min-width: 120px;
  }

  .site-logo {
    width: 120px;
  }
}

/* Footer com logo MARS */
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  width: 130px;
  min-width: 130px;
}

.footer-logo {
  width: 130px;
  height: auto;
  display: block;
}

body.dark .footer-logo {
  filter: invert(1);
}

@media (max-width: 650px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Correção do objecto visual da hero */
.showcase-object {
  height: 300px;
  position: relative;
  display: block;
  overflow: hidden;
}

.cube-one {
  width: 140px;
  height: 140px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: floatOneFixed 5s ease-in-out infinite;
}

.cube-two {
  width: 76px;
  height: 76px;
  left: 26%;
  top: 64%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: floatTwoFixed 6s ease-in-out infinite;
}

.cube-three {
  width: 62px;
  height: 62px;
  left: 72%;
  top: 30%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: floatThreeFixed 7s ease-in-out infinite;
}

@keyframes floatOneFixed {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-14px) rotate(45deg);
  }
}

@keyframes floatTwoFixed {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(12px) rotate(45deg);
  }
}

@keyframes floatThreeFixed {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px) rotate(45deg);
  }
}

/* Alinhar o visual da direita com o texto principal da hero */
.hero-grid {
  align-items: start;
}

.hero-content {
  padding-top: 70px;
}

.hero-visual {
  align-items: flex-start;
  padding-top: 40px;
}

.product-showcase {
  min-height: 430px;
  max-width: 430px;
}

.showcase-object {
  height: 245px;
}

@media (max-width: 940px) {
  .hero-content {
    padding-top: 0;
  }

  .hero-visual {
    padding-top: 0;
  }
}

/* Forçar hero em 2 colunas no desktop */
.hero-grid {
  grid-template-columns: minmax(420px, 1fr) 430px !important;
  align-items: center !important;
  gap: 70px !important;
}

.hero-content {
  padding-top: 0 !important;
}

.hero-visual {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  padding-top: 0 !important;
}

.product-showcase {
  width: 430px !important;
  max-width: 430px !important;
  min-height: 430px !important;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-visual {
    justify-content: center !important;
  }

  .product-showcase {
    width: min(430px, 100%) !important;
  }
}

/* HERO FINAL - texto à esquerda e visual centrado à direita */
.hero {
  padding-top: 70px !important;
}

.hero-grid {
  width: min(1180px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  min-height: calc(100vh - 170px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 430px !important;
  align-items: center !important;
  gap: 70px !important;
}

.hero-content {
  padding-top: 0 !important;
  align-self: center !important;
}

.hero-visual {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  align-self: center !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.product-showcase {
  width: 430px !important;
  max-width: 430px !important;
  min-height: 430px !important;
  margin: 0 !important;
}

.hero h1 {
  max-width: 620px !important;
}

.hero-description {
  max-width: 560px !important;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-visual {
    justify-content: center !important;
  }

  .product-showcase {
    width: min(430px, 100%) !important;
  }
}

/* Slideshow de fotos no cartão principal */
.image-showcase {
  overflow: hidden;
}

.photo-slider {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface-soft);
  margin: 20px 0;
}

.photo-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.4s ease;
}

.photo-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 760px) {
  .photo-slider {
    height: 240px;
  }
}

/* Cartão principal só com imagem */
.product-showcase.image-showcase {
  padding: 14px !important;
  min-height: auto !important;
  background: var(--surface) !important;
}

.photo-slider {
  position: relative;
  width: 100%;
  height: 430px !important;
  margin: 0 !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: transparent !important;
}

.photo-slider .slide {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}

/* efeito suave nas pontas para esconder a sensação de borda */
.photo-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--surface) 0%, transparent 10%, transparent 90%, var(--surface) 100%),
    linear-gradient(to bottom, var(--surface) 0%, transparent 10%, transparent 90%, var(--surface) 100%);
}

@media (max-width: 760px) {
  .photo-slider {
    height: 360px !important;
  }
}

/* HERO visual limpo - sem cartão */
.clean-hero-visual {
  justify-content: center !important;
  align-items: center !important;
}

.floating-photo-frame {
  width: min(440px, 100%);
  height: 500px;
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.clean-slider {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 42px !important;
  overflow: hidden !important;
  background: transparent !important;
}

.clean-slider .slide {
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 42px !important;
  filter: saturate(1.04) contrast(1.02);
}

.clean-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 48%, var(--bg) 96%),
    linear-gradient(to right, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
}

.floating-photo-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background: var(--accent-soft);
  filter: blur(55px);
  border-radius: 50%;
  opacity: 0.9;
}

.hero-content.changing {
  opacity: 0;
  transform: translateY(10px);
}

.hero-content {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 760px) {
  .floating-photo-frame {
    height: 420px;
  }
}

/* HERO PROFISSIONAL FINAL - imagem limpa, centrada e sincronizada */
.hero {
  padding: 72px 20px 80px !important;
}

.hero-grid {
  width: min(1180px, calc(100% - 40px)) !important;
  min-height: calc(100vh - 210px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 460px !important;
  align-items: center !important;
  gap: 86px !important;
}

.hero-content {
  align-self: center !important;
  max-width: 650px !important;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-content.changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero h1 {
  max-width: 650px !important;
  font-size: clamp(44px, 5.2vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -3px !important;
}

.hero-description {
  max-width: 590px !important;
}

.clean-hero-visual {
  height: 100% !important;
  min-height: 520px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.floating-photo-frame {
  width: 460px !important;
  height: 520px !important;
  position: relative !important;
  border-radius: 38px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.clean-slider {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 38px !important;
  overflow: hidden !important;
  background: transparent !important;
}

.clean-slider .slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 38px !important;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
  transition: opacity 0.85s ease, transform 1.4s ease, filter 0.85s ease;
}

.clean-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* bordas muito mais subtis */
.clean-slider::after,
.photo-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 4%, transparent 96%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 4%, transparent 96%, var(--bg) 100%);
}

/* brilho discreto atrás da imagem */
.floating-photo-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0.7;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    text-align: center !important;
  }

  .hero-content {
    margin: 0 auto !important;
  }

  .hero-buttons {
    justify-content: center !important;
  }

  .clean-hero-visual {
    min-height: auto !important;
  }

  .floating-photo-frame {
    width: min(460px, 100%) !important;
    height: 440px !important;
  }
}

/* Remover bordas redondas da imagem principal */
.floating-photo-frame,
.clean-slider,
.clean-slider .slide,
.photo-slider,
.photo-slider .slide {
  border-radius: 0 !important;
}

/* Remover bordas redondas da imagem principal */
.floating-photo-frame,
.clean-slider,
.clean-slider .slide,
.photo-slider,
.photo-slider .slide {
  border-radius: 5 !important;
}

/* Remover bordas redondas da imagem principal */
.floating-photo-frame,
.clean-slider,
.clean-slider .slide,
.photo-slider,
.photo-slider .slide {
  border-radius: 10 !important;
}

/* Remover bordas redondas da imagem principal */
.floating-photo-frame,
.clean-slider,
.clean-slider .slide,
.photo-slider,
.photo-slider .slide {
  border-radius: 10;
}

/* Remover bordas redondas da imagem principal */
.floating-photo-frame,
.clean-slider,
.clean-slider .slide,
.photo-slider,
.photo-slider .slide {
  border-radius: 10px !important;
}

/* Efeitos profissionais para imagem e texto dinâmico */
.hero-content {
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}

.hero-content.changing {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(3px);
}

.floating-photo-frame {
  animation: marsFloat 7s ease-in-out infinite;
}

.clean-slider .slide {
  opacity: 0;
  transform: scale(1.08) translateY(10px);
  filter: saturate(0.95) contrast(1.02) blur(2px);
  transition:
    opacity 1s ease,
    transform 4.6s ease,
    filter 1s ease;
}

.clean-slider .slide.active {
  opacity: 1;
  transform: scale(1.015) translateY(0);
  filter: saturate(1.06) contrast(1.04) blur(0);
}

.clean-slider::after,
.photo-slider::after {
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 2%, transparent 98%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 2%, transparent 98%, var(--bg) 100%);
}

@keyframes marsFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Cartões de serviço com acção */
.service-card-action {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

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

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.service-link:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* Página Simulador 3D */
.simulator-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.simulator-hero {
  max-width: 760px;
  margin-bottom: 44px;
}

.simulator-hero span,
.result-card > span {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.simulator-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.simulator-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.simulator-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.simulator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.simulator-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.simulator-card p {
  color: var(--muted);
  line-height: 1.7;
}

.file-drop {
  margin-top: 24px;
  min-height: 180px;
  border: 1px dashed var(--border);
  border-radius: 24px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  padding: 24px;
  transition: 0.25s ease;
}

.file-drop:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.file-drop input {
  display: none;
}

.file-drop strong {
  display: block;
  margin-bottom: 8px;
}

.file-drop small,
.file-note {
  color: var(--muted);
}

.file-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-grid input,
.form-grid select {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 16px;
  padding: 14px;
  outline: none;
}

.simulate-btn,
.result-link {
  margin-top: 22px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-flex;
  justify-content: center;
}

.simulate-btn:hover,
.result-link:hover {
  transform: translateY(-3px);
}

.result-card {
  display: flex;
  flex-direction: column;
}

.result-card h2 {
  font-size: 48px;
  letter-spacing: -2px;
}

.result-lines {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.result-lines div {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.result-lines strong {
  display: block;
  margin-bottom: 5px;
}

.result-lines small {
  color: var(--muted);
}

.result-link {
  margin-top: auto;
  text-decoration: none;
}

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

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

/* Página Pedido Técnico */
.technical-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.technical-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  align-items: center;
  margin-bottom: 54px;
}

.technical-hero span {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.technical-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.technical-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
}

.technical-image {
  height: 420px;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.technical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technical-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.technical-form,
.technical-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.technical-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.technical-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.technical-form input,
.technical-form select,
.technical-form textarea {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 16px;
  padding: 15px;
  outline: none;
  font-size: 15px;
}

.technical-form textarea {
  min-height: 160px;
  resize: vertical;
}

.technical-upload {
  min-height: 150px;
  border: 1px dashed var(--border);
  border-radius: 22px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  padding: 24px;
}

.technical-upload input {
  display: none;
}

.technical-upload strong {
  color: var(--text);
  font-size: 18px;
}

.technical-upload small {
  color: var(--muted);
  font-weight: 600;
}

.technical-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.technical-form button:hover {
  transform: translateY(-3px);
}

.technical-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.technical-side-card {
  padding: 28px;
}

.technical-side-card h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.technical-side-card ul {
  display: grid;
  gap: 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 940px) {
  .technical-hero,
  .technical-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .technical-image {
    height: 360px;
  }
}

/* Página Loja MARS */
.store-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.store-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.store-hero span {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.store-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.store-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.store-filters button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 800;
  cursor: pointer;
}

.store-filters button.active,
.store-filters button:hover {
  background: var(--text);
  color: var(--bg);
}

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

.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.store-card:hover {
  transform: translateY(-8px);
}

.store-image {
  height: 260px;
  background: var(--surface-soft);
  overflow: hidden;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-info {
  padding: 24px;
}

.store-info small {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
}

.store-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.store-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.store-info div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-info strong {
  color: var(--accent-dark);
}

.store-info a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  font-size: 14px;
}

@media (max-width: 980px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-info div {
    flex-direction: column;
    align-items: stretch;
  }

  .store-info a {
    justify-content: center;
  }
}

/* Página Loja MARS */
.store-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.store-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.store-hero span {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.store-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.store-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.store-filters button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 800;
  cursor: pointer;
}

.store-filters button.active,
.store-filters button:hover {
  background: var(--text);
  color: var(--bg);
}

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

.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.store-card:hover {
  transform: translateY(-8px);
}

.store-image {
  height: 260px;
  background: var(--surface-soft);
  overflow: hidden;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-info {
  padding: 24px;
}

.store-info small {
  display: inline-flex;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
}

.store-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.store-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.store-info div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-info strong {
  color: var(--accent-dark);
}

.store-info a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  font-size: 14px;
}

@media (max-width: 980px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-info div {
    flex-direction: column;
    align-items: stretch;
  }

  .store-info a {
    justify-content: center;
  }
}
