@font-face {
  font-family: "RedHatDisplay";
  src: url("../../dist/css/font/red-hat-display-v20-latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DMSans";
  src: url("../../dist/css/font/DMSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DMSans";
  src: url("../../dist/css/font/DMSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f3f7fb;
  --bg-soft: #ffffff;
  --text: #10243c;
  --muted: #4f6278;
  --brand: #0d6e6e;
  --brand-strong: #084c4c;
  --accent: #ef8f1c;
  --line: #d8e3ee;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(10, 28, 46, 0.12);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(13, 110, 110, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(239, 143, 28, 0.14), transparent 34%),
    var(--bg);
  font-family: "DMSans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(243, 247, 251, 0.84);
  border-bottom: 1px solid rgba(16, 36, 60, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}

.nav-wrap > nav {
  flex: 1;
  min-width: 0;
}

.brand {
  font-family: "RedHatDisplay", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.brand span {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--brand-strong);
  background: rgba(13, 110, 110, 0.11);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 17px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(8, 76, 76, 0.2);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), #169f9f);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-strong);
  border: 1px solid rgba(8, 76, 76, 0.26);
}

.btn-whatsapp {
  background: #22c15e;
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: "RedHatDisplay", sans-serif;
  line-height: 1.15;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
}

.lead {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-card {
  background: var(--bg-soft);
  border: 1px solid rgba(13, 110, 110, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.mascot-photo {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 14px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(12, 34, 56, 0.15);
}

.mascot-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.mascot-band img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(12, 34, 56, 0.14);
}

.page-mascot {
  margin-top: 18px;
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(12, 34, 56, 0.14);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-strong);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.metric {
  background: #f8fbfe;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.metric b {
  display: block;
  font-size: 1.3rem;
  color: var(--brand-strong);
}

.section {
  padding: 54px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-family: "RedHatDisplay", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-intro {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 16px rgba(12, 34, 56, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(12, 34, 56, 0.12);
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff, #f7fbff 62%, #eef6fc);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(12, 34, 56, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card.featured {
  border-color: rgba(13, 110, 110, 0.4);
  box-shadow: 0 14px 28px rgba(10, 74, 74, 0.15);
}

.pricing-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(13, 110, 110, 0.13);
  color: var(--brand-strong);
  border: 1px solid rgba(13, 110, 110, 0.25);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 10px;
}

.pricing-title {
  margin: 0;
  font-size: 1.2rem;
}

.pricing-price {
  margin: 0;
  font-family: "RedHatDisplay", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--brand-strong);
}

.pricing-price small {
  font-family: "DMSans", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-lead {
  margin: 0;
  color: var(--muted);
}

.pricing-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
}

.pricing-note {
  margin-top: 12px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-block;
  border: 1px solid rgba(13, 110, 110, 0.24);
  color: var(--brand-strong);
  background: rgba(13, 110, 110, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.timeline {
  border-left: 2px dashed rgba(13, 110, 110, 0.25);
  padding-left: 18px;
}

.timeline-item {
  margin: 0 0 18px;
}

.timeline-item b {
  color: var(--brand-strong);
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.cta {
  padding: 52px 0 66px;
}

.cta-box {
  background: linear-gradient(130deg, #0d6e6e, #0f8694 64%, #ef8f1c);
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 32px rgba(8, 76, 76, 0.3);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(16, 36, 60, 0.12);
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-head {
  padding: 70px 0 24px;
}

.page-head h1 {
  margin: 0 0 8px;
  font-family: "RedHatDisplay", sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-list .card h3 {
  margin-bottom: 8px;
}

.blog-meta {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}

.article h2,
.article h3 {
  font-family: "RedHatDisplay", sans-serif;
  margin-top: 26px;
}

.article ul {
  padding-left: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .card-grid,
  .pricing-table {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-list {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 70px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.24s ease;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list li,
  .nav-list a {
    width: 100%;
  }

  .nav-actions {
    display: none;
  }

  .mascot-band {
    grid-template-columns: 1fr;
  }

  .page-mascot {
    max-width: 100%;
  }
}
