/* RESET + BASE */
/* ========================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f6f8fb;
  color: #111827;
  margin: 0;
}

/* ========================= */
/* SECCIONES */
/* ========================= */
.gt-section {
  padding: 80px 0;
  border-bottom: 1px solid #eef1f5;
}

/* alternancia suave automática */
.gt-section:nth-of-type(odd) {
  background: #ffffff;
}

.gt-section:nth-of-type(even) {
  background: #f6f8fb;
}

/* ========================= */
/* TIPOGRAFÍA */
/* ========================= */
.gt-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.gt-description {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* centra pero mantiene ancho controlado */
.text-center {
  text-align: center;
}

.gt-text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}


/* ========================= */
/* CARDS */
/* ========================= */
/* ========================= */
/* CARDS PRO */
/* ========================= */
.gt-card {
  padding: 24px;
  border-radius: 12px;
  background: white;
  height: 100%;
}

/* línea superior premium */
.gt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #0d6efd, #2563eb);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.gt-card:hover::before {
  opacity: 1;
}

/* hover general */
.gt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* ========================= */
/* TITULO + ICONO */
/* ========================= */
.gt-card h5 {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 1.08rem;
  font-weight: 600;

  margin-bottom: 14px;
}

/* ICONO */
.gt-card h5 i {
  width: 36px;
  height: 36px;

  padding: 8px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f1f5f9;
  color: #0d6efd;

  transition: all 0.25s ease;
}

/* hover icono */
.gt-card:hover h5 i {
  background: #0d6efd;
  color: #ffffff;
}

/* ========================= */
/* TEXTO */
/* ========================= */
.gt-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* mejora spacing interno */
.gt-card p:last-child {
  margin-bottom: 0;
}

/* ========================= */
/* IMAGEN HERO */
/* ========================= */
.gt-image {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ========================= */
/* CTA */
/* ========================= */
#vp2-cta {
  border-radius: 18px;
  margin: 80px auto;
  max-width: 960px;
  padding: 60px 30px;
  background: linear-gradient(135deg, #0d6efd, #2563eb);
}

.gt-cta-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gt-btn-white {
  background: white;
  color: #0d6efd;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.gt-btn-outline {
  border: 1px solid white;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

/* ========================= */
/* BENEFITS (MISMO ESTILO QUE CARDS) */
/* ========================= */
.gt-benefit {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;

  transition: all 0.25s ease;

  position: relative;
  overflow: hidden;
}

/* línea superior IGUAL que cards */
.gt-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #0d6efd, #2563eb);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.gt-benefit:hover::before {
  opacity: 1;
}

/* hover igual que cards */
.gt-benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* texto consistente */
.gt-benefit h5 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.gt-benefit p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ========================= */
/* FIT (PARA QUIÉN ES) */
/* ========================= */
.gt-fit {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;

  transition: all 0.25s ease;

  position: relative;
  overflow: hidden;
}

/* línea superior consistente */
.gt-fit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #0d6efd, #2563eb);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.gt-fit:hover::before {
  opacity: 1;
}

/* hover consistente */
.gt-fit:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* título */
.gt-fit h5 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* texto */
.gt-fit p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ========================= */
/* ESPACIADO FINO */
/* ========================= */
.mb-5 {
  margin-bottom: 50px;
}

/* ========================= */
/* COMPARATIVA PRO */
/* ========================= */

/* botones */
.gt-btn-primary {
  display: inline-block;
  background: #0d6efd;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}


/* ========================= */
/* COMPARATIVA PRO */
/* ========================= */
.gt-compare {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* columnas */
.gt-compare-col {
  flex: 1 1 48%;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid #e5e7eb;

  position: relative;
  transition: all 0.25s ease;
}

/* hover */
.gt-compare-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* línea superior (consistencia con cards) */
.gt-compare-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #0d6efd, #2563eb);

  opacity: 0;
  transition: 0.25s;
}

.gt-compare-col:hover::before {
  opacity: 1;
}

/* HEADER */
.gt-compare-header {
  margin-bottom: 18px;
}

.gt-compare-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* BADGE */
.gt-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}

.gt-badge.pro {
  background: #e0ecff;
  color: #0d6efd;
}

/* LISTA */
.gt-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gt-compare-col li {
  font-size: 0.95rem;
  color: #4b5563;
  padding: 6px 0;
}

/* ========================= */
/* DESTACADA (PRO2) */
/* ========================= */
.gt-compare-featured {
  border: 2px solid #0d6efd;
  box-shadow: 0 20px 40px rgba(13,110,253,0.08);
}

/* etiqueta arriba */
.gt-compare-highlight {
  position: absolute;
  top: -12px;
  left: 20px;

  background: #0d6efd;
  color: white;

  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .gt-compare-col {
    flex: 1 1 100%;
  }
}

/* ========================= */
/* DECISION SECTION */
/* ========================= */
.gt-decision {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXTO */
.gt-decision-text {
  flex: 1 1 55%;
}

.gt-decision-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.gt-decision-text p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* LISTA */
.gt-decision-list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.gt-decision-list li {
  margin-bottom: 6px;
  color: #374151;
  font-size: 0.95rem;
}

/* BOTONES */
.gt-decision-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gt-btn-primary:hover {
  background: #0b5ed7;
}

.gt-btn-link {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
}

/* BOX DERECHA */
.gt-decision-box {
  flex: 1 1 35%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;

  position: relative;
  transition: 0.25s;
}

/* línea premium */
.gt-decision-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #0d6efd, #2563eb);
}

/* mini bloques */
.gt-decision-mini {
  margin-top: 12px;
}

.gt-decision-mini strong {
  display: block;
  font-size: 0.95rem;
}

.gt-decision-mini p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 2px 0 0;
}

.gt-thumbnails {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gt-thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.gt-thumbnails img:hover {
  border-color: #0d6efd;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .gt-decision {
    flex-direction: column;
  }
}

/* FIX BOOTSTRAP SOLO PARA ESTA LANDING */
.gt-section .container {
  display: block !important;
}

.gt-section .row {
  display: flex;
  flex-wrap: wrap;
}