p {
  text-align: left;
}

.section-head.center p,
.cta-band p {
  text-align: center;
}

/* ===== DESIGN SYSTEM & VARIABLES ===== */
:root {
  --bg: #0B0B0B;
  --surface: #171717;
  --border: #2A2A2A;
  --fg: #FFFFFF;
  --muted: #A1A1AA;
  --accent: #B38547;
  --accent-hover: #c9974f;
  --success: #22C55E;

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== ANIMATIONS & REVEAL ===== */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(179,133,71,0.15); }
  50% { box-shadow: 0 0 40px rgba(179,133,71,0.3); }
}

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 2px;
}

.logo-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--fg);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #0B0B0B;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.navbar-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1200;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-scrim.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(80vw, 340px);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1100;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0B0B0B;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(179, 133, 71, 0.25);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(179, 133, 71, 0.07);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.bg-layer {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(1000px 500px at 78% 20%, rgba(179, 133, 71, 0.08), transparent 60%),
              linear-gradient(180deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.7) 45%, rgba(11, 11, 11, 0.96) 100%);
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 11, 0.85) 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateY(-70px);
}

.hero-photo {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(179, 133, 71, 0.35);
  background: rgba(179, 133, 71, 0.06);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin-top: 64px;
}

.hero-stat {
  background: rgba(23, 23, 23, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  display: block;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 24px;
  position: relative;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== AUCTION VITRINE ===== */
.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.auction-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition);
}

.auction-card:hover {
  transform: scale(1.02);
}

.auction-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.auction-card:hover .auction-card-bg {
  transform: scale(1.05);
}

.auction-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 32%, transparent 65%);
}

.auction-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.auction-price-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.auction-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auction-card-price {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #0B0B0B;
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.auction-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--fg);
}

.auction-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.auction-card-leilao {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}

.auction-card-date {
  color: var(--muted);
}

/* ===== SERVIÇOS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(179, 133, 71, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(179, 133, 71, 0.1);
  border: 1px solid rgba(179, 133, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(179, 133, 71, 0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(179, 133, 71, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ===== COMO FUNCIONA ===== */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 15%, var(--accent) 85%, transparent 100%);
}

.tl-item {
  position: relative;
  padding: 0 0 40px 64px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(179, 133, 71, 0.5);
  z-index: 2;
}

.tl-dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.tl-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.tl-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 8px;
}

.tl-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== DIFERENCIAIS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.diff-card:hover {
  border-color: rgba(179, 133, 71, 0.35);
  transform: translateY(-3px);
  background: #1a1a1a;
}

.diff-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(179, 133, 71, 0.12);
  border: 1px solid rgba(179, 133, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.diff-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 6px;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(179, 133, 71, 0.4);
}

.faq-q {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--fg);
  text-align: left;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-q-icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}

.faq-item.active .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: radial-gradient(800px 360px at 85% 20%, rgba(179, 133, 71, 0.12), transparent 60%),
              var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-band .section-title {
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  background: #080808;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
  max-width: 300px;
}

.footer-top h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  display: flex;
  gap: 20px;
}

.legal a {
  color: var(--muted);
  transition: var(--transition);
}

.legal a:hover {
  color: var(--accent);
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.35);
  transition: var(--transition);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .auction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .section {
    padding: 84px 20px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-photo {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .auction-grid {
    grid-template-columns: 1fr;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 40px 24px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

/* ===== ADVANCED CONTACT PAGE STYLES ===== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.contact-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  border-color: rgba(179, 133, 71, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-card.highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, var(--surface) 100%);
  border-color: rgba(34, 197, 94, 0.25);
}

.contact-card.highlight:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(179, 133, 71, 0.1);
  border: 1px solid rgba(179, 133, 71, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card.highlight .contact-icon-box {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--success);
}

.contact-card:hover .contact-icon-box {
  transform: scale(1.08);
}

.contact-card-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card-info p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card-info a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.contact-card-info a:hover {
  text-decoration: underline;
}

.contact-card.highlight .contact-card-info a {
  color: var(--success);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* ===== CONTACT FORM BOX ===== */
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.contact-form-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 8px;
}

.contact-form-box p.subtitle {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: var(--transition);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%25A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(179, 133, 71, 0.14);
}

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

.form-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  background: var(--accent);
  color: #0B0B0B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.form-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(179, 133, 71, 0.25);
}

/* ===== MAP CONTAINER ===== */
.location-map-card {
  margin-top: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.map-head {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.map-head h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.map-head p {
  font-size: 14px;
  color: var(--muted);
}

.map-iframe-wrap {
  height: 380px;
  width: 100%;
  background: #141414;
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) invert(0.92) contrast(1.2);
}

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

/* ===== SOBRE ===== */
.sobre-hero {
  padding: 170px 24px 90px;
}

.sobre-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}

.sobre-foto {
  position: sticky;
  top: 110px;
}

.sobre-foto img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.sobre-texto h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 10px;
}

.sobre-texto .tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}

.sobre-texto > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.sobre-texto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--fg);
  margin: 36px 0 12px;
}

.sobre-texto blockquote {
  position: relative;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 24px 0 32px;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.8;
  color: var(--muted);
}

.sobre-texto blockquote p {
  margin: 0;
}

.sobre-texto strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.sobre-texto .btn {
  margin: 28px 12px 8px 0;
}

@media (max-width: 900px) {
  .sobre-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sobre-foto {
    position: static;
  }
  .sobre-foto img {
    max-width: 420px;
  }
}

