/*
Theme Name: CEP.LA
Author: CEP.LA
Version: 1.0
Description: Minimal CEP lookup website for Brazil
*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 15px;
}

/* Header */
.site-header {
  background: #0d6efd;
  color: #fff;
}

.site-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer */
.site-footer {
  background: #111;
  color: #ccc;
  margin-top: 40px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

/* Content box */
.box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Ad placeholder */
.ad-box {
  background: #e9ecef;
  padding: 15px;
  text-align: center;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }
}
.site-footer p a {
    color: #0d6efd;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
}

.site-footer p a:hover {
    text-decoration: underline;
}
