/* ═══════════════════════════════════════════════════════════
   Bipando — Privacy Policy Styles
   Arquivo: style.css
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep:      #1a272f;
  --bg-card:      #24333d;
  --accent-green: #2e9e5b;
  --accent-sky:   #87ceeb;
  --text-primary: #f0f4f6;
  --text-muted:   #8ca5b2;
  --text-dim:     #4d6470;
  --border:       rgba(135, 206, 235, .1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 40px 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}

header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: cover;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.last-update {
  font-size: 14px;
  color: var(--text-muted);
}

section {
  margin-bottom: 32px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  color: var(--accent-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 2px;
}

p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 16px;
}

ul {
  margin-bottom: 16px;
  padding-left: 20px;
  color: var(--text-muted);
}

li {
  margin-bottom: 8px;
}

/* ── CONTACT BOX ─────────────────────────────────────────── */
.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.email-text {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 25px;
  letter-spacing: 0.02em;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-btn, .copy-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.contact-btn {
  background: var(--accent-green);
  color: white;
}

.contact-btn:hover {
  background: #248a4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 158, 91, 0.3);
}

.copy-btn {
  background: transparent;
  color: var(--accent-sky);
  border: 1px solid var(--accent-sky);
}

.copy-btn:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2e9e5b;
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  font-weight: bold;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
  h1 {
    font-size: 24px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-btn, .copy-btn {
    width: 100%;
  }
}
