:root {
  --media-black: #050505;
  --media-surface: #0b0b0b;
  --media-orange: #ff6800;
  --media-orange-dark: #ff3600;
  --media-orange-light: #ff7402;
  --media-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  background: var(--media-black);
}

body.media-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--media-white);
  background: var(--media-black);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

[id] {
  scroll-margin-top: 112px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  padding: 10px 16px;
  border-radius: 6px;
  color: #111111;
  background: var(--media-white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.material-symbols-rounded {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

/* Cabeçalho */

.media-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  color: var(--media-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.media-header__inner {
  width: 100%;
  max-width: 1380px;
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.media-header__brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.media-header__logo {
  width: 150px;
  height: auto;
}

.media-header__search {
  position: relative;
  width: 100%;
  max-width: 260px;
  flex: 1 1 180px;
  display: flex;
  align-items: center;
}

.media-header__search-input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  outline: 0;
  color: var(--media-white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 500;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.media-header__search-input::placeholder,
.media-header__mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.media-header__search-input:hover {
  background: rgba(255, 255, 255, 0.07);
}

.media-header__search-input:focus,
.media-header__mobile-search input:focus {
  border-color: rgba(255, 116, 2, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 116, 2, 0.08);
}

.media-header__search-input::-webkit-search-cancel-button {
  display: none;
}

.media-header__search-button {
  position: absolute;
  right: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--media-white);
  background: linear-gradient(180deg, var(--media-orange-light), var(--media-orange-dark));
  box-shadow: 0 7px 15px rgba(255, 54, 0, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.media-header__search-button:hover {
  filter: brightness(1.08);
  transform: scale(1.04);
}

.media-header__search-button:focus-visible,
.media-header__burger:focus-visible {
  outline: 2px solid var(--media-white);
  outline-offset: 3px;
}

.media-header__search-button .material-symbols-rounded {
  font-size: 18px;
}

.media-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.media-header__link {
  padding: 10px 7px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.media-header__link:hover {
  color: var(--media-white);
  background: rgba(255, 116, 2, 0.09);
  transform: translateY(-1px);
}

.media-header__link:focus-visible {
  border-radius: 10px;
  outline: 2px solid var(--media-orange);
  outline-offset: 3px;
}

.media-header__cta {
  min-width: 160px;
  min-height: 52px;
  padding: 8px 17px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--media-white);
  background: linear-gradient(180deg, var(--media-orange-light), var(--media-orange-dark));
  box-shadow:
    0 11px 23px rgba(255, 54, 0, 0.23),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.media-header__cta:hover {
  color: var(--media-white);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.media-header__cta:focus-visible,
.media-header__mobile-cta:focus-visible {
  outline: 2px solid var(--media-white);
  outline-offset: 3px;
}

.media-header__cta-title {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.media-header__cta-subtitle {
  margin-top: 3px;
  color: var(--media-white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: 0.04em;
}

.media-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.media-header__burger:hover {
  border-color: rgba(255, 116, 2, 0.3);
  background: rgba(255, 116, 2, 0.07);
}

.media-header__burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  display: block;
  background: var(--media-white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.media-header.is-open .media-header__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.media-header.is-open .media-header__burger span:nth-child(2) {
  opacity: 0;
}

.media-header.is-open .media-header__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.media-header__mobile {
  display: none;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

.media-header.is-open .media-header__mobile {
  display: block;
}

.media-header__mobile-search {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.media-header__mobile-search > .material-symbols-rounded {
  position: absolute;
  z-index: 2;
  left: 15px;
  color: var(--media-orange);
  font-size: 20px;
  pointer-events: none;
}

.media-header__mobile-search input {
  width: 100%;
  height: 48px;
  padding: 0 50px 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  outline: 0;
  color: var(--media-white);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.75rem;
}

.media-header__mobile-search button {
  position: absolute;
  right: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--media-white);
  background: linear-gradient(180deg, var(--media-orange-light), var(--media-orange-dark));
}

.media-header__mobile-search button .material-symbols-rounded {
  font-size: 18px;
}

.media-header__mobile-nav {
  display: flex;
  flex-direction: column;
}

.media-header__mobile-link {
  width: 100%;
  margin-top: 9px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  display: block;
  color: var(--media-white);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.media-header__mobile-link:hover {
  color: var(--media-white);
  border-color: rgba(255, 116, 2, 0.24);
  background: rgba(255, 116, 2, 0.09);
}

.media-header__mobile-cta {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  padding: 9px 17px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--media-white);
  background: linear-gradient(180deg, var(--media-orange-light), var(--media-orange-dark));
  box-shadow: 0 11px 23px rgba(255, 54, 0, 0.22);
  text-align: center;
  text-decoration: none;
}

.media-header__mobile-cta-title {
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.2;
}

.media-header__mobile-cta-subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Conteúdo */

.media-kit {
  width: 100%;
  padding: 80px 20px;
  overflow: hidden;
  color: var(--media-white);
  background: linear-gradient(180deg, #090909 0%, var(--media-black) 100%);
}

.media-kit__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.media-kit__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 65px;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.media-kit__hero-content {
  max-width: 680px;
}

.media-kit__eyebrow,
.media-kit__section-label,
.media-kit__section-heading > span,
.media-kit__final-content > span {
  display: block;
  margin-bottom: 14px;
  color: var(--media-orange);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-kit__hero h1 {
  margin: 0;
  color: var(--media-white);
  font-size: 2.375rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.media-kit__hero h1 span {
  display: block;
  color: #ff6500;
}

.media-kit__hero-content > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.8;
}

.media-kit__hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.media-kit__primary-button,
.media-kit__secondary-button {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--media-white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

.media-kit__primary-button {
  background: linear-gradient(180deg, var(--media-orange-light), var(--media-orange-dark));
  box-shadow: 0 13px 28px rgba(255, 54, 0, 0.22);
}

.media-kit__primary-button:hover {
  color: var(--media-white);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.media-kit__primary-button .material-symbols-rounded {
  font-size: 19px;
}

.media-kit__secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.media-kit__secondary-button:hover {
  color: var(--media-white);
  border-color: rgba(255, 116, 2, 0.3);
  background: rgba(255, 116, 2, 0.07);
  transform: translateY(-2px);
}

.media-kit__primary-button:focus-visible,
.media-kit__secondary-button:focus-visible,
.media-kit__contact a:focus-visible,
.media-footer a:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--media-orange);
  outline-offset: 4px;
}

.media-kit__hero-image {
  position: relative;
  height: 440px;
}

.media-kit__hero-image > img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.media-kit__hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 30%, rgba(0, 0, 0, 0.65) 100%);
}

.media-kit__hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-kit__hero-badge > .material-symbols-rounded {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--media-orange);
  background: rgba(255, 116, 2, 0.1);
}

.media-kit__hero-badge strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.875rem;
}

.media-kit__hero-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.6875rem;
}

.media-kit__section {
  padding-top: 95px;
}

.media-kit__section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.media-kit__section-heading h2,
.media-kit__license-content h2,
.media-kit__profile-intro h2,
.media-kit__final-content h2 {
  margin: 0;
  color: var(--media-white);
  font-size: clamp(1.8125rem, 3.3vw, 2.625rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.media-kit__section-heading > p,
.media-kit__license-content > p,
.media-kit__profile-intro > p,
.media-kit__final-content > p {
  max-width: 720px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.25rem;
  line-height: 1.8;
}

.media-kit__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-kit__benefit {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 21px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
}

.media-kit__benefit > .material-symbols-rounded {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ff6900;
  background: rgba(255, 116, 2, 0.09);
}

.media-kit__benefit h3 {
  margin: 1px 0 8px;
  color: var(--media-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.media-kit__benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.media-kit__license {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 65px;
}

.media-kit__license-image {
  height: 450px;
}

.media-kit__license-image img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  object-fit: cover;
  filter: saturate(0.7);
}

.media-kit__check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.media-kit__check-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-kit__check-list .material-symbols-rounded {
  flex: 0 0 auto;
  color: #ff6900;
  font-size: 20px;
}

.media-kit__check-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.875rem;
  line-height: 1.5;
}

.media-kit__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.media-kit__info-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.media-kit__info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ff6900;
  background: rgba(255, 116, 2, 0.09);
}

.media-kit__info-card h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.media-kit__info-card ul {
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.62);
}

.media-kit__info-card li {
  margin-bottom: 10px;
  padding-left: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.media-kit__info-card li:last-child {
  margin-bottom: 0;
}

.media-kit__profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 65px;
}

.media-kit__profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.media-kit__profile-item {
  min-height: 105px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.027);
}

.media-kit__profile-item .material-symbols-rounded {
  flex: 0 0 auto;
  color: #ff6900;
  font-size: 25px;
}

.media-kit__profile-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
}

.media-kit__revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-kit__revenue-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 23px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.media-kit__revenue-number {
  display: block;
  margin-bottom: 20px;
  color: #ff6900;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.media-kit__revenue-card h3 {
  margin: 0 0 11px;
  color: var(--media-white);
  font-size: 1.25rem;
  line-height: 1.4;
}

.media-kit__revenue-card > p {
  min-height: 89px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.media-kit__simulation {
  margin-top: 23px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.media-kit__simulation small,
.media-kit__total small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-kit__simulation strong {
  display: block;
  margin-bottom: 5px;
  color: var(--media-white);
  font-size: 1.125rem;
}

.media-kit__simulation span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9375rem;
}

.media-kit__total {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.media-kit__total strong {
  color: var(--media-orange);
  font-size: 1.9375rem;
  font-weight: 800;
  line-height: 1.3;
}

.media-kit__potential {
  margin-top: 20px;
  padding: 29px 31px;
  border: 1px solid rgba(255, 116, 2, 0.18);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 40px;
  background: rgba(255, 116, 2, 0.055);
}

.media-kit__potential span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}

.media-kit__potential strong {
  display: block;
  color: var(--media-white);
  font-size: 1.9375rem;
  line-height: 1.2;
}

.media-kit__potential p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.media-kit__reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.media-kit__reasons > article {
  padding: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.media-kit__reasons > article > strong {
  display: block;
  margin-bottom: 13px;
  color: #ff6900;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}

.media-kit__reasons h3 {
  margin: 0 0 9px;
  color: var(--media-white);
  font-size: 1.625rem;
}

.media-kit__reasons p {
  margin: 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.media-kit__final {
  margin-top: 95px;
  padding: 48px;
  border: 1px solid rgba(255, 116, 2, 0.18);
  border-radius: 27px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 55px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 116, 2, 0.11), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

.media-kit__final-content h2 {
  font-size: 1.875rem;
}

.media-kit__contact {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 21px;
  background: rgba(5, 5, 5, 0.45);
}

.media-kit__contact h3 {
  margin: 0 0 19px;
  font-size: 1.1875rem;
}

.media-kit__contact > a {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--media-white);
  text-decoration: none;
}

.media-kit__contact > a > .material-symbols-rounded {
  color: #ff6900;
  font-size: 23px;
}

.media-kit__contact small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.625rem;
  text-transform: uppercase;
}

.media-kit__contact strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* Rodapé */

.media-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  background: var(--media-surface);
}

.media-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  align-items: start;
  gap: 22px;
}

.media-footer__brand {
  display: inline-flex;
  align-items: center;
}

.media-footer__logo {
  width: 175px;
  height: auto;
  object-fit: contain;
}

.media-footer__title {
  margin: 0 0 10px;
  color: var(--media-white);
  font-size: 0.8125rem;
  font-weight: 800;
}

.media-footer__link {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.92;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.media-footer__link:hover {
  color: var(--media-orange-light);
  opacity: 1;
  text-decoration: underline;
}

.media-footer__item {
  padding: 4px 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.92;
}

.media-footer__social {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-footer__social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.media-footer__social-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.06);
}

.media-footer__social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.search-feedback {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 116, 2, 0.25);
  border-radius: 12px;
  color: var(--media-white);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  font-size: 0.8125rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.search-result-highlight {
  border-radius: 4px;
  outline: 2px solid var(--media-orange);
  outline-offset: 6px;
}

@media (max-width: 1280px) {
  .media-header__inner {
    gap: 10px;
  }

  .media-header__logo {
    width: 140px;
  }

  .media-header__search {
    max-width: 220px;
  }

  .media-header__link {
    padding: 10px 5px;
    font-size: 0.625rem;
  }

  .media-header__cta {
    min-width: 150px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .media-header__cta-title {
    font-size: 0.6875rem;
  }
}

@media (max-width: 1100px) {
  .media-header__nav,
  .media-header__search,
  .media-header__cta {
    display: none;
  }

  .media-header__burger {
    display: flex;
  }
}

@media (max-width: 1000px) {
  .media-kit__hero,
  .media-kit__license,
  .media-kit__profile,
  .media-kit__final {
    grid-template-columns: 1fr;
  }

  .media-kit__hero-image {
    height: 410px;
  }

  .media-kit__license-image {
    height: 390px;
  }

  .media-kit__revenue-grid {
    grid-template-columns: 1fr;
  }

  .media-kit__revenue-card > p {
    min-height: auto;
  }

  .media-kit__potential {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .media-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .media-footer__logo {
    width: 150px;
  }
}

@media (max-width: 767.98px) {
  .media-kit {
    padding: 58px 15px;
  }

  .media-kit__hero {
    gap: 38px;
    padding-bottom: 65px;
  }

  .media-kit__hero h1 {
    font-size: 2.4375rem;
  }

  .media-kit__hero-content > p {
    font-size: 0.875rem;
  }

  .media-kit__hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .media-kit__primary-button,
  .media-kit__secondary-button {
    width: 100%;
  }

  .media-kit__hero-image {
    height: 330px;
  }

  .media-kit__section {
    padding-top: 68px;
  }

  .media-kit__section-heading {
    margin-bottom: 30px;
  }

  .media-kit__section-heading h2,
  .media-kit__license-content h2,
  .media-kit__profile-intro h2,
  .media-kit__final-content h2 {
    font-size: 1.8125rem;
  }

  .media-kit__section-heading > p,
  .media-kit__license-content > p,
  .media-kit__profile-intro > p,
  .media-kit__final-content > p {
    font-size: 1rem;
  }

  .media-kit__benefits,
  .media-kit__columns,
  .media-kit__reasons {
    grid-template-columns: 1fr;
  }

  .media-kit__license {
    gap: 38px;
  }

  .media-kit__license-image {
    height: 310px;
  }

  .media-kit__profile {
    gap: 35px;
  }

  .media-kit__profile-grid {
    grid-template-columns: 1fr;
  }

  .media-kit__potential strong {
    font-size: 1.5625rem;
  }

  .media-kit__final {
    margin-top: 70px;
    padding: 27px;
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .media-header__inner {
    min-height: 72px;
    padding: 11px 14px;
  }

  .media-header__mobile {
    padding: 0 14px 15px;
  }

  .media-header__logo {
    width: 140px;
  }
}

@media (max-width: 420px) {
  .media-kit__hero h1 {
    font-size: 2.125rem;
  }

  .media-kit__hero-image {
    height: 285px;
  }

  .media-kit__hero-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .media-kit__benefit,
  .media-kit__info-card,
  .media-kit__revenue-card {
    padding: 22px;
  }

  .media-kit__license-image {
    height: 270px;
  }

  .media-kit__potential {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
