:root {
  --green: #1b7a4e;
  --green-dark: #0f2e22;
  --green-mid: #145c3a;
  --yellow: #f5c518;
  --yellow-dark: #d4a60f;
  --ink: #f4f7f5;
  --muted: rgba(244, 247, 245, 0.72);
  --surface: #12281e;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--green-dark);
  line-height: 1.55;
}

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

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

/* —— Nav —— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-nav.is-solid {
  background: rgba(15, 46, 34, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-brand img {
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.35rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.88;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 64px 0 auto;
  background: rgba(15, 46, 34, 0.98);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.85rem;
}

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

.nav-drawer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 46, 34, 0.35) 0%, rgba(15, 46, 34, 0.55) 45%, rgba(15, 46, 34, 0.92) 100%),
    url("image/oficial/Imagem-Topo.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245, 197, 24, 0.12), transparent 50%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  animation: riseIn 0.9s ease both;
}

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

.hero-lead {
  max-width: 32rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--muted);
  animation: riseIn 1s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 1.05s ease 0.2s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.12);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.section-text {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.section--sobre {
  background:
    linear-gradient(180deg, rgba(15, 46, 34, 0.92), rgba(18, 40, 30, 0.96)),
    url("image/oficial/BG.png") center/cover;
}

.sobre-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .sobre-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.sobre-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.sobre-visual img {
  width: 100%;
  height: auto;
}

/* Modalidades */
.section--mod {
  background: #0c241b;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mod-block {
  display: grid;
  gap: 0;
  min-height: 420px;
  margin: 1.5rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
}

@media (min-width: 860px) {
  .mod-block {
    grid-template-columns: 1.15fr 1fr;
  }
  .mod-block--reverse {
    direction: rtl;
  }
  .mod-block--reverse > * {
    direction: ltr;
  }
}

.mod-media {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.mod-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(12, 36, 27, 0.35));
}

.mod-copy {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mod-copy h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.mod-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.mod-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Horários */
.section--horarios {
  background:
    linear-gradient(180deg, rgba(15, 46, 34, 0.88), rgba(15, 46, 34, 0.94)),
    url("image/horario.jpg") center/cover;
  text-align: center;
}

.horarios-frame {
  margin-top: 1.5rem;
  display: inline-block;
  max-width: 920px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.horarios-frame img {
  width: 100%;
}

/* Contato */
.section--contato {
  background: #10261d;
}

.contato-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contato-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.7rem 0.9rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--yellow);
  border-color: transparent;
}

.contact-aside {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(27, 122, 78, 0.25);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.contact-aside h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.contact-aside p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.contact-aside a {
  color: var(--yellow);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s ease, color 0.15s ease;
}

.socials a:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

/* Equipe */
.section--equipe {
  background: var(--green-dark);
  text-align: center;
  padding-bottom: 3rem;
}

.equipe-frame {
  margin: 1.75rem auto 0;
  max-width: 980px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.equipe-frame img {
  width: 100%;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(1);
}

.equipe-frame:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

/* Footer */
.site-footer {
  background: #081710;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 3px solid var(--yellow);
}

.site-footer strong {
  color: var(--yellow);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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