/* -------------------------------------------------------
   Michel Sobel Representações
   Página institucional simples e responsiva
-------------------------------------------------------- */

:root {
  --bg: #f2efe8;
  --bg-soft: #e9e4da;
  --surface: #faf8f3;
  --text: #181716;
  --muted: #69645e;
  --dark: #151515;
  --dark-soft: #20201f;
  --line: rgba(24, 23, 22, 0.12);
  --accent: #a48a60;
  --accent-light: #c8b893;
  --white: #ffffff;
  --container: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 500;
}

.main-nav a {
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.62;
}

.main-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 7px auto;
  background: var(--text);
}

/* HERO */

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4.3rem, 8vw, 7.4rem);
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: var(--muted);
  font-style: italic;
  font-weight: 500;
}

.hero-text {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--line);
  background: transparent;
}

/* WATCH VISUAL */

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(200,184,147,0.3) 45%, rgba(164,138,96,0.08) 72%);
  filter: blur(2px);
}

.watch-card {
  position: relative;
  z-index: 2;
  width: 285px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 35px 40px rgba(0, 0, 0, 0.14));
  transform: rotate(8deg);
}

.watch-case {
  position: absolute;
  z-index: 3;
  width: 270px;
  height: 270px;
  padding: 11px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c9bd9d, #706448 44%, #d3c8ab 70%, #756a50);
}

.watch-dial {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 25%, #353432, #191918 50%, #10100f);
  border: 1px solid rgba(255,255,255,0.16);
}

.watch-dial::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(200,184,147,0.38);
  border-radius: 50%;
}

.watch-markers span {
  position: absolute;
  z-index: 2;
  color: #bcae8b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.m12 { top: 18px; left: 50%; transform: translateX(-50%); }
.m3  { right: 24px; top: 50%; transform: translateY(-50%); }
.m6  { bottom: 17px; left: 50%; transform: translateX(-50%); }
.m9  { left: 24px; top: 50%; transform: translateY(-50%); }

.hand {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 50%;
  width: 2px;
  transform-origin: bottom center;
  background: #cbb98c;
}

.hand-hour {
  height: 55px;
  transform: translateX(-50%) rotate(42deg);
}

.hand-minute {
  height: 84px;
  transform: translateX(-50%) rotate(145deg);
}

.hand-center {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #d2c29b;
}

.dial-label {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(222, 211, 184, 0.78);
  font-size: 0.48rem;
  letter-spacing: 0.28em;
}

.watch-strap {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 128px;
  height: 170px;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      90deg,
      #3d3326 0,
      #3d3326 4px,
      #544735 4px,
      #544735 8px
    );
  border: 1px solid rgba(0,0,0,0.18);
}

.strap-top {
  top: 0;
  border-radius: 24px 24px 8px 8px;
}

.strap-bottom {
  bottom: 0;
  border-radius: 8px 8px 24px 24px;
}

.watch-crown {
  position: absolute;
  z-index: 5;
  right: -5px;
  width: 23px;
  height: 48px;
  border-radius: 4px 8px 8px 4px;
  background: linear-gradient(90deg, #7f7255, #c9bd9d, #776b50);
}

/* GENERAL SECTIONS */

.section {
  padding: 110px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  letter-spacing: -0.035em;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.07rem;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark .section-kicker {
  color: var(--accent-light);
}

.section-heading {
  max-width: 820px;
}

.section-heading p:last-child {
  max-width: 620px;
  color: #aaa69e;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.info-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.card-number {
  color: var(--accent-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.info-card h3 {
  margin: 82px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: #aaa69e;
  font-size: 0.92rem;
}

/* CONTACT */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 90px;
  align-items: center;
}

.contact-panel > div:first-child p:last-child {
  max-width: 670px;
  color: var(--muted);
}

.contact-box {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.contact-box > a:first-of-type {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.btn-full {
  width: 100%;
  margin-top: 28px;
}

/* FOOTER */

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-content > div {
  display: flex;
  flex-direction: column;
}

.footer-content strong {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  font-size: 0.78rem;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    min-height: calc(100vh - 82px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 20px;
    background: var(--bg);
    font-size: 1.15rem;
  }

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

  .hero-grid,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual::before {
    width: 360px;
    height: 360px;
  }

  .watch-card {
    transform: rotate(5deg) scale(0.84);
  }

  .split-section,
  .contact-panel {
    gap: 42px;
  }

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

  .info-card {
    min-height: auto;
  }

  .info-card h3 {
    margin-top: 52px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .watch-card {
    transform: rotate(5deg) scale(0.72);
  }

  .section {
    padding: 76px 0;
  }

  .section h2 {
    font-size: 3.3rem;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

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