/*
 * style.css — Keystate Theme
 * ─────────────────────────────────────────────────────────────────
 * Ordem dos blocos = ordem na home: Header → Hero → About → Results
 * → Upcoming → Testimonials → Past Auctions → Auction Highlights → Footer.
 * Tokens, tipografia base, botões e utilitários reutilizáveis estão em style-guide.css.
 * ─────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   Dependências e fontes
═══════════════════════════════════════════════════════════════ */
@import url('https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css');

@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../Ranade-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ranade';
  src: url('../fonts/Ranade-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── Base (reset e globais mínimos) ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Ranade', ui-sans-serif, system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-surface);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   1. HEADER (#site-header)
═══════════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

#site-header .nav-link {
  transition: color 0.2s ease;
}

#site-header .nav-link.active {
  color: #F42538 !important;
  font-weight: 800 !important;
}

#mobile-menu .nav-link.active {
  color: #F42538 !important;
}

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
  max-height: 500px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ks-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
}

.ks-social-link:hover {
  background: #F42538;
  transform: translateY(-2px);
  color: #fff;
}

.ks-social-link-mobile {
  width: 34px;
  height: 34px;
  background: #F4F4F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #111;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}

.ks-social-link-mobile:hover {
  background: #F42538;
  color: #fff;
}

.btn-bid-online {
  background-color: #ff2b3c;
  box-shadow: 0 2px 10px rgba(255, 43, 60, 0.2);
}

.btn-bid-online:hover {
  background-color: #e62635;
}

/* ═══════════════════════════════════════════════════════════════
   2. HERO / HOME (#home)
═══════════════════════════════════════════════════════════════ */
#home {
  min-height: 520px;
}

#home .ks-hero-stage {
  position: relative;
}

#home .ks-hero-carousel img {
  user-select: none;
}

.ks-hero-carousel .owl-item.active .animate-hero-up {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#home .ks-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

#home .ks-hero-form-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

#home .ks-hero-form-area {
  grid-column: 2;
  display: flex;
  z-index: 25;
  position: relative;
  justify-content: flex-end;
  pointer-events: auto;
}

#home .ks-hero-form-card {
  width: min(480px, 100%);
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#home .ks-hero-form-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 800;
  color: #111;
  text-align: center;
  font-size: 25px;
  text-transform: none;
  font-family: 'Ranade', sans-serif;
}

#home .ks-hero-form-body {
  padding: 24px;
}

#home .ks-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#home .ks-hero-input,
#home .ks-hero-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(247, 247, 247, 0.7);
  border-radius: 4px;
  padding: 9px 15px;
  font-size: 14px;
  color: #111;
  outline: none;
  font-family: 'Ranade', sans-serif;
  transition: all 0.3s ease;
}

#home .ks-hero-input::placeholder,
#home .ks-hero-textarea::placeholder {
  color: #888;
}

#home .ks-hero-input:focus,
#home .ks-hero-textarea:focus {
  background: #fff;
  border-color: #F42538;
  box-shadow: 0 0 0 4px rgba(244, 37, 56, 0.1);
}

#home .ks-hero-textarea {
  grid-column: 1 / -1;
  min-height: 90px;
  resize: none;
}

#home .ks-hero-upload {
  grid-column: 1 / -1;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#home .ks-hero-upload:hover {
  background: rgba(244, 37, 56, 0.05);
  border-color: #F42538;
}

#home .ks-hero-btn {
  grid-column: 1 / -1;
  background: #F42538;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Ranade', sans-serif;
  margin-top: 10px;
}

#home .ks-hero-btn:hover {
  background: #d11e2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 37, 56, 0.3);
}

#home .ks-hero-submit {
  margin-top: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff2b3c;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

#home .ks-hero-submit:hover {
  background: #e62635;
}

#home .ks-hero-selo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  display: none;
  align-items: center;
  user-select: none;
}

@media (min-width: 1024px) {
  #home .ks-hero-selo {
    display: flex;
  }

  #home .ks-hero-selo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: right center;
  }
}

@media (max-width: 1024px) {
  #home .ks-hero-overlay {
    position: relative;
    pointer-events: auto;
    inset: auto;
    padding: 40px 0;
    background: #fff;
  }

  #home .ks-hero-form-wrap {
    display: block;
    height: auto;
  }

  #home .ks-hero-form-area {
    justify-content: center;
    width: 100%;
  }

  #home .ks-hero-form-card {
    width: 100%;
    backdrop-filter: none;
    background: #fff;
    box-shadow: none;
    border: none;
  }

  #home .ks-hero-form-body {
    padding: 0;
  }

  #home .ks-hero-form-header {
    font-size: 22px;
    padding: 0 0 20px;
    border: none;
    text-align: left;
  }
}

#home .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  margin: 0 !important;
}

#home .owl-theme .owl-dots .owl-dot span {
  width: 28px;
  height: 4px;
  margin: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#home .owl-theme .owl-dots .owl-dot.active span {
  background: #ff2b3c;
  transform: scaleX(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   3. ABOUT (#about)
═══════════════════════════════════════════════════════════════ */
/* Estilos específicos da seção About (se necessário) */

/* ═══════════════════════════════════════════════════════════════
   4. RESULTS (#results)
═══════════════════════════════════════════════════════════════ */
/* Estatísticas usam .ks-stat-* do style-guide */

/* ═══════════════════════════════════════════════════════════════
   5. UPCOMING AUCTIONS (#upcoming)
═══════════════════════════════════════════════════════════════ */
#upcoming {
  position: relative;
  background-image: url('../images/bg-estate.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

#upcoming .container {
  position: relative;
  z-index: 2;
}

.ks-auction-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ks-auction-card-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.ks-auction-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ks-auction-card-thumb img:hover {
  transform: scale(1.1);
}

.ks-auction-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ks-auction-card-title {
  font-family: 'Ranade', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.ks-auction-card-desc {
  font-family: 'Ranade', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #484D51;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   6. TESTIMONIALS (#testimonials)
═══════════════════════════════════════════════════════════════ */
.ks-testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ks-stars {
  display: flex;
  gap: 4px;
  color: #F42538;
  font-size: 23px;
}

.ks-testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #484D51;
  margin: 0;
}

.ks-testimonial-author {
  font-family: 'Ranade', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0A0A0A;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   7. PAST AUCTIONS (#past-auctions)
═══════════════════════════════════════════════════════════════ */
#past-auctions {
  position: relative;
  background-color: #F3F3F3;
  background-image: url('../images/bg-explore.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

#past-auctions .container {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   8. AUCTION HIGHLIGHTS (#auction-highlights)
═══════════════════════════════════════════════════════════════ */
#auction-highlights {
  overflow: hidden;
}

.ks-highlights-carousel .owl-stage-outer {
  overflow: visible;
}

.ks-highlights-carousel .owl-item {
  transition: all 0.5s ease;
  transform: scale(0.85);
}

.ks-highlights-carousel .owl-item.center {
  transform: scale(1);
  z-index: 2;
}

.ks-highlight-card {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

.ks-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ks-highlight-card:hover img {
  transform: scale(1.05);
}

.ks-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  text-align: left;
  color: #fff;
}

.ks-highlight-content {
  border-left: 2.5px solid #F42538;
  padding-left: 20px;
}

.ks-highlight-title {
  font-family: 'Ranade', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ks-highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   9. FOOTER (.site-footer / #colophon)
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0A0A0A url('../images/footer.png') no-repeat center bottom / cover;
  color: #fff;
  padding-top: 50px;
  position: relative;
  font-family: 'Ranade', sans-serif;
}

.footer-col-title {
  font-family: 'Ranade', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #F42538;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-link {
  color: #B0B0B0;
  font-family: 'Ranade', sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-link:hover {
  color: #F42538;
}

.footer-gdpr-column .footer-link {
  text-decoration: underline;  
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #B0B0B0;
  font-size: 16px;
  font-family: 'Ranade', sans-serif;
  text-decoration: none;
}

.footer-info-item i {
  color: #B0B0B0;
  font-size: 18px;
}

.footer-bottom-bar {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 10px 40px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-family: 'Ranade', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.footer-bottom-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 20px;
    border-radius: 20px 20px 0 0;
  }

  .footer-bottom-icon {
    order: -1;
    margin: 5px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   10. CAROUSEL GLOBAL (Owl) — dots padrão para outros sliders
═══════════════════════════════════════════════════════════════ */
.owl-carousel .owl-dots {
  margin-top: 30px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  line-height: 1 !important;
}

.owl-carousel .owl-dot {
  outline: none !important;
}

.owl-carousel .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: rgba(244, 37, 56, 0.3) !important;
  border-radius: 4px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: block !important;
  margin: 0 !important;
}

.owl-carousel .owl-dot.active span {
  width: 36px !important;
  background: #f42538 !important;
  border-radius: 4px !important;
}

#hero .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-top: 0 !important;
  z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT CARDS (#carda-contact)
═══════════════════════════════════════════════════════════════ */
.ks-contact {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: #fff;
}

/* ─── Grid geral: 1 col esquerda + 2 colunas direita ─── */
.ks-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .ks-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ─── Card esquerdo (branco) ─── */
.ks-contact__leftCard {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 70px 100px 50px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  height: 100%;
}

@media (max-width: 768px) {
  .ks-contact__leftCard {
    padding: 40px 20px 20px;
  }
}

.ks-contact__leftRow {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.ks-contact__leftRow--spaced {
  margin-top: 2.25rem;
}

.ks-contact__leftIcon {
  color: var(--ks-color-brand);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ks-contact__leftTitle {
  font-size: 22px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.35;
}

.ks-contact__leftText {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: #484D51;
}

/* ─── Grid direita (2 cols + 1 full) ─── */
.ks-contact__rightGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ks-contact__rightGrid {
    grid-template-columns: 1fr 1fr;
  }

  .ks-contact__rightCard--wide {
    grid-column: 1 / -1;
  }
}

/* ─── Cards escuros ─── */
.ks-contact__rightCard {
  background: #0A0A0A;
  color: #fff;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ícone: bloco próprio, grande, acima do título */
.ks-contact__rightIcon {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.ks-contact__rightTitle {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

/* botão vermelho dentro do card */
.ks-contact__action {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff2b3c;
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.ks-contact__action:hover {
  background: #e62635;
  transform: translateY(-1px);
}

.ks-contact__action svg {
  width: 1rem;
  height: 1rem;
}

/* texto General Manager */
.ks-contact__managerText {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-CHANNEL MARKETING (#multi-channel)
   Background: bg-mult.png
   Photos: bg-photo.png (placeholder)
═══════════════════════════════════════════════════════════════ */
.ks-multi-channel {
  position: relative;
  padding: 6rem 0;
  background: #0A0A0A url('../images/bg-mult.png') no-repeat center / cover;
  color: #fff;
  overflow: hidden;
}


.ks-multi-channel .container {
  position: relative;
  z-index: 1;
}

.ks-multi-channel__top {
  text-align: center;
  margin-bottom: 3rem;
}

.ks-multi-channel__kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--ks-color-brand);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ks-multi-channel__title {
  font-family: var(--font-heading);
  font-weight: var(--ks-font-bold, 700);
  font-size: 2.25rem; /* ~36px */
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.ks-multi-channel__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 1.75rem 0 0;
}

.ks-multi-channel__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ks-multi-channel__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .ks-multi-channel__row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .ks-multi-channel__row--reverse {
    direction: rtl;
  }
  .ks-multi-channel__row--reverse .ks-multi-channel__text,
  .ks-multi-channel__row--reverse .ks-multi-channel__image {
    direction: ltr;
  }
}

.ks-multi-channel__text {
  text-align: left;
}

.ks-multi-channel__rowTitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.ks-multi-channel__rowDesc {
  margin-top: 1rem;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 420px;
}

.ks-multi-channel__image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ks-multi-channel__image img {
  width: min(520px, 100%);
  height: 210px;
  object-fit: cover;
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .ks-multi-channel__image img {
    height: 240px;
  }
}

/* Repetições das divisórias entre linhas no print */
.ks-multi-channel__divider {
  height: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════════════════════════
   STEP-BY-STEP (Sell With Keystate)
═══════════════════════════════════════════════════════════════ */
.ks-step {
  padding: 6rem 0; /* py-24 */
  background: #ffffff;
}

.ks-step__heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem; /* gap-10 */
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .ks-step__heroGrid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem; /* gap-20 */
  }
}

.ks-step__kicker {
  margin-bottom: 0.5rem; /* mb-2 */
}

.ks-step__title {
  font-size: 44px;
  line-height: 1.05;
}

.ks-step__desc {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #000;
}

.ks-step__cardsGrid {
  margin-top: 3rem; /* mt-12 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
}

@media (min-width: 640px) {
  .ks-step__cardsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ks-step__cardsGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem; /* gap-7 */
  }
}

.ks-step__card {
  background: #F6F6F6;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem; /* rounded-2xl */
  padding: 2rem 1.5rem; /* py-8 px-6 */
  display: flex;
  flex-direction: column;
}

.ks-step__iconWrap {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-step__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ks-step__cardTitle {
  margin-top: 1.5rem; /* mt-6 */
  font-size: 30px;
  font-weight: 700; /* Ranade loaded weights */
  color: #0A0A0A;
}

.ks-step__cardDesc {
  margin-top: 0.5rem; /* mt-2 */
  font-size: 13px;
  line-height: 1.8;
  font-weight: 400;
  color: #484D51;
}

.ks-step__cardSpacer {
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT — FORM ILLUSTRATION (id="form-contact-block")
   Background: bg-form-contato.png
═══════════════════════════════════════════════════════════════ */
.ks-form-contactHero {
  width: 100%;
  padding: 40px 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Mantém exatamente a composição da arte (mesma proporção do PNG). */
  background: #F1F1F1 url('../images/bg-form-contato1.png') no-repeat center center;
}
@media (max-width: 768px) {
  .ks-form-contactHero {
    background-color: #F1F1F1;
    background-image: none;
  }
}

.ks-form-contactHero__inner {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.ks-form-contactHero__title {
  font-family: 'Ranade', sans-serif;
  font-weight: 800;
  font-size: 38px;

  line-height: 1.06;
  color: #111;
  margin: 100px 0 0;
}

.ks-form-contactHero__desc {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #111;
  opacity: 0.9;
}

.ks-form-contactHero__right {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .ks-form-contactHero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
  }

  .ks-form-contactHero__right {
    justify-content: flex-end;
  }
}

/* ──────────────────────────────────────────────────────────────
   Reutiliza o mesmo layout do form da home, mas fora do #home
────────────────────────────────────────────────────────────── */
.ks-form-contactHero .ks-hero-form-card {
  width: min(480px, 100%);
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ks-form-contactHero .ks-hero-form-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 800;
  color: #111;
  text-align: center;
  font-size: 25px;
  text-transform: none;
  font-family: 'Ranade', sans-serif;
}

.ks-form-contactHero .ks-hero-form-body {
  padding: 24px;
}

.ks-form-contactHero .ks-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ks-form-contactHero .ks-hero-input,
.ks-form-contactHero .ks-hero-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(247, 247, 247, 0.7);
  border-radius: 4px;
  padding: 7px 15px;
  font-size: 14px;
  color: #111;
  outline: none;
  font-family: 'Ranade', sans-serif;
  transition: all 0.3s ease;
}

.ks-form-contactHero .ks-hero-input::placeholder,
.ks-form-contactHero .ks-hero-textarea::placeholder {
  color: #888;
}

.ks-form-contactHero .ks-hero-input:focus,
.ks-form-contactHero .ks-hero-textarea:focus {
  background: #fff;
  border-color: #F42538;
  box-shadow: 0 0 0 4px rgba(244, 37, 56, 0.1);
}

.ks-form-contactHero .ks-hero-textarea {
  grid-column: 1 / -1;
  min-height: 90px;
  resize: none;
}

.ks-form-contactHero .ks-hero-upload {
  grid-column: 1 / -1;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ks-form-contactHero .ks-hero-upload:hover {
  background: rgba(244, 37, 56, 0.05);
  border-color: #F42538;
}

.ks-form-contactHero .ks-hero-btn {
  grid-column: 1 / -1;
  background: #F42538;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Ranade', sans-serif;
  margin-top: 10px;
}

.ks-form-contactHero .ks-hero-btn:hover {
  background: #d11e2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 37, 56, 0.3);
}
