:root {
  --bg: #083b0a;
  --bg2: #0b5a0f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel2: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.15);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.76);
  --muted2: rgba(255, 255, 255, 0.6);
  --green: #10b981;
  --orange: #f97316;
  --orange-neon: #ff6a00;
  --orange-neon-border: rgba(255, 106, 0, 0.55);
  --orange-neon-glow: rgba(255, 106, 0, 0.18);
  --orange-neon-glow-strong: rgba(255, 106, 0, 0.3);
  --shadow: 0 30px 80px rgba(177, 105, 22, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1400px 800px at 16% 20%, rgba(16, 185, 129, 0.05), transparent 70%),
    radial-gradient(1200px 700px at 88% 10%, rgba(249, 115, 22, 0.08), transparent 10%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: radial-gradient(900px 280px at 12% 10%, rgba(249, 115, 22, 0.22), transparent 62%),
    radial-gradient(900px 280px at 86% 30%, rgba(251, 146, 60, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(249, 115, 22, 0.22), rgba(17, 24, 39, 0.32));
  border-bottom: 1px solid rgba(249, 115, 22, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: grid;
  grid-template-columns: 48px auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
}

.brand__media {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  position: relative;
}

.brand__mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: 4px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 1;
  transform: scale(1);
  transition: opacity 160ms ease, transform 160ms ease;
}


.brand__media.has-logo .brand__logo {
  opacity: 0.98;
  transform: scale(1);
}

.brand__media.has-logo .brand__mark {
  opacity: 0;
}

.brand__dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  filter: blur(0.2px);
}

.brand__dot--green {
  left: 6px;
  top: 9px;
  background: rgba(16, 185, 129, 0.85);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.55);
}

.brand__dot--orange {
  right: 6px;
  bottom: 6px;
  background: rgba(249, 115, 22, 0.85);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.55);
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.05;
}

.brand__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.42);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.35);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.116);
  color: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 11px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease,
    box-shadow 160ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(249, 115, 22, 0.7));
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.14);
  color: rgba(0, 0, 0, 0.92);
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.96), rgba(16, 185, 129, 0.76));
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.16);
  color: rgba(63, 51, 51, 0.92);
}

.btn--quote {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.35);
  color: rgba(249, 115, 22, 0.95);
}

.btn--quote:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.45);
  color: rgba(16, 185, 129, 0.96);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.top-slider {
  padding: 18px 0 0;
}

.top-slider__frame {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 44px rgba(16, 185, 129, 0.12), 0 0 38px rgba(249, 115, 22, 0.04);
}

.top-slider__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 7;
  min-height: 160px;
}

.top-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 720ms ease;
}

.top-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.top-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04) brightness(1.04);
}

.top-slider__chrome {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 320px at 16% 25%, rgba(16, 185, 129, 0.22), transparent 62%),
    radial-gradient(900px 320px at 88% 35%, rgba(249, 115, 22, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.top-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px;
  margin: 0;
  border-radius: 999px;
  background: rgba(172, 101, 8, 0.801);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  width: fit-content;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: rgba(16, 185, 129, 0.9);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.55);
}

.dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2), 0 0 0 1px rgba(249, 115, 22, 0.45) inset;
  border-color: rgba(249, 115, 22, 0.6);
}

.hero {
  position: relative;
  padding: 74px 0 22px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(520px 420px at 50% 40%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  opacity: 0.55;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.98);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  text-shadow: 0 0 18px rgba(249, 115, 22, 0.4), 0 0 34px rgba(249, 115, 22, 0.2);

}

.hero__title {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.28);
}

.hero__titleBrand {
  background: linear-gradient(90deg, rgba(52, 211, 153, 1), rgba(16, 185, 129, 1), rgba(249, 115, 22, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 5px rgba(6, 78, 33, 0.6)) drop-shadow(0 0 15px rgba(249, 115, 22, 0.6))
    drop-shadow(0 0 30px rgba(194, 65, 12, 0.3));
}

.hero__subtitle {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35), 0 0 18px rgba(16, 185, 129, 0.1);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--orange-neon-border);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.16) inset, 0 0 22px var(--orange-neon-glow);
}

.stat__value {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat__label {
  margin-top: 6px;
  color: var(--muted2);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}

.hero-card {
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--orange-neon-border);
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px 220px at 22% 10%, rgba(16, 185, 129, 0.24), transparent 55%),
    radial-gradient(420px 220px at 92% 20%, rgba(249, 115, 22, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: 12px;
}

.hero-card__chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 12px;
}

.hero-card__art {
  position: relative;
  padding: 0 16px 8px;
}

.hero-card__img {
  width: 100%;
  border-radius: 18px;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.pill--green {
  color: rgba(16, 185, 129, 0.98);
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.24);
}

.pill--orange {
  color: rgba(249, 115, 22, 0.98);
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.24);
}

.pill--muted {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-card__line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-card__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 66px 0;
}

.section__header {
  margin-bottom: 20px;
}

.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section__title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.16) inset, 0 0 26px rgba(255, 106, 0, 0.12);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 106, 0, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.22) inset, 0 0 34px var(--orange-neon-glow-strong);
}

.card--neon {
  border-color: rgba(255, 106, 0, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.24) inset, 0 0 42px var(--orange-neon-glow-strong);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__icon--green {
  color: rgba(16, 185, 129, 1);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.15) inset, 0 0 22px rgba(16, 185, 129, 0.12);
}

.card__icon--orange {
  color: rgba(249, 115, 22, 1);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.16) inset, 0 0 22px rgba(249, 115, 22, 0.12);
}

.card__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card__list {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(249, 115, 22, 0.98);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.card__link:hover {
  color: rgba(16, 185, 129, 0.98);
}

.card__actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.card__actions .card__link {
  margin-top: 0;
}

.card__subLinks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card__subLink {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.card__subLink:hover {
  /* Fundo sutil alaranjado */
  background: rgba(217, 119, 6, 0.12); 
  
  /* Borda levemente mais definida */
  border-color: rgba(217, 119, 6, 0.3); 
  
  /* Texto em um laranja "queimado" legível */
  color: rgba(251, 146, 60, 0.95); 
}

.section--rf {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.05),
    rgba(17, 24, 39, 0.42),
    rgba(17, 24, 39, 0.05)
  );
  border-top:0px solid rgba(204, 115, 51, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card--rf {
  background: rgba(255, 255, 255, 0.035);
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.card--rf .tag-row {
  margin-top: auto;
  padding-top: 14px;
}

.tag-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.tag--orange {
  color: rgba(249, 115, 22, 0.98);
  border-color: rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.1);
}

.tag--muted {
  color: rgba(255, 255, 255, 0.76);
}

.rf-banner {
  margin-top: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: radial-gradient(700px 340px at 20% 0%, rgba(249, 115, 22, 0.12), transparent 60%),
    radial-gradient(700px 340px at 90% 40%, rgba(16, 185, 129, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.14) inset, 0 0 30px rgba(255, 106, 0, 0.1);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
}

.rf-banner__title {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.rf-banner__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rf-banner__media {
  display: grid;
  place-items: center;
}

.rf-banner__img {
  max-height: 120px;
  opacity: 0.92;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.studio {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.studio__card {
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.14) inset, 0 0 28px rgba(255, 106, 0, 0.1);
  padding: 22px;
}

.studio__title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.studio__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.studio__points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.point__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.point__dot--green {
  background: var(--green);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.55);
}

.studio__cta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.studio__media {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.studio__glass {
  position: relative;
  width: min(320px, 80%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  padding: 18px;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.studio__img {
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.studio__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.25), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(249, 115, 22, 0.22), transparent 55%);
  filter: blur(18px);
}

.radio-stack {
  display: grid;
  gap: 16px;
}

.radio-player {
  border-radius: var(--radius2);
  border: 1px solid rgba(16, 185, 129, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.12));
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(16, 185, 129, 0.12) inset;
  padding: 18px;
}

.radio-player--wide {
  padding: 22px;
}

.radio-player__top {
  display: grid;
  grid-template-columns: 72px 1fr 52px;
  gap: 14px;
  align-items: center;
}

.radio-player__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.radio-player__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: saturate(1.05) contrast(1.02);
}

.radio-player__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(52, 211, 153, 0.95);
}

.radio-player__name {
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.radio-player__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13px;
}

.radio-player__link:hover {
  color: rgba(52, 211, 153, 0.95);
}

.radio-player__btn {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 120ms ease, border-color 160ms ease, background 160ms ease;
}

.radio-player__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
}

.radio-player__icon {
  width: 22px;
  height: 22px;
}

.radio-player__icon--pause {
  display: none;
}

.radio-player.is-playing .radio-player__icon--play {
  display: none;
}

.radio-player.is-playing .radio-player__icon--pause {
  display: block;
}

.vu {
  margin-top: 16px;
  height: 76px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 6px;
  align-items: end;
  padding: 12px;
  overflow: hidden;
}

.vu__bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.95), rgba(16, 185, 129, 0.35));
  transform: scaleY(0.14);
  transform-origin: bottom;
  transition: transform 90ms linear;
}

.radio-player__audio {
  display: none;
}

.radio-decks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.radio-deck {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.radio-deck__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 4px;
}

.radio-deck__title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.radio-deck__more {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 120ms ease;
}

.radio-deck__more:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.32);
  background: rgba(16, 185, 129, 0.1);
}

.radio-deck__list {
  display: grid;
  gap: 10px;
}

[data-radio-deck]:not(.is-expanded) [data-radio-extra] {
  display: none;
}

[data-radio-deck]:not(.is-expanded) .radio-item--placeholder {
  display: none;
}

.radio-item {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 140ms ease, border-color 160ms ease, background 160ms ease;
}

.radio-item:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.24);
  background: rgba(16, 185, 129, 0.06);
}

.radio-item.is-active {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12) inset;
}

.radio-item__logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  object-fit: contain;
  padding: 8px;
}

.radio-item__name {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.radio-item__url {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  font-size: 12px;
}

.radio-item__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
}

.radio-item--placeholder {
  grid-template-columns: 1fr;
  gap: 6px;
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.08);
  opacity: 0.85;
}

.radio-item--placeholder:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.08);
}

.radio-item__placeholderTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.radio-item__placeholderText {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
  font-size: 12px;
}

.section--about {
  padding-top: 54px;
}

.about__lead {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about__grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mini-card {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--orange-neon-border);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.12) inset, 0 0 20px rgba(255, 106, 0, 0.08);
}

.mini-card__title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mini-card__text {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.address {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.07);
}

.address__label {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16, 185, 129, 0.9);
}

.address__value {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.contact__card {
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.14) inset, 0 0 30px rgba(255, 106, 0, 0.1);
  padding: 22px;
  height: 100%;
}

.contact__title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.contact__text {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.contact__meta {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 12px;
  outline: none;
  font-weight: 600;
}

.field__input:focus {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__actions {
  margin-top: 2px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form__hint {
  margin: 6px 0 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

.logos {
  margin-top: 26px;
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.12) inset, 0 0 22px rgba(255, 106, 0, 0.08);
  padding: 18px;
}

.logos__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.logos__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.logos__rows {
  margin-top: 14px;
  display: grid;
  gap: 16px;
}

.logos__row {
  display: grid;
  gap: 10px;
}

.logos__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logos__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.logos__grid--clients {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
}

.logos__grid img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: rgba(0, 0, 0, 0.22);
  padding: 10px;
  opacity: 0.94;
  transition: transform 140ms ease, border-color 140ms ease, opacity 140ms ease;
}

.logos__grid img:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, 0.85);
  opacity: 1;
}

.logo-link {
  display: block;
}

.logo-link:focus-visible img {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
  opacity: 1;
}

.partner-carousel {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--orange-neon-border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.partner-carousel::before,
.partner-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 1;
}

.partner-carousel--rf::before,
.partner-carousel--rf::after {
  content: none;
}

.partner-carousel--portfolio::before,
.partner-carousel--portfolio::after {
  content: none;
}

[data-partner-carousel]::before,
[data-partner-carousel]::after {
  content: none;
}

.partner-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.partner-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.partner-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.partner-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.partner-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 16px 64px;
}

.partner-card {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
  scroll-snap-align: start;
  border-radius: 22px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background: rgba(0, 0, 0, 0.24);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.14) inset, 0 0 26px rgba(255, 106, 0, 0.12);
}

.partner-card__link {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
}

.partner-card__link:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 4px;
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  border-radius: 22px;
  filter: saturate(1.02) contrast(1.02);
}

.partner-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
}

.partner-carousel__btn svg {
  width: 20px;
  height: 20px;
}

.partner-carousel__btn:hover {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.34);
}

.partner-carousel__btn:active {
  transform: translateY(calc(-50% + 1px));
}

.partner-carousel__btn--prev {
  left: 12px;
}

.partner-carousel__btn--next {
  right: 12px;
}

.footer {
  padding: 36px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(1100px 420px at 12% 10%, rgba(16, 185, 129, 0.12), transparent 64%),
    radial-gradient(1100px 420px at 88% 30%, rgba(249, 115, 22, 0.04), transparent 64%),
    rgba(0, 0, 0, 0.18);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
  align-items: start;
}

.footer__name {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.footer__desc {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.footer__cnpj {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.footer__muted {
  color: var(--muted2);
  font-weight: 700;
}

.footer__links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer__link {
  color: rgba(249, 115, 22, 0.95);
  font-weight: 800;
}

.footer__link:hover {
  color: rgba(16, 185, 129, 0.95);
}

.footer__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: rgba(16, 185, 129, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(16, 185, 129, 0.12) inset;
  backdrop-filter: blur(12px);
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.34);
  color: rgba(249, 115, 22, 0.98);
}

.wa-float__icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.wa-float__icon svg {
  width: 20px;
  height: 20px;
}

.wa-float__label {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .studio {
    grid-template-columns: 1fr;
  }

  .rf-banner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__cta {
    justify-content: flex-start;
  }

  .logos__grid--clients {
    max-width: none;
  }

  .partner-carousel__track {
    padding: 14px 54px;
  }

  .partner-carousel::before,
  .partner-carousel::after {
    width: 44px;
  }

  .radio-player__top {
    grid-template-columns: 64px 1fr 52px;
  }

  .radio-player__logo {
    width: 64px;
    height: 64px;
  }

  .radio-decks {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    right: 16px;
    top: 74px;
    width: min(360px, calc(100vw - 32px));
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .status-dot::after {
    animation: none;
  }

  .btn,
  .card,
  .wa-float,
  .logos__grid img {
    transition: none;
  }
}

