:root {
  --tc-black: #0B0B0F;
  --tc-dark: #16181D;
  --tc-red: #E11D48;
  --tc-red-dark: #BE123C;
  --tc-white: #FFFFFF;
  --tc-gray: #6B7280;
  --tc-light: #F3F4F6;
  --tc-border: #E5E7EB;
}

body {
  font-family: 'Neuropol X',sans-serif;
  color: var(--tc-dark);
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: 'Neuropol X',sans-serif;
  color: var(--tc-black);
}

.tc-navbar {
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--tc-black);
}

.tc-navbar .nav-link {
  color: var(--tc-black);
  font-weight: 600;
}

.tc-section {
  padding: 90px 0;
}

.tc-section-light {
  background: var(--tc-light);
}

.tc-section-dark {
  background: linear-gradient(135deg,#111318 0%, #1b1f27 100%);
}

.tc-section-dark h2, .tc-section-dark p, .tc-section-dark li {
  color: var(--tc-white);
}

.tc-hero {
  padding: 70px 0 90px;
  background: radial-gradient(circle at top right, rgba(225,29,72,.14), transparent 25%), linear-gradient(180deg,#fff 0%, #f7f7f8 100%);
}

.tc-badge {
  display: inline-block;
  background: rgba(225,29,72,.10);
  color: var(--tc-red);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: .92rem;
}

.tc-hero h1 {
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.tc-hero-text {
  font-size: 1.12rem;
  color: var(--tc-gray);
  margin-bottom: 30px;
  max-width: 640px;
}

.tc-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tc-trust span {
  background: #fff;
  border: 1px solid var(--tc-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--tc-black);
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

.tc-hero-card, .tc-image-frame {
  background: #fff;
  border-radius: 22px;
  /*padding: 1px;*/
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.tc-hero-card img, .tc-image-frame img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.btn-tc-primary {
  background: var(--tc-red);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
}

.btn-tc-primary:hover {
  background: var(--tc-red-dark);
  color: #fff;
}

.btn-tc-outline {
  background: transparent;
  color: var(--tc-black);
  border: 2px solid var(--tc-black);
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 700;
  text-decoration: none;
}

.btn-tc-outline:hover {
  background: var(--tc-black);
  color: #fff;
}

.btn-tc-light {
  background: #fff;
  color: var(--tc-red);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
}

.btn-tc-light:hover {
  color: var(--tc-red-dark);
}

.btn-tc-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 700;
  text-decoration: none;
}

.btn-tc-outline-light:hover {
  background: #fff;
  color: var(--tc-red);
}

.tc-trustbar {
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid var(--tc-border);
  border-bottom: 1px solid var(--tc-border);
}

.tc-trustbox {
  background: #fff;
  padding: 18px 12px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  height: 100%;
}

.tc-trustbox strong {
  display: block;
  color: var(--tc-black);
  margin-bottom: 6px;
}

.tc-trustbox p {
  margin: 0;
  color: var(--tc-gray);
  font-size: .95rem;
}

.tc-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--tc-gray);
}

.tc-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tc-card:hover, .tc-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
}

.tc-card-soft {
  background: #fff;
}

.tc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,29,72,.10);
  color: var(--tc-red);
  font-weight: 800;
  margin-bottom: 18px;
}

.tc-list {
  padding-left: 1.1rem;
}

.tc-list li {
  margin-bottom: 10px;
}

.tc-promo {
  background: linear-gradient(135deg,#fff 0%, #f9eef2 100%);
}

.tc-store-card {
  background: #fff;
  border: 1px solid var(--tc-border);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tc-store-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.tc-link {
  color: var(--tc-red);
  font-weight: 700;
  text-decoration: none;
}

.tc-link:hover {
  color: var(--tc-red-dark);
}

.tc-final-cta {
  background: linear-gradient(135deg,#111318 0%, #1f2430 100%);
  color: #fff;
}

.tc-final-cta h2, .tc-final-cta p {
  color: #fff;
}

.tc-form-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(0,0,0,.07);
}

.form-control, .form-select {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--tc-border);
}

.form-control:focus, .form-select:focus {
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 .2rem rgba(225,29,72,.12);
}

.tc-footer {
  background: #0f1115;
  color: #fff;
  padding: 60px 0;
}

.tc-footer h4, .tc-footer p, .tc-footer a {
  color: #fff;
}

.tc-footer a {
  text-decoration: none;
}

.tc-footer a:hover {
  text-decoration: underline;
}

.tc-divider {
  border-color: rgba(255,255,255,.15);
  margin: 28px 0;
}

.tc-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  z-index: 9999;
}

.tc-whatsapp:hover {
  color: #fff;
  background: #1fb85a;
}

@media (max-width:991.98px) {
  .tc-hero {
    padding-top: 70px;
  }
}

@media (max-width:991.98px) {
  .tc-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width:991.98px) {
  .tc-section {
    padding: 70px 0;
  }
}

