﻿/* ============================================================
   Ramon Correia Topografia — Palhoça/SC
   Paleta: preto · branco · dourado #C8B89A
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #161616;
  --black-elev: #1f1f1f;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --gray: #6b6b6b;
  --gray-light: #d6d3cb;
  --gold: #C8B89A;
  --gold-dark: #a6976f;
  --gold-soft: rgba(200, 184, 154, 0.12);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius: 4px;

  --transition: 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================================
   Typography
   =========================================== */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-family: var(--font-serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; }
h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: 0.02em; }
h3 { font-size: 1.15rem; letter-spacing: 0.01em; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-style: italic;
}
.section-tag.light { color: var(--gold); }
.section-tag .slash {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1;
  transform: translateY(2px) skewX(-15deg);
  display: inline-block;
}

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-tag { justify-content: center; display: inline-flex; }

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 11px 18px; font-size: 0.75rem; }
.btn-lg { padding: 20px 36px; font-size: 0.9rem; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 184, 154, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===========================================
   Header
   =========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  transition: color var(--transition);
}
.logo-mark { color: var(--gold); display: inline-flex; }
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-primary {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.logo-secondary {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-top: 3px;
}

.nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover { color: var(--gold-dark); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

.mobile-nav {
  background: var(--white);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-top: 1px solid transparent;
}
.mobile-nav.is-open {
  max-height: 440px;
  border-top-color: rgba(0, 0, 0, 0.07);
}
.mobile-nav ul { list-style: none; padding: 4px 32px 20px; }
.mobile-nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
  display: block;
  padding: 15px 0;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav .mobile-cta {
  color: var(--white);
  background: #25D366;
  text-align: center;
  border-radius: 6px;
  padding: 12px 0;
  margin-top: 4px;
  letter-spacing: 0.08em;
}

/* ===========================================
   Hero
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: 90px;
  padding-bottom: 80px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(15%) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.65) 45%, rgba(10, 10, 10, 0.15) 80%, rgba(10, 10, 10, 0) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text { max-width: 680px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-item strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.meta-item span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ===========================================
   Services
   =========================================== */
.services {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}
.services::before {
  content: "RCT";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(200, 184, 154, 0.08);
  pointer-events: none;
  line-height: 1;
}

/* Logo image (real PNG) */
.logo-img { padding: 0; }
.logo-img img { height: 52px; width: auto; display: block; }
.logo-img .logo-dark { display: block; }
.logo-img .logo-light { display: none; }
.logo-img-footer img { height: 56px; opacity: 0.95; margin-bottom: 18px; }

/* Exit-intent Popup */
.exit-popup { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn 0.3s ease; }
.exit-popup[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-card { position: relative; background: var(--white); max-width: 760px; width: 100%; border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 0.9fr 1.1fr; box-shadow: 0 40px 100px rgba(0,0,0,0.5); border-top: 4px solid var(--gold); animation: popIn 0.45s cubic-bezier(0.2,0.9,0.3,1.1); }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }
.exit-wrapper { position: relative; max-width: 760px; width: 100%; }
.exit-close { position: absolute; top: -18px; right: -18px; width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; background: #111; color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 9999; pointer-events: all !important; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.exit-close:hover { background: var(--black); color: var(--gold); }
.exit-photo { background: var(--black); }
.exit-photo img { width: 100%; height: 100%; object-fit: cover; }
.exit-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.exit-tag { font-family: var(--font-serif); font-style: italic; color: var(--gold-dark); font-size: 1rem; }
.exit-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.8rem; line-height: 1.15; letter-spacing: -0.01em; text-transform: none; color: var(--black); }
.exit-body p { color: var(--gray); margin-bottom: 8px; }
.exit-body small { color: var(--gray); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.exit-body .btn { align-self: flex-start; }
@media (max-width: 720px) {
  .exit-card { grid-template-columns: 1fr; max-width: 420px; }
  .exit-photo { aspect-ratio: 4/3; }
  .exit-body { padding: 28px 24px; }
  .exit-body h3 { font-size: 1.5rem; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.service-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: brightness(0.92);
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.35) 100%);
}

.service-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  position: relative;
}
.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -16px 0 0 24px;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--black);
  color: var(--gold);
}
.service-body h3 {
  flex: 1;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 22px 24px 22px 0;
  color: var(--black);
}

.service-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.services-foot {
  margin-top: 48px;
  text-align: center;
}
.services-foot a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.services-foot a:hover { color: var(--black); }

/* ===========================================
   CTA Strip
   =========================================== */
.cta-strip {
  position: relative;
  padding: 70px 0;
  color: var(--white);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.75));
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  max-width: 720px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ===========================================
   About
   =========================================== */
.about {
  padding: 110px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  align-self: stretch;
}
.photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.photo-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.photo-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border-radius: 2px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-text h2 { color: var(--white); margin-bottom: 22px; }
.about-lede {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
}
.about-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.about-pills li {
  background: rgba(200, 184, 154, 0.1);
  border: 1px solid rgba(200, 184, 154, 0.3);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===========================================
   Process
   =========================================== */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.process-steps li {
  padding: 36px 28px;
  border-right: 1px solid var(--gray-light);
  position: relative;
}
.process-steps li:last-child { border-right: none; }
.process-steps h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process-steps p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-style: italic;
}

/* ===========================================
   Area
   =========================================== */
.area {
  padding: 110px 0;
  background: var(--off-white);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-text h2 { margin-bottom: 18px; }
.area-text > p { color: var(--gray); margin-bottom: 24px; max-width: 480px; }
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin: 28px 0;
}
.area-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  position: relative;
  padding-left: 18px;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-20deg);
  width: 4px;
  height: 10px;
  background: var(--gold);
}
.area-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 20px;
}
.area-note a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

.map-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.map-card .map-frame {
  aspect-ratio: 4/5;
  display: block;
}
.map-card .map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(10, 10, 10, 0.88) 40%, rgba(10, 10, 10, 0.97) 100%);
  padding: 48px 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.map-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-info strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.map-info span {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.map-directions-btn {
  flex-shrink: 0;
  gap: 8px;
  white-space: nowrap;
}

/* ===========================================
   FAQ
   =========================================== */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 22px 0;
}
.faq-list summary {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-list summary:hover { color: var(--gold-dark); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
  line-height: 0.8;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding-top: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.96rem;
  max-width: 720px;
}
.faq-list a {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a strong { color: var(--white); font-weight: 600; }

.footer-bottom { padding: 24px 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.footer-credit {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--gold); }

/* ===========================================
   Floating WhatsApp
   =========================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 1.8s infinite ease-out;
}
.wa-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 1.8s infinite ease-out 0.6s;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===========================================
   Trust Bar
   =========================================== */
.trust-bar {
  background: #111111;
  padding: 36px 0;
  border-top: 1px solid rgba(200, 184, 154, 0.15);
  border-bottom: 1px solid rgba(200, 184, 154, 0.15);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  gap: 4px;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(200, 184, 154, 0.2);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust-inner { gap: 24px; }
  .trust-item { padding: 0 20px; }
  .trust-divider { display: none; }
}


/* ===========================================
   Reveal animations
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .services::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 80px; }
  .photo-frame { max-width: 420px; margin: 0 auto; }
  .photo-frame::before { right: 0; }
  .photo-badge { left: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps li:nth-child(2) { border-right: none; }
  .process-steps li:nth-child(1), .process-steps li:nth-child(2) { border-bottom: 1px solid var(--gray-light); }
  .area-inner { grid-template-columns: 1fr; gap: 48px; }
  .map-card { max-width: 480px; margin: 0 auto; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .hero-media img { object-position: center top; }
  .hero-scroll { display: none; }
  .hero-meta { gap: 16px; }
  .meta-divider { display: none; }
  .services { padding: 70px 0; }
  .about { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .process-steps li:last-child { border-bottom: none; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  /* Tipografia mobile — hierarquia própria, não zoom do desktop */
  h1 { font-size: 2rem; line-height: 1.12; letter-spacing: -0.01em; }
  h2 { font-size: 1.45rem; letter-spacing: 0.01em; line-height: 1.2; }
  h3 { font-size: 1rem; }

  .eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 18px; }
  .section-tag { font-size: 0.88rem; letter-spacing: 0.04em; }

  .hero-sub { font-size: 0.97rem; line-height: 1.65; margin-bottom: 32px; }
  .meta-item strong { font-size: 1.35rem; }
  .meta-item span { font-size: 0.68rem; letter-spacing: 0.12em; }

  .badge-num { font-size: 2rem; }
  .badge-text { font-size: 0.65rem; letter-spacing: 0.12em; }

  .btn { letter-spacing: 0.08em; font-size: 0.8rem; }
  .btn-lg { padding: 17px 28px; }

  .cta-inner h2 { font-size: 1.3rem; line-height: 1.25; }

  .service-body h3 { font-size: 0.95rem; letter-spacing: 0.04em; }
  .step-num { font-size: 2rem; }
  .section-head { margin-bottom: 32px; }

  .map-overlay { flex-direction: column; align-items: flex-start; gap: 14px; padding: 40px 20px 20px; }
  .map-directions-btn { width: 100%; justify-content: center; }
}
