/* =========================================================
   TÉRMINOS Y CONDICIONES — VIDAMOTOS
   Depende de style.css (reset, body, navbar, footer, wa-btn)
========================================================= */

/* =========================================================
   HERO
========================================================= */

.tc-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  overflow: hidden;
  background: #0d0d0d;
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #C8102E 0%,
    #7a0019 40%,
    #0d0d0d 70%
  );
  opacity: .9;
  z-index: 0;
}

.tc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.tc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.tc-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.tc-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

.tc-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 520px;
}

.tc-hero-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  text-align: center;
  flex-shrink: 0;
}

.badge-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}

.badge-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =========================================================
   META INFO BAR
========================================================= */

.tc-meta {
  background: #f5f5f5;
  padding: 20px 8%;
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.tc-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.tc-meta-item span:first-child {
  font-size: 16px;
}

.tc-meta-item strong {
  color: #111;
}

/* =========================================================
   ÍNDICE / NAVEGACIÓN
========================================================= */

.tc-index {
  padding: 60px 8%;
  background: #fff;
}

.tc-index-inner {
  max-width: 900px;
  margin: 0 auto;
}

.tc-index-inner h2 {
  font-size: 28px;
  font-weight: 900;
  color: #111;
  margin-bottom: 28px;
}

.tc-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tc-index-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f9f9f9;
  border-radius: 10px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
  border-left: 3px solid transparent;
}

.tc-index-item:hover {
  background: #fff5f7;
  border-left-color: #C8102E;
  color: #C8102E;
}

.tc-index-num {
  font-size: 11px;
  font-weight: 900;
  color: #C8102E;
  background: rgba(200,16,46,.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   SECCIÓN HEADER REUTILIZABLE
========================================================= */

.tc-section-header {
  margin-bottom: 36px;
}

.tc-section-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-section-header h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #C8102E;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.tc-section-header p {
  font-size: 16px;
  color: #888;
  margin-left: 52px;
}

/* =========================================================
   SECCIONES GENERALES
========================================================= */

.tc-section {
  padding: 60px 8%;
  max-width: 100%;
}

.tc-section:nth-child(odd) {
  background: #fff;
}

.tc-section:nth-child(even) {
  background: #f5f5f5;
}

.tc-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================================
   DEFINICIONES — LISTA
========================================================= */

.tc-def-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-def-list li {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #C8102E;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.tc-section:nth-child(even) .tc-def-list li {
  background: #fff;
}

.tc-def-term {
  font-weight: 900;
  color: #111;
  min-width: 180px;
  flex-shrink: 0;
  font-size: 14px;
}

/* =========================================================
   TARJETAS DE SERVICIO (descripción producto)
========================================================= */

.tc-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tc-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border-bottom: 4px solid transparent;
  transition: .25s;
}

.tc-section:nth-child(even) .tc-service-card {
  background: #fff;
}

.tc-service-card:hover {
  transform: translateY(-5px);
  border-bottom-color: #C8102E;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.tc-service-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-service-card h3 .card-icon {
  font-size: 22px;
}

.tc-service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-service-card ul li {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.tc-service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C8102E;
  font-size: 12px;
  top: 2px;
}

/* =========================================================
   TEXTO CORRIDO / PÁRRAFOS DE CLÁUSULA
========================================================= */

.tc-clause {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
}

.tc-clause strong {
  color: #111;
  font-weight: 800;
}

/* =========================================================
   LISTA DE ÍTEMS CON ICONO (obligaciones, prohibiciones)
========================================================= */

.tc-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-item-list.allow li::before {
  content: '✔';
  color: #22c55e;
}

.tc-item-list.deny li::before {
  content: '✕';
  color: #C8102E;
}

.tc-item-list.info li::before {
  content: '→';
  color: #C8102E;
}

.tc-item-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #555;
  background: #fafafa;
  padding: 14px 18px;
  border-radius: 10px;
  line-height: 1.5;
}

.tc-section:nth-child(odd) .tc-item-list li {
  background: #f5f5f5;
}

.tc-item-list li::before {
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   TABLA DE PRECIOS
========================================================= */

.tc-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.tc-price-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border-top: 4px solid #C8102E;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.tc-price-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.tc-price-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.tc-price-note {
  background: #fff9f9;
  border: 1px solid #ffd6dc;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.tc-price-note strong {
  color: #C8102E;
}

/* =========================================================
   PASOS (garantía, PQR, etc.)
========================================================= */

.tc-steps-dark {
  padding: 70px 8%;
  background: #0d0d0d;
}

.tc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.tc-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: .25s;
}

.tc-step:hover {
  background: rgba(200,16,46,.12);
  border-color: rgba(200,16,46,.4);
}

.tc-step-num {
  font-size: 44px;
  font-weight: 900;
  color: #C8102E;
  line-height: 1;
  margin-bottom: 14px;
  opacity: .7;
}

.tc-step h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.tc-step p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* =========================================================
   SECCIÓN HEADER REUTILIZABLE (dark)
========================================================= */

.tc-section-header-dark {
  text-align: center;
  margin-bottom: 40px;
}

.tc-section-header-dark h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.tc-section-header-dark p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
}

/* =========================================================
   RESPONSABILIDAD — ALERTA
========================================================= */

.tc-alert-box {
  background: #fff5f7;
  border: 1px solid #ffc2cc;
  border-left: 5px solid #C8102E;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.tc-alert-box strong {
  color: #C8102E;
  font-weight: 900;
}

/* =========================================================
   CTA
========================================================= */

.tc-cta {
  padding: 80px 8%;
  background: #fff;
}

.tc-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.tc-cta-inner h2 {
  font-size: 40px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.tc-cta-inner p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tc-cta-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .3s ease;
}

.tc-cta-btn.primary {
  background: #25D366;
  color: #fff;
}

.tc-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37,211,102,.25);
}

.tc-cta-btn.secondary {
  border: 2px solid #ddd;
  color: #111;
}

.tc-cta-btn.secondary:hover {
  border-color: #C8102E;
  color: #C8102E;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 768px) {

  .tc-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 6%;
    min-height: auto;
    gap: 36px;
  }

  .tc-hero-content h1 {
    font-size: 48px;
  }

  .tc-hero-badge {
    width: 120px;
    height: 120px;
  }

  .badge-icon {
    font-size: 36px;
  }

  .tc-meta {
    padding: 16px 6%;
    gap: 20px;
  }

  .tc-index {
    padding: 40px 6%;
  }

  .tc-index-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tc-section {
    padding: 50px 6%;
  }

  .tc-section-header h2 {
    font-size: 26px;
  }

  .tc-service-grid {
    grid-template-columns: 1fr;
  }

  .tc-def-term {
    min-width: 120px;
  }

  .tc-price-grid {
    grid-template-columns: 1fr;
  }

  .tc-steps-dark {
    padding: 50px 6%;
  }

  .tc-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tc-cta {
    padding: 50px 6%;
  }

  .tc-cta-inner h2 {
    font-size: 30px;
  }

  .tc-cta-buttons {
    flex-direction: column;
  }

  .tc-cta-btn {
    text-align: center;
  }
}

@media(max-width: 480px) {
  .tc-index-grid {
    grid-template-columns: 1fr;
  }

  .tc-def-list li {
    flex-direction: column;
    gap: 6px;
  }

  .tc-def-term {
    min-width: auto;
  }

  .tc-section-header p {
    margin-left: 0;
  }
}