:root {
  --blue-950: #061522;
  --blue-900: #0a2236;
  --blue-800: #0f3554;
  --blue-700: #14527a;
  --sky-500: #1c9bd1;
  --green-500: #28b463;
  --yellow-400: #f5c542;
  --orange-500: #f28c28;
  --text: #17212b;
  --muted: #5e6b78;
  --line: #dfe7ee;
  --bg: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 21, 34, .14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--blue-950);
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-950);
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 34, 54, .08);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--blue-950);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--sky-500));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(20, 82, 122, .22);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: var(--blue-900);
  font-size: .95rem;
}

.nav-links a {
  opacity: .88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue-700);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--blue-950);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  min-height: 48px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-500);
  color: white;
  box-shadow: 0 14px 26px rgba(40, 180, 99, .26);
}

.btn-primary:hover {
  background: #239f58;
}

.btn-dark {
  background: var(--blue-950);
  color: white;
  box-shadow: 0 14px 26px rgba(6, 21, 34, .22);
}

.btn-light {
  background: white;
  color: var(--blue-950);
  border: 1px solid rgba(255, 255, 255, .55);
}

.btn-outline {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue-900);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 21, 34, .92), rgba(6, 21, 34, .72) 44%, rgba(6, 21, 34, .28)),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(245, 197, 66, .28), transparent 25%),
    radial-gradient(circle at 70% 80%, rgba(28, 155, 209, .25), transparent 35%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 21, 34, .92), rgba(6, 21, 34, .72) 44%, rgba(6, 21, 34, .28)),
    url('/assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .9;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding: 78px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  background: rgba(255, 255, 255, .08);
}

.kicker.dark {
  color: var(--blue-700);
  background: rgba(28, 155, 209, .1);
  border-color: rgba(28, 155, 209, .2);
}

.hero h1 {
  color: white;
  margin-bottom: 22px;
}

.hero p {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, .88);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.fact {
  min-width: 168px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.fact strong {
  display: block;
  color: white;
  font-size: 1.3rem;
}

.fact span {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section-head {
  max-width: 770px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: white;
  border: 1px solid rgba(10, 34, 54, .08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(6, 21, 34, .06);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(28, 155, 209, .1);
  color: var(--blue-700);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.course-highlight {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
  border-radius: calc(var(--radius) + 8px);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.course-highlight h2,
.course-highlight h3 {
  color: white;
}

.course-highlight p {
  color: rgba(255, 255, 255, .78);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(40, 180, 99, .14);
  color: var(--green-500);
  font-weight: 900;
  font-size: .75rem;
}

.course-highlight .check-list li {
  color: rgba(255, 255, 255, .82);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.photo-card {
  min-height: 430px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(6, 21, 34, .08), rgba(6, 21, 34, .5)),
    url('/assets/images/voo.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 24px;
}

.photo-card .caption {
  background: rgba(255, 255, 255, .92);
  border-radius: 18px;
  padding: 18px;
  max-width: 360px;
}

.photo-card .caption strong {
  display: block;
  color: var(--blue-950);
}

.photo-card .caption span {
  color: var(--muted);
  font-size: .94rem;
}

.cta-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 197, 66, .18), transparent 27%),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: white;
  border-radius: calc(var(--radius) + 10px);
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  max-width: 720px;
}

.site-list {
  display: grid;
  gap: 14px;
}

.site-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: white;
  border: 1px solid rgba(10, 34, 54, .08);
  border-radius: 18px;
  padding: 18px;
}

.site-link strong {
  color: var(--blue-950);
}

.site-link span {
  color: var(--muted);
  font-size: .95rem;
}

.form-box {
  background: white;
  border-radius: calc(var(--radius) + 6px);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 34, 54, .08);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-950);
  font-weight: 900;
  font-size: .93rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(28, 155, 209, .12);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.notice {
  color: var(--muted);
  font-size: .92rem;
}

.page-hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(28, 155, 209, .22), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
  padding: 78px 0;
}

.page-hero h1 {
  color: white;
  max-width: 880px;
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
  max-width: 770px;
  font-size: 1.1rem;
  margin-top: 18px;
}

.breadcrumb {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: white;
  font-weight: 800;
}

.article-links {
  display: grid;
  gap: 12px;
}

.article-links a {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(10, 34, 54, .08);
  padding: 17px 18px;
  color: var(--blue-900);
  font-weight: 900;
}

.footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, .78);
  padding: 58px 0 26px;
}

.footer h3 {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer a {
  color: rgba(255, 255, 255, .88);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .34);
  font-weight: 900;
}

.whatsapp-float span {
  display: inline-block;
}

@media (max-width: 900px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar .hide-mobile {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 86px;
    background: white;
    border: 1px solid rgba(10, 34, 54, .08);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 62px 0;
  }

  .grid-2,
  .grid-3,
  .split,
  .course-highlight,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    text-align: left;
  }

  .photo-card {
    min-height: 320px;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    justify-content: center;
  }

  .whatsapp-float span {
    display: inline;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .card,
  .form-box,
  .course-highlight,
  .cta-band {
    padding: 22px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .hero-facts .fact {
    width: 100%;
  }
}

/* Logo Paramotor-PR */
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 8px 18px rgba(6, 21, 34, .12);
  flex: 0 0 auto;
}

/* Ajuste do logo real no cabeçalho */
.navbar {
  min-height: 72px;
}

.brand-image-only {
  width: 190px;
  max-width: 34vw;
  overflow: hidden;
}

.brand-image-only .brand-logo {
  width: 190px;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .brand-image-only {
    width: 158px;
    max-width: 52vw;
  }

  .brand-image-only .brand-logo {
    width: 158px;
    height: 50px;
  }
}

/* Cards principais de cursos */
.course-grid {
  align-items: stretch;
}

.course-card {
  padding: 0;
  overflow: hidden;
}

.course-card-media {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 34, .05), rgba(6, 21, 34, .35));
}

.media-paramotor {
  background-image: url('/assets/images/card-paramotor.jpg');
}

.media-paratrike {
  background-image: url('/assets/images/card-paratrike.jpg');
}

.media-instrutores {
  background-image: url('/assets/images/card-instrutores.jpg');
}

.course-card-body {
  padding: 24px;
}

.course-card-body h3 {
  margin-bottom: 8px;
}

.course-card-body p {
  min-height: 96px;
}

.course-card-body .btn {
  margin-top: 8px;
}

.course-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.course-note p {
  margin: 8px 0 0;
  max-width: 760px;
}

@media (max-width: 900px) {
  .course-card-media {
    height: 210px;
  }

  .course-card-body p {
    min-height: auto;
  }

  .course-note {
    display: block;
  }

  .course-note .btn {
    margin-top: 12px;
  }
}

/* Cards principais com foto - cursos */
.course-grid {
  align-items: stretch;
}

.course-card {
  padding: 0 !important;
  overflow: hidden;
}

.course-card-media {
  display: block;
  height: 190px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 34, .02), rgba(6, 21, 34, .32));
}

.media-paramotor {
  background-image: url('/assets/images/card-paramotor.jpg');
}

.media-paratrike {
  background-image: url('/assets/images/card-paratrike.jpg');
}

.media-instrutores {
  background-image: url('/assets/images/card-instrutores.jpg');
}

.course-card-body {
  padding: 24px;
}

.course-card-body h3 {
  margin-bottom: 8px;
}

.course-card-body p {
  min-height: 96px;
}

.course-card-body .btn {
  margin-top: 8px;
}

.course-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.course-note p {
  margin: 8px 0 0;
  max-width: 760px;
}

@media (max-width: 900px) {
  .course-card-media {
    height: 210px;
  }

  .course-card-body p {
    min-height: auto;
  }

  .course-note {
    display: block;
  }

  .course-note .btn {
    margin-top: 12px;
  }
}

/* Cards principais com foto - cursos */
.course-grid {
  align-items: stretch;
}

.course-card {
  padding: 0 !important;
  overflow: hidden;
}

.course-card-media {
  display: block;
  height: 190px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 34, .02), rgba(6, 21, 34, .32));
}

.media-paramotor {
  background-image: url('/assets/images/card-paramotor.jpg');
}

.media-paratrike {
  background-image: url('/assets/images/card-paratrike.jpg');
}

.media-instrutores {
  background-image: url('/assets/images/card-instrutores.jpg');
}

.course-card-body {
  padding: 24px;
}

.course-card-body h3 {
  margin-bottom: 8px;
}

.course-card-body p {
  min-height: 96px;
}

.course-card-body .btn {
  margin-top: 8px;
}

.course-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.course-note p {
  margin: 8px 0 0;
  max-width: 760px;
}

@media (max-width: 900px) {
  .course-card-media {
    height: 210px;
  }

  .course-card-body p {
    min-height: auto;
  }

  .course-note {
    display: block;
  }

  .course-note .btn {
    margin-top: 12px;
  }
}

/* Linha secundária para aperfeiçoamento/workshops */
.course-secondary {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(10, 34, 54, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.course-secondary strong {
  color: var(--blue-950);
}

.course-secondary a {
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .course-secondary {
    display: block;
  }

  .course-secondary a {
    display: inline-block;
    margin-top: 10px;
  }
}

/* Aviso temporário de site em atualização */
.site-notice {
  background: #fff8e1;
  border-bottom: 1px solid rgba(245, 197, 66, .55);
  color: #4a3a00;
  font-size: .94rem;
}

.site-notice .container {
  padding: 10px 0;
}

.site-notice strong {
  color: #1b2733;
}

@media (max-width: 700px) {
  .site-notice {
    font-size: .86rem;
  }

  .site-notice .container {
    padding: 9px 0;
  }
}
