/* Core styles for "palpite jogo do bicho de hoje" brand site */
:root {
  --primary: #00bfa6;
  --primary-dark: #008573;
  --accent: #ff6f61;
  --bg: #f5f7fb;
  --text: #1f2d3d;
  --muted: #64748b;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.2px;
}

.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.12);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(0, 191, 166, 0.1);
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(0, 191, 166, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 191, 166, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(0, 191, 166, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 32px auto 10px;
  padding: 18px 24px 0;
}

.hero-card {
  background: var(--card);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -60% auto auto 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(0, 191, 166, 0.12), transparent 60%);
  transform: translateX(-50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 191, 166, 0.1);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1px;
  margin-bottom: 14px;
}

.title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.subtitle {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.badge {
  background: #f0f4ff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary-dark);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.stat {
  background: linear-gradient(160deg, #fff, #f7fbff);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--primary-dark);
}

.section {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 111, 97, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.08);
  color: var(--primary-dark);
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

footer {
  margin-top: 40px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 24px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

footer a {
  color: #cbd5e1;
}

.cta {
  background: linear-gradient(160deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: center;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-bar button {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}

.filter-bar button.active,
.filter-bar button:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(0, 191, 166, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.product-card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  border-left: 3px solid rgba(0, 191, 166, 0.2);
  padding-left: 14px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  background: var(--card);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(0, 191, 166, 0.12);
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.team-card {
  background: var(--card);
  padding: 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 4px solid rgba(0, 191, 166, 0.14);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

form {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 16px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.address {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.floating {
  position: relative;
  overflow: hidden;
}

.floating::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 191, 166, 0.08), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 111, 97, 0.08), transparent 60%);
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 18px;
    background: var(--card);
    box-shadow: var(--shadow);
    flex-direction: column;
    width: 220px;
    padding: 12px;
    border-radius: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

