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

:root {
  --red: #111E35;
  --red-dark: #020a19;
  --red-light: #002690;
  --dark: #1a1a1a;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* TOP BAR */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-contacts { display: flex; gap: 24px; align-items: center; }
.topbar-contacts a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  transition: background 0.2s;
}
.topbar-social a:hover { background: rgba(255,255,255,0.2); }

/* NAVBAR */
nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--dark); }
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--red); background: rgba(192,57,43,0.07); }
.nav-links a.btn-loja {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
}
.nav-links a.btn-loja:hover { background: var(--red-dark); color: #fff; }

/* ── HERO BANNER ── */
#trad-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 540px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* backgrounds */
.th-bg {
  position: absolute; inset: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.th-bg.th-hidden { opacity: 0; pointer-events: none; }

.th-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,0.62) 0%,rgba(0,0,0,0.18) 52%,rgba(0,0,0,0.04) 100%);
  z-index: 1;
}

/* left info panel */
.th-left {
  position: absolute;
  left: 56px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 320px;
}
.th-brand-title {
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0,0,0,0.55);
  margin-bottom: 12px;
  transition: opacity .35s ease, transform .35s ease;
}
.th-brand-title.th-fade { opacity:0; transform: translateY(14px); }

.th-brand-tag {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
  transition: opacity .35s ease;
}
.th-brand-tag.th-fade { opacity:0; }

.th-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(245,166,35,.45);
  transition: background .2s, transform .15s;
}
.th-cta:hover { background:#e0941a; transform:scale(1.04); }

/* vertical dots */
.th-dots {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.th-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.th-dot.th-on { background:#fff; transform:scale(1.45); }

/* cards track */
.th-track-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 58%;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 24px 24px 24px 0;
  overflow: visible;
}
.th-track {
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
}

/* individual card */
.th-card {
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  /* size/opacity set by JS via CSS vars */
  width: var(--cw, 100px);
  height: var(--ch, 160px);
  opacity: var(--cop, 0.75);
  transform: rotate(var(--crot, 0deg)) scale(var(--csc, 1));
  box-shadow: var(--csh, 0 4px 16px rgba(0,0,0,.28));
  transition:
    width   .55s cubic-bezier(.4,0,.2,1),
    height  .55s cubic-bezier(.4,0,.2,1),
    opacity .55s ease,
    transform .55s cubic-bezier(.4,0,.2,1),
    box-shadow .55s ease;
}
.th-card-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 14px;
}
.th-card-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: font-size .45s ease;
}
.th-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  transition: font-size .45s ease;
}

/* shine sweep on active card */
.th-card.th-active::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 40%; height: 220%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  animation: th-shine .8s ease forwards;
}
@keyframes th-shine {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* arrows */
.th-arrow {
  position: absolute;
  bottom: 32px;
  z-index: 5;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
}
.th-arrow:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
.th-arrow-prev { right: 268px; }
.th-arrow-next { right: 224px; }

/* MARCAS SECTION */
.section { padding: 80px 24px; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 56px;
}
.section-divider {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.marcas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.marca-card {
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  height: 100px;
}
.marca-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(192,57,43,0.15);
  transform: translateY(-4px);
}
.marca-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.25s;
}
.marca-card:hover img {
  filter: grayscale(0%);
}

/* SOBRE */
.sobre { background: var(--gray); }
.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.sobre-text h2 span { color: var(--red); }
.sobre-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border-left: 4px solid var(--red);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--red);
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.sobre-vantagens { display: flex; flex-direction: column; gap: 20px; }
.vantagem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}
.vantagem-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(192, 187, 43, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--red);
}
.vantagem h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 4px;
}
.vantagem p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* INFRA */
.infra-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.infra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.infra-card {
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.infra-card::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(192, 177, 43, 0.3);
  border-radius: 50%;
}
.infra-card-icon { font-size: 36px; margin-bottom: 16px; color: #e0941a; }
.infra-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #e0941a;
  display: block;
  line-height: 1;
}
.infra-card-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* CLIENTES */
.clientes { background: var(--red); color: #fff; }
.clientes .section-title { color: #fff; }
.clientes .section-title span { color: rgba(255,255,255,0.7); }
.clientes .section-subtitle { color: rgba(255,255,255,0.8); }
.clientes .section-divider { background: rgba(255,255,255,0.5); }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.clientes-marquee-wrap {
  overflow: hidden;
  width: 100%;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clientes-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.cliente-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 20px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

/* CONTATO */
.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contato-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 16px;
}
.contato-info h2 span { color: var(--red); }
.contato-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; font-size: 15px; }
.filial {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--red);
}
.filial h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 6px;
}
.filial p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin: 0; }

.filiais-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.filial-map-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filial-map-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
}
.filiais-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
  display: block;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-mid);
}
.form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--red-dark); }

/* Required field marker */
.req { color: var(--red); font-weight: 700; }

/* Validação inline */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e74c3c !important;
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.field-error-msg {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 5px;
  min-height: 0;
  line-height: 1.4;
}
.field-error-msg:empty { display: none; }

/* Toast notification */
@keyframes toast-in  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { from { opacity: 1; transform: translateY(0); }   to { opacity: 0; transform: translateY(20px); } }
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.toast.show-ok    { background: #27ae60; animation: toast-in 0.35s ease forwards; }
.toast.show-erro  { background: var(--red); animation: toast-in 0.35s ease forwards; }
.toast.hide       { animation: toast-out 0.35s ease forwards; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--red-light); }
.footer-desc { font-size: 13px; line-height: 1.8; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 36px; }
  .contato-inner { grid-template-columns: 1fr; }
  .infra-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
}


#trad-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 580px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.tb-bg {
  position: absolute; inset: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}
.tb-bg.hidden { opacity: 0; }

.tb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.tb-left {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 440px;
  width: 40%;
}
.tb-brand-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0,0,0,0.55);
  margin-bottom: 16px;
  transition: opacity 0.4s, transform 0.4s;
}
.tb-brand-tag {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 32px;
  font-family: 'Open Sans', sans-serif;
  transition: opacity 0.4s;
  line-height: 1.5;
}
.tb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(245,166,35,0.45);
  transition: background 0.2s, transform 0.15s;
}
.tb-btn:hover { background: #e0941a; transform: scale(1.04); }

.tb-dots-nav {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.tb-dot.on { background: #fff; transform: scale(1.4); }

.tb-cards-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  z-index: 3;
  overflow: hidden;
}

.tb-card {
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 16px;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.52s cubic-bezier(.4,0,.2,1),
              width    0.52s cubic-bezier(.4,0,.2,1),
              height   0.52s cubic-bezier(.4,0,.2,1),
              opacity  0.52s cubic-bezier(.4,0,.2,1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
  overflow: hidden;
}
.tb-card.active {
  width: 160px;
  height: 260px;
  opacity: 1;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.tb-card.side {
  width: 115px;
  height: 196px;
  opacity: 0.7;
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
   filter: blur(1px);
}
.tb-card.far {
  width: 95px;
  height: 168px;
  opacity: 0.4;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  filter: blur(2px);
}
.tb-card.hidden-card {
  width: 95px;
  height: 168px;
  opacity: 0;
  pointer-events: none;
}

.tb-card-inner {
  position: absolute;
  inset: 0;
}
.tb-card-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tb-card-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 8px 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
}



.tb-arrow {
  position: absolute;
  bottom: 36px;
  z-index: 5;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s;
  font-family: Arial, sans-serif;
}
.tb-arrow:hover { background: rgba(255,255,255,0.28); transform: scale(1.08); }
.tb-arrow.pa { right: 276px; }
.tb-arrow.na { right: 230px; }

@media (max-width: 768px) {
  .tb-left {
    left: 50%;
    width: 80%;
    text-align: center;
  }
  .tb-cards-wrap { display: none; }
  .tb-dots-nav { left: 50%; transform: translate(-50%, -50%); flex-direction: row; top: auto; bottom: 28px; }
}