html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  background-color: #0f1115;
  color: #eaf0ff;
}

.site-main {
  min-height: calc(100vh - 72px);
}

.papagaio-page {
  background: linear-gradient(180deg, #0a0c10 0%, #111724 35%, #0f1115 100%);
}

.hero-section {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logo {
  width: min(100%, 560px);
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  letter-spacing: 0.18rem;
  font-weight: 600;
  color: #8ac5ff;
  margin-bottom: 0.9rem;
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin: 0;
}

.hero-contact {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: #dbe6ff;
}

.hero-contact a,
.contact-section a,
.site-footer a {
  color: #8ac5ff;
  text-decoration: none;
  font-weight: 700;
}

.hero-contact a:hover,
.contact-section a:hover,
.site-footer a:hover {
  color: #b8dcff;
  text-decoration: underline;
}

.content-section {
  padding: 3rem 0;
}

.content-section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.content-section p,
.capability-list li {
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: #d3dbec;
}

.content-section p {
  margin: 0 0 0.6rem;
}

.alt-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-card {
  background-color: #151c2b;
  border: 1px solid rgba(138, 197, 255, 0.18);
  border-radius: 12px;
  padding: 1.25rem;
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
}

.capability-list {
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.capability-list li {
  margin-bottom: 0.9rem;
}

.approach-section {
  padding-bottom: 4rem;
}

.approach-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9ecfff;
}

.contact-section {
  padding-bottom: 4rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8d1e5;
  padding: 1rem 0;
  background-color: #0a0d14;
}

.site-footer .container {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 3rem;
  }

  .hero-tagline {
    letter-spacing: 0.1rem;
    font-size: 0.9rem;
  }

  .content-section {
    padding: 2.25rem 0;
  }
}