/* Fernando Mette — estilos complementares ao Tailwind CDN */
:root {
  --navy: #0f1c2e;
  --navy-light: #1a2d47;
  --navy-mid: #152538;
  --charcoal: #1e293b;
  --gold: #c9a227;
  --gold-soft: #d4b84a;
  --gold-muted: rgba(201, 162, 39, 0.35);
  --cream: #f8f6f1;
  --cream-deep: #f0ebe3;
  --muted: #64748b;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
}

.bg-navy { background-color: var(--navy); }
.bg-navy-light { background-color: var(--navy-light); }
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.bg-cream { background-color: var(--cream); }
.border-gold { border-color: var(--gold); }

/* —— Buttons —— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.375rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(15, 28, 46, 0.08);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.375rem;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 0.375rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.375rem;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 0.375rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

/* —— Trust strip —— */
.trust-strip {
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
  background: var(--cream);
}
.trust-item {
  position: relative;
  padding: 0.25rem 0.5rem;
}
@media (min-width: 640px) {
  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gold-muted);
  }
}
.trust-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.trust-dots span[aria-hidden] {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}

/* —— Cards —— */
.card-service {
  border: 1px solid #e8e4dc;
  border-radius: 0.5rem;
  padding: 1.625rem 1.5rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
  height: 100%;
  position: relative;
}
.card-service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 0.5rem 0 0 0.5rem;
  transition: background 0.2s;
}
.card-service:hover {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 10px 28px rgba(15, 28, 46, 0.07);
  transform: translateY(-2px);
}
.card-service:hover::before { background: var(--gold); }

/* —— Photo frame —— */
.photo-frame {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.35),
    0 0 0 6px rgba(248, 246, 241, 0.9),
    0 16px 40px rgba(15, 28, 46, 0.14);
  background: var(--navy-light);
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.02) saturate(0.96);
}
.photo-frame--portrait { aspect-ratio: 3 / 4; }

.photo-placeholder {
  background: linear-gradient(145deg, #1a2d47 0%, #0f1c2e 100%);
  border: 2px dashed rgba(201, 162, 39, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  min-height: 320px;
  border-radius: 0.5rem;
  text-align: center;
  padding: 2rem;
}

/* —— Floating WhatsApp —— */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.85);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow:
    0 8px 22px rgba(37, 211, 102, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.9);
}
.wa-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .wa-float {
    bottom: 1.75rem;
    right: 1.75rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}

/* —— Nav —— */
.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.85;
}
@media (max-width: 767px) {
  .nav-link.active::after { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--navy-light);
}
.mobile-menu.open { display: block; }

/* —— Forms —— */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.lgpd-box {
  background: var(--cream);
  border: 1px solid #e8e4dc;
  border-left: 3px solid var(--gold);
  border-radius: 0.375rem;
  padding: 0.875rem 1rem;
}

/* —— Section chrome —— */
.section-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-pad {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
@media (min-width: 768px) {
  .section-pad {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
}

.page-hero {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
@media (min-width: 768px) {
  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.hero-home {
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .hero-home {
    padding-top: 5rem;
    padding-bottom: 5.25rem;
  }
}

.prose-legal p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #334155;
}
.prose-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: #334155;
}
.prose-legal li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.prose-legal h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-weight: 600;
}

/* FAQ */
.faq-list { border-top: 1px solid #e8e4dc; }
.faq-item {
  border-bottom: 1px solid #e8e4dc;
  padding: 1.125rem 0;
}
.faq-item dt {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.0125rem;
  margin-bottom: 0.4rem;
}
.faq-item dd {
  color: #475569;
  line-height: 1.65;
  font-size: 0.9625rem;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a { transition: color 0.15s; }
.site-footer a:hover { color: var(--gold); }
.footer-ethics {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  max-width: 42rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

footer a:hover { color: var(--gold); }

/* Mobile polish */
@media (max-width: 640px) {
  .btn-primary,
  .btn-outline,
  .btn-outline-dark {
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
  }
}
