/* Estilos globales para páginas de couriers */
/* Estos estilos se aplican a todas las páginas de paqueterías */

/* Tabs de servicios */
.service-tab {
  border: none;
  background: transparent;
  color: var(--brand);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: 2px solid transparent;
}

.service-tab:hover {
  background: #eef2ff;
  border-color: var(--brand);
  border-radius: 999px;
}

.service-tab.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  border-radius: 999px;
}

.service-tabs-container {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.service-tabs-container-secondary {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .service-tabs-container,
  .service-tabs-container-secondary {
    flex-direction: column;
    gap: 0.75rem;
  }

  .service-tab {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* Tarjeta de detalle de servicio */
.service-card-detail {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  border: 1px solid #e5e7eb;
}

/* Tarjeta de información de sección */
.info-section-card {
  background: #f8fcff;
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.info-section-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

/* Tarjeta de información (Suplementos, Recargos, Destinos) */
.info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-card-title {
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card-subtitle {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.info-card-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.info-card-button {
  margin-top: auto;
  padding-top: 1.5rem;
}

.info-card-button .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Tarjeta de blog para couriers */
.blog-card-courier {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.blog-card-courier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 14, 26, 0.12);
}

.blog-card-courier img {
  max-height: 150px;
}

/* Contenido de servicios (oculto por defecto, se muestra con JavaScript) */
.service-content {
  display: none;
}

.service-content-secondary {
  display: none;
}

/* Imagen de logo de servicio */
.service-logo-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Icono grande de servicio (opcional) */
.service-icon-large {
  font-size: 4rem;
  color: #ffc107;
}
