/* ============================================================
   ÁGUIA DOURADA DETETIVES — Pure CSS/HTML Site
   Tema: Preto & Ouro | Curitiba, PR
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c97a;
  --gold-dark:   #a07c32;
  --bg:          #080808;
  --card:        #111111;
  --card2:       #161616;
  --border:      rgba(201,168,76,0.15);
  --border-dim:  rgba(255,255,255,0.07);
  --text:        #e8e8e8;
  --muted:       #888888;
  --white:       #ffffff;
  --radius:      12px;
  --transition:  0.25s ease;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
.serif { font-family: 'Playfair Display', serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
p  { color: var(--muted); line-height: 1.75; }

.gold { color: var(--gold); }
.upper { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); background: rgba(201,168,76,0.06);
  padding: 8px 18px; border-radius: 100px;
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px;
}
.badge svg { width: 14px; height: 14px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.1em; cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: #000;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim); height: 76px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 64px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 10px 22px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta svg { width: 14px; height: 14px; }

/* Hidden on desktop, shown only inside mobile menu */
.nav-cta-mobile { display: none; }

/* Mobile hamburger (CSS-only) */
.nav-toggle { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo {
    min-width: 0;
    overflow: hidden;
    max-width: 55vw;
    flex-shrink: 1;
  }
  .nav-logo img { height: 52px; width: auto; max-width: 100%; }

  /* Hamburger → X animation */
  .nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hamburger span { transition: transform 0.3s ease, opacity 0.2s ease; }

  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--card); flex-direction: column; align-items: stretch;
    padding: 20px 24px 28px; gap: 4px;
    border-bottom: 1px solid var(--border-dim);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s ease 0.3s;
    z-index: 99;
    pointer-events: none;
  }
  .nav-toggle:checked ~ .nav-inner .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s ease 0s;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dim);
    color: var(--text);
  }
  .nav-links a:last-child { border-bottom: none; }

  .nav-cta-mobile {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 20px;
    background: var(--gold); color: #000;
    border-radius: var(--radius);
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-bottom: none !important;
    transition: background var(--transition);
  }
  .nav-cta-mobile:hover { background: var(--gold-light); color: #000; }
  .nav-cta-mobile svg { width: 16px; height: 16px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding-top: 76px;
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover; background-position: center right;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.8) 40%, rgba(8,8,8,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px; padding: 80px 0;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .line2 { display: block; color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 60px; display: flex; gap: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-label strong { display: block; font-size: 0.82rem; color: var(--text); }
.trust-label span { font-size: 0.72rem; color: var(--muted); }












/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--card); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--card2); border: 1px solid var(--border-dim);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon { color: var(--gold); margin-bottom: 16px; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { flex: 1; margin-bottom: 24px; }
.service-card .btn { align-self: flex-start; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility { background: var(--bg); }
.credibility-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cred-photo-wrap {
  position: relative;
}
.cred-photo-frame {
  position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.cred-photo-frame img { width: 100%; height: 540px; object-fit: cover; object-position: top; }
.cred-corner {
  position: absolute; width: 48px; height: 48px;
  border-color: var(--gold); border-style: solid;
}
.cred-corner-tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.cred-corner-br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.cred-badge-photo {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: #000; padding: 16px 20px;
  border-radius: 8px; text-align: center;
}
.cred-badge-photo strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; }
.cred-badge-photo span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.cred-content h2 { margin-bottom: 8px; }
.cred-content .cred-subtitle { color: var(--gold); font-weight: 600; margin-bottom: 24px; font-size: 0.95rem; }
.cred-content > p { margin-bottom: 32px; }
.cred-items { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.cred-item {
  background: var(--card); border: 1px solid var(--border-dim);
  border-radius: 8px; padding: 20px; display: flex; gap: 12px;
}
.cred-item-icon { color: var(--gold); flex-shrink: 0; }
.cred-item-icon svg { width: 20px; height: 20px; }
.cred-item strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 2px; }
.cred-item span { font-size: 0.75rem; color: var(--muted); }
@media (max-width: 900px) {
  .credibility-inner { grid-template-columns: 1fr; gap: 48px; }
  .cred-photo-frame img { height: 400px; }
  .cred-badge-photo { right: 0; bottom: -12px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--card); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.testimonial-card {
  background: var(--card2); border: 1px solid var(--border-dim);
  border-radius: var(--radius); padding: 28px;
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card blockquote { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.author-name strong { display: block; font-size: 0.85rem; color: var(--text); }
.author-name span { font-size: 0.75rem; color: var(--muted); }
.reviews-cta { text-align: center; }
.reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 28px; color: var(--text); transition: var(--transition);
  font-size: 0.85rem; font-weight: 600;
}
.reviews-link:hover { border-color: var(--gold); color: var(--gold); }
.reviews-link svg { width: 20px; height: 20px; color: #4285f4; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
details.faq-item {
  background: var(--card); border: 1px solid var(--border-dim);
  border-radius: var(--radius); overflow: hidden;
}
details.faq-item[open] { border-color: var(--border); }
summary.faq-q {
  padding: 24px 28px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1rem; color: var(--text);
  list-style: none; user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+'; color: var(--gold); font-size: 1.5rem;
  line-height: 1; flex-shrink: 0; margin-left: 16px;
  transition: transform 0.2s;
}
details.faq-item[open] summary.faq-q::after { content: '−'; }
.faq-a { padding: 0 28px 24px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   BAIRROS
   ============================================================ */
.bairros { background: var(--card); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); }
.bairros-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.bairro-card {
  background: var(--card2); border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 16px 12px; text-align: center;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  transition: var(--transition); display: block;
}
.bairro-card:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) { .bairros-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bairros-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--card); border-top: 1px solid var(--border-dim);
  text-align: center; padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section > .container > p { font-size: 1.05rem; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg); border-top: 1px solid var(--border-dim);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; max-width: 300px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-dim); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--muted);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   PAGE LAYOUT (subpages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px; background: var(--card);
  border-bottom: 1px solid var(--border-dim);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at left, rgba(201,168,76,1) 0%, transparent 20%); 
  pointer-events: none;
}
.page-hero .badge { display: inline-flex; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.page-hero p { font-size: 1.05rem; max-width: 600px; margin-bottom: 36px; }

.content-section { padding: 80px 0; background: var(--bg); }
.content-section.alt { background: var(--card); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-grid img { border-radius: var(--radius); width: 100%; }
.content-text h2 { margin-bottom: 16px; }
.content-text p { margin-bottom: 20px; }
.content-text ul { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.content-text ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.check-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; } }

/* Bairro page extras */
.bairro-related { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--border-dim); }
.bairro-related h3 { margin-bottom: 32px; font-size: 1.25rem; }
.bairro-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.bairro-tag {
  padding: 8px 16px; border: 1px solid var(--border-dim);
  border-radius: 100px; font-size: 0.8rem; color: var(--muted);
  transition: var(--transition);
}
.bairro-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border-dim); margin: 48px 0; }
.gold-line { width: 48px; height: 3px; background: var(--gold); margin: 16px auto; }
.gold-line.left { margin-left: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-content { padding: 60px 0; }
  .hero-trust { gap: 20px; }
  .cta-section { padding: 80px 0; }
  .cred-items { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}




.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
